summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build-modpack.yml27
-rw-r--r--.github/workflows/update-checksums.yml33
-rw-r--r--.github/workflows/update-mods.yml28
-rw-r--r--.packwizignore11
-rw-r--r--checksums.json1
-rw-r--r--flake.nix46
-rw-r--r--index.toml131
-rw-r--r--mods/adaptive-tooltips.pw.toml13
-rw-r--r--mods/appleskin.pw.toml8
-rw-r--r--mods/architectury-api.pw.toml8
-rw-r--r--mods/better-ping-display-fabric.pw.toml12
-rw-r--r--mods/c2me-fabric.pw.toml8
-rw-r--r--mods/cloth-config.pw.toml13
-rw-r--r--mods/continuity.pw.toml8
-rw-r--r--mods/cull-leaves.pw.toml13
-rw-r--r--mods/debugify.pw.toml8
-rw-r--r--mods/entityculling.pw.toml8
-rw-r--r--mods/essential.pw.toml8
-rw-r--r--mods/fabric-api.pw.toml13
-rw-r--r--mods/fabric-language-kotlin.pw.toml13
-rw-r--r--mods/fallingtree.pw.toml13
-rw-r--r--mods/fastanim.pw.toml13
-rw-r--r--mods/fastload.pw.toml13
-rw-r--r--mods/ferrite-core.pw.toml8
-rw-r--r--mods/freecam.pw.toml17
-rw-r--r--mods/immediatelyfast.pw.toml13
-rw-r--r--mods/indium.pw.toml13
-rw-r--r--mods/inspecio.pw.toml13
-rw-r--r--mods/iris.pw.toml8
-rw-r--r--mods/jade.pw.toml8
-rw-r--r--mods/krypton.pw.toml8
-rw-r--r--mods/lambdabettergrass.pw.toml13
-rw-r--r--mods/lambdynamiclights.pw.toml13
-rw-r--r--mods/lithium.pw.toml8
-rw-r--r--mods/memoryleakfix.pw.toml8
-rw-r--r--mods/modernfix.pw.toml13
-rw-r--r--mods/modmenu.pw.toml8
-rw-r--r--mods/moreculling.pw.toml8
-rw-r--r--mods/mouse-wheelie.pw.toml8
-rw-r--r--mods/mru.pw.toml13
-rw-r--r--mods/no-chat-reports.pw.toml8
-rw-r--r--mods/not-enough-animations.pw.toml8
-rw-r--r--mods/ok-boomer.pw.toml13
-rw-r--r--mods/ok-zoomer.pw.toml13
-rw-r--r--mods/owo-lib.pw.toml13
-rw-r--r--mods/qkl.pw.toml17
-rw-r--r--mods/qsl.pw.toml13
-rw-r--r--mods/quilt-loading-screen.pw.toml13
-rw-r--r--mods/raised.pw.toml8
-rw-r--r--mods/roughly-enough-items.pw.toml8
-rw-r--r--mods/sodium.pw.toml8
-rw-r--r--mods/sound.pw.toml13
-rw-r--r--mods/starlight.pw.toml13
-rw-r--r--mods/visuality.pw.toml8
-rw-r--r--mods/vmp-fabric.pw.toml13
-rw-r--r--mods/xaeros-world-map.pw.toml8
-rw-r--r--mods/yacl.pw.toml13
-rw-r--r--notes.md23
-rw-r--r--pack.toml9
59 files changed, 359 insertions, 492 deletions
diff --git a/.github/workflows/build-modpack.yml b/.github/workflows/build-modpack.yml
deleted file mode 100644
index 77db3ee..0000000
--- a/.github/workflows/build-modpack.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-name: Build modpack
-
-on:
- push:
- paths:
- # only run when prismlauncher modpack files are changed
- - files/**
- workflow_dispatch:
-
-jobs:
- build-modpack:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v3
- - uses: cachix/install-nix-action@v20
-
- - name: build
- run: |
- nix build
- cp result/getchoo-modpack.zip .
-
- - name: upload
- uses: actions/upload-artifact@v3
- with:
- name: getchoo-modpack.zip
- path: getchoo-modpack.zip
diff --git a/.github/workflows/update-checksums.yml b/.github/workflows/update-checksums.yml
deleted file mode 100644
index 7a5b9a3..0000000
--- a/.github/workflows/update-checksums.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-name: Update mod checksums
-
-on:
- push:
- paths:
- # only run when mod files are changed
- - mods/**
- workflow_dispatch:
- workflow_run:
- workflows: ["Update mods"]
- types:
- - completed
-
-permissions:
- contents: write
-
-jobs:
- build-modpack:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v3
- - uses: cachix/install-nix-action@v20
-
- - name: generate new checksums
- run: |
- nix run --impure .#generate-checksums
-
- - name: commit changes
- uses: EndBug/add-and-commit@v9
- with:
- default_author: github_actions
- message: "chore(flake): update mod checksums"
diff --git a/.github/workflows/update-mods.yml b/.github/workflows/update-mods.yml
deleted file mode 100644
index cca46ee..0000000
--- a/.github/workflows/update-mods.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-name: Update mods
-
-on:
- schedule:
- # run on saturdays at 0:00 utc
- - cron: "0 0 * * 6"
- workflow_dispatch:
-
-jobs:
- update-mods:
- runs-on: ubuntu-latest
-
- permissions:
- contents: write
-
- steps:
- - uses: actions/[email protected]
- - uses: cachix/install-nix-action@v20
-
- - name: update
- run: |
- echo "y" | nix run nixpkgs#packwiz -- update --all
-
- - name: commit changes
- uses: EndBug/add-and-commit@v9
- with:
- default_author: github_actions
- message: "chore: update mods"
diff --git a/.packwizignore b/.packwizignore
index 5547814..a364597 100644
--- a/.packwizignore
+++ b/.packwizignore
@@ -1,7 +1,8 @@
-/README.md
+/.gitattributes
+/.gitignore
+/files
/LICENSE
-/nix
-/.github
-/flake.nix
+/README.md
/flake.lock
-/checksums.json
+/flake.nix
+/notes.md
diff --git a/checksums.json b/checksums.json
deleted file mode 100644
index 5430251..0000000
--- a/checksums.json
+++ /dev/null
@@ -1 +0,0 @@
-{"appleskin.pw.toml":{"sha256":"85e23a429634048a2e9addc808914c1c43083083f5e21f2bf3c39c49e5af38b5","url":"https://cdn.modrinth.com/data/EsAfCjCV/versions/xcauwnEB/appleskin-fabric-mc1.20.1-2.5.1.jar"},"architectury-api.pw.toml":{"sha256":"0c55eda09caa42c625ca1d91e32078f73a8b1d0eef62f20b748569c84cb13147","url":"https://cdn.modrinth.com/data/lhGA9TYQ/versions/Sbew3kXe/architectury-9.1.12-fabric.jar"},"better-beds.pw.toml":{"sha256":"ab5712649d9c9f3ada636bbcc52e71099edc5ec674a7d52f27f2b61ffdccf2f4","url":"https://cdn.modrinth.com/data/kKwy3HU9/versions/oA7DgMo2/betterbeds-1.3.0-1.19.3.jar"},"better-ping-display-fabric.pw.toml":{"sha256":"f9f14d7df5c6de56d7c8447b7729d724baa74f0e27b594a201af04381045ece5","url":"https://cdn.modrinth.com/data/MS1ZMyR7/versions/FbxcDBxy/BetterPingDisplay-Fabric-1.20.1-1.1.1.jar"},"c2me-fabric.pw.toml":{"sha256":"550216347dc12cbb5f29ce8f02de5c44f488f5e54ca2a19c4bfe84f9be876a21","url":"https://cdn.modrinth.com/data/VSNURh3q/versions/T5Pkyhit/c2me-fabric-mc1.20.1-0.2.0%2Balpha.11.0.jar"},"continuity.pw.toml":{"sha256":"8bcc532c2c36150fb12c7bd79d30500b9075e3bc8540ec02b6975b3fe1adf0fd","url":"https://cdn.modrinth.com/data/1IjD5062/versions/Z9FJWLMt/continuity-3.0.0-beta.4%2B1.20.1.jar"},"cull-leaves.pw.toml":{"sha256":"e13aba22784b151d6fd3da82b3df5e48f70fb289f35b98aa8de5250e489df32d","url":"https://cdn.modrinth.com/data/GNxdLCoP/versions/vGCKmen2/cullleaves-quilt-3.2.0.jar"},"debugify.pw.toml":{"sha256":"c61b78a7609c989578e98837047bc026d32654a0ad55f9118bb35f295536949d","url":"https://cdn.modrinth.com/data/QwxR6Gcd/versions/6XDJoCks/Debugify-1.20.1%2B2.0.jar"},"dynamic-fps.pw.toml":{"sha256":"6d556651cfde057d6e8d2d0a5b0bd3afe0ac089ecca89e6b52a948e6282ad1b4","url":"https://cdn.modrinth.com/data/LQ3K71Q1/versions/wOSxC0Zb/dynamic-fps-3.3.2%2Bminecraft-1.20.0.jar"},"e4mc.pw.toml":{"sha256":"bf04e416037c15b5ba132c15a0da9462ce98d8a8c9478acce6a1f279d546cb1a","url":"https://cdn.modrinth.com/data/qANg5Jrr/versions/vVFlVRt7/e4mc-4.0.1%2B1.19.4-fabric.jar"},"entityculling.pw.toml":{"sha256":"e2daed6d6ff2c0277063d0ac55c5345af898034f96da3e1be01e26475f61c13c","url":"https://cdn.modrinth.com/data/NNAgCjsB/versions/BDwHAdWc/entityculling-fabric-1.6.2-mc1.20.1.jar"},"essential.pw.toml":{"sha256":"86a0dab01f36de8814df1d4c03211b782df24552b995a0704066d8a7c304cd3a","url":"https://cdn.modrinth.com/data/k2ZPuTBm/versions/PQ4V8nU6/essential_1-3-0-2_fabric_1-20-1.jar"},"fallingtree.pw.toml":{"sha256":"da9d2c40e7967b1c3790e526092563d3999cc03bf1c7097285b3bedf1515db69","url":"https://cdn.modrinth.com/data/Fb4jn8m6/versions/NrtzFkZE/FallingTree-1.20.1-4.3.4.jar"},"fastanim.pw.toml":{"sha256":"c6af4d11f52a66bfa4f35e87fe6aa7132f74ff1f2dea3a3dd668a0d60e99017c","url":"https://cdn.modrinth.com/data/yHf7SALy/versions/5lHXCowj/lunade-fastanim-1.6-1.20.jar"},"fastload.pw.toml":{"sha256":"e13ab713f9779623de29bb50396b3202d670532bd4605f74c907d4f7834c1637","url":"https://cdn.modrinth.com/data/kCpssoSb/versions/ys9T20o4/Fastload%2B1.18.2-1.20-3.4.0.jar"},"ferrite-core.pw.toml":{"sha256":"c7ba1118a05b2da900d1c369fbe1017a3e3ec3cafe5e51398b851279b9becf24","url":"https://cdn.modrinth.com/data/uXXizFIs/versions/unerR5MN/ferritecore-6.0.1-fabric.jar"},"freecam.pw.toml":{"sha256":"e0b0c999809530038a982ded82569151630e4fc065cb06c10a3da1a54dee6a7e","url":"https://cdn.modrinth.com/data/XeEZ3fK2/versions/QkWJuaZ8/freecam-fabric-modrinth-1.2.1%2B1.20.jar"},"inspecio.pw.toml":{"sha256":"c442e5d4a3eaa92d039a95347fb18739a005436a4e02d5c5fa71a95c4ec6242e","url":"https://cdn.modrinth.com/data/a93H3mKU/versions/9fkuAmia/inspecio-1.8.1%2B1.20.jar"},"iris.pw.toml":{"sha256":"4e09d0fb24cf16c4f3e651d172071fc5a4ddadd157a02ce74c9a520de4553c2b","url":"https://cdn.modrinth.com/data/YL57xq9U/versions/ogjxrwGQ/iris-mc1.20.1-1.6.11.jar"},"jade.pw.toml":{"sha256":"3c2027956145ce73b920ae4ef7306922d588827a88618eb621fd8f01a93a9c0d","url":"https://cdn.modrinth.com/data/nvQzSEkH/versions/QhvPNPdp/Jade-1.20-fabric-11.7.0.jar"},"krypton.pw.toml":{"sha256":"69ad1810206ce12181b1b083640f044e7e250781c36c96c655eac36209057698","url":"https://cdn.modrinth.com/data/fQEb0iXm/versions/jiDwS0W1/krypton-0.2.3.jar"},"lambdabettergrass.pw.toml":{"sha256":"63df165b1f5cf800d23e95afdb808125b8dada7d86a94e347a2443af2c509485","url":"https://cdn.modrinth.com/data/2Uev7LdA/versions/Fhyj2P7Q/lambdabettergrass-1.5.2%2B1.20.1.jar"},"lambdynamiclights.pw.toml":{"sha256":"20433fb9a20f9450599bde4d8f0e8b0898eefdbda13e47d68430d31422c9f564","url":"https://cdn.modrinth.com/data/yBW8D80W/versions/mYl4RvKg/lambdynamiclights-2.3.2%2B1.20.1.jar"},"lithium.pw.toml":{"sha256":"a0c595355d680e0c87bf8eaebafedff6900d4e771a8d6894ee6d2d4374de8df9","url":"https://cdn.modrinth.com/data/gvQqBUqZ/versions/ZSNsJrPI/lithium-fabric-mc1.20.1-0.11.2.jar"},"memoryleakfix.pw.toml":{"sha256":"ce54255e469a123401bf7defb7513c7319156f6dcb6a457139721ce1a2e893e3","url":"https://cdn.modrinth.com/data/NRjRiSSD/versions/r62Eyd0k/memoryleakfix-fabric-1.17%2B-1.1.3.jar"},"modmenu.pw.toml":{"sha256":"a041b0f0305ffa5eb90120aa23768e1cfbb27583904b1751e3783c0f69382f1a","url":"https://cdn.modrinth.com/data/mOgUt4GM/versions/lEkperf6/modmenu-7.2.2.jar"},"moreculling.pw.toml":{"sha256":"8bd332613996b6da00318888f33c4704dba21083e1f7a2503969eb7c7d388cb0","url":"https://cdn.modrinth.com/data/51shyZVL/versions/Bu5pCvCn/moreculling-1.20.1-0.19.0.jar"},"mouse-wheelie.pw.toml":{"sha256":"037745509f023950481a5749812f97f3d5669ceddd78a45ce4f652bde1e5dcc3","url":"https://cdn.modrinth.com/data/u5Ic2U1u/versions/wPtDzPBH/mousewheelie-1.13.0%2Bmc1.20.1.jar"},"no-chat-reports.pw.toml":{"sha256":"8ff70525b0fbc5fa7592424872aa8092db1f7646d53817590bd9f9b88c75babc","url":"https://cdn.modrinth.com/data/qQyHxfxd/versions/HeZZR2kF/NoChatReports-FABRIC-1.20.1-v2.2.2.jar"},"not-enough-animations.pw.toml":{"sha256":"0399528f0a5651bf9b49fad3a8c15cca5173d63e7696bc4cf345223bf6e38217","url":"https://cdn.modrinth.com/data/MPCX6s5C/versions/lODpunva/notenoughanimations-fabric-1.7.0-mc1.20.1.jar"},"ok-zoomer.pw.toml":{"sha256":"675387ce61d9926de2558a6f0fcd6f6d9f41a0eaf575cc46ae03b01f51ad581e","url":"https://cdn.modrinth.com/data/aXf2OSFU/versions/buDX2XKX/ok_zoomer-5.0.1%2B1.20.1.jar"},"qkl.pw.toml":{"sha256":"4913517acfaae53128e664f67423677ba9e1788188e1c3a885c20cedc0e99bf7","url":"https://cdn.modrinth.com/data/lwVhp9o5/versions/RYTef2Wb/quilt-kotlin-libraries-2.1.3%2Bkt.1.9.10%2Bflk.1.10.10.jar"},"qsl.pw.toml":{"sha256":"f46ab9535da352e48e73d17687cbdd2ede09786228d7abf7d99469dba3c02770","url":"https://cdn.modrinth.com/data/qvIfYCYJ/versions/GjvWb8WQ/qfapi-7.4.0_qsl-6.1.2_fapi-0.90.0_mc-1.20.1.jar"},"quilt-loading-screen.pw.toml":{"sha256":"3ce9ec7fe5dec8bbfc58f90a75b5059e70b89b28b830a114c4a3a9fd9904319b","url":"https://cdn.modrinth.com/data/VPU6VYVP/versions/ZxKclDRW/quilt_loading_screen-6.0.0%2B1.20.1.jar"},"raised.pw.toml":{"sha256":"1c32602131cbeb4612a4b0c8dfdf62fa39ace7c454f3d5bedfba11fba6e7cfd9","url":"https://cdn.modrinth.com/data/nCQRBEiR/versions/hJe5aLGc/raised-fabric-1.20.1-3.1.0.jar"},"roughly-enough-items.pw.toml":{"sha256":"8daafa20164782ccb435de3d768c6b8d37a49555d372ae4c99dd726216ae1be4","url":"https://cdn.modrinth.com/data/nfn13YXA/versions/23HREXEg/RoughlyEnoughItems-12.0.684-fabric.jar"},"sodium.pw.toml":{"sha256":"b10e60b8000194bc617fd2c396a8584a5cc33a3118c8b382128452c3f93f881d","url":"https://cdn.modrinth.com/data/AANobbMI/versions/4OZL6q9h/sodium-fabric-mc1.20.1-0.5.3.jar"},"starlight.pw.toml":{"sha256":"2b4bb0256279b9edeec050ea02751119e4a7c6933a2b0d2905a72c56b14882d8","url":"https://cdn.modrinth.com/data/H8CaAYZC/versions/XGIsoVGT/starlight-1.1.2%2Bfabric.dbc156f.jar"},"visuality.pw.toml":{"sha256":"f95afc78d944a06f807c683f5959878d8214d775cd81ecbbbc076fc43763202a","url":"https://cdn.modrinth.com/data/rI0hvYcd/versions/uhvQD6Ny/visuality-0.7.1%2B1.20.jar"},"vmp-fabric.pw.toml":{"sha256":"4b2a19188c20fc58870768e2b47bd0bf7ebd82edc406d3eaf5d6f0ec08ffbd59","url":"https://cdn.modrinth.com/data/wnEe9KBa/versions/sV8lIBhJ/vmp-fabric-mc1.20.1-0.2.0%2Bbeta.7.102-all.jar"},"xaeros-world-map.pw.toml":{"sha256":"9387c6081e5f67ed583b78d133f9212dc955d66584e705924ce96bfa419faac1","url":"https://cdn.modrinth.com/data/NcUtCpym/versions/EKlLbMF8/XaerosWorldMap_1.37.2_Fabric_1.20.jar"}} \ No newline at end of file
diff --git a/flake.nix b/flake.nix
index cb8cbb3..46d1772 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,16 +1,9 @@
{
description = "getchoo's modpack";
- inputs = {
- nixpkgs.url = "nixpkgs/nixos-unstable";
- packwiz2nix.url = "github:getchoo/packwiz2nix";
- };
+ inputs.nixpkgs.url = "nixpkgs/nixpkgs-unstable";
- outputs = {
- nixpkgs,
- packwiz2nix,
- ...
- }: let
+ outputs = {nixpkgs, ...}: let
systems = [
"x86_64-linux"
"aarch64-linux"
@@ -18,38 +11,11 @@
"aarch64-darwin"
];
- forAllSystems = nixpkgs.lib.genAttrs systems;
- nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system;});
- inherit (packwiz2nix.lib) mkChecksumsApp mkMultiMCPack mkPackwizPackages;
+ forAllSystems = nixpkgs.lib.genAttrs systems (system: nixpkgs.legacyPackages.${system});
in {
- apps = forAllSystems (s: let
- pkgs = nixpkgsFor.${s};
- in {
- generate-checksums = mkChecksumsApp pkgs ./mods;
- });
-
- packages = forAllSystems (s: let
- pkgs = nixpkgsFor.${s};
- mods = mkPackwizPackages pkgs ./checksums.json;
- in rec {
- getchoo-modpack = mkMultiMCPack {
- inherit pkgs mods;
- filesDir = ./files;
- name = "getchoo-modpack";
- };
-
- default = getchoo-modpack;
- });
-
- devShells = forAllSystems (s: let
- pkgs = nixpkgsFor.${s};
- inherit (pkgs) mkShell;
- in {
- default = mkShell {
- packages = with pkgs; [
- packwiz
- p7zip
- ];
+ devShells = forAllSystems (pkgs: {
+ default = pkgs.mkShell {
+ packages = [pkgs.packwiz];
};
});
};
diff --git a/index.toml b/index.toml
index b897b19..65caa81 100644
--- a/index.toml
+++ b/index.toml
@@ -1,25 +1,18 @@
hash-format = "sha256"
[[files]]
-file = "files/.packignore"
-hash = "9280b57f3953a92e4c50112002012ae86f673b5c4055b4618c9c4c55f361512d"
-
-[[files]]
-file = "files/instance.cfg"
-hash = "4554f7e3edc9590887e2d6f536bfe37840ab39fd2b57aa420afac09b32dc4d39"
-
-[[files]]
-file = "files/mmc-pack.json"
-hash = "08068b4a5065a38836a0072279adda2637d66a4e8331e4bfb499ce6b6adc4fd0"
+file = "mods/adaptive-tooltips.pw.toml"
+hash = "32d8577e634fc4084a8e3bcd1171ed1921580a020efeea2f52fe8b4a8580cade"
+metafile = true
[[files]]
file = "mods/appleskin.pw.toml"
-hash = "e3dfb2478e6bb096667d4ec89b0ddfef627747939373bdefee02f358d6e3dee1"
+hash = "e9999d5ccd9cba3a02989e8887ee877e9dcf2daf6fb6d5aa8f1c960e42de6669"
metafile = true
[[files]]
file = "mods/architectury-api.pw.toml"
-hash = "a243675bc757485925b293932ee289b9fbcfb3b75bd3ba74eca7603f191cedad"
+hash = "5e0befc218164bc24c0266fe8b214abdf47d606cc19ed198344ea72adb90d4f2"
metafile = true
[[files]]
@@ -29,27 +22,27 @@ metafile = true
[[files]]
file = "mods/better-ping-display-fabric.pw.toml"
-hash = "6a51c7bacf8d179e11fe783804fd3687e409f34f6288e1aaceedf7261ee14006"
+hash = "7d8d61556e6e57afdaf3f99e8ef1b4a4380f1e56da98685690199e8ed0dc92a4"
metafile = true
[[files]]
file = "mods/c2me-fabric.pw.toml"
-hash = "7721e78d990cc15c02f1a03cd6d7652ea995b271a3d19a6ae44829b4c69acbf0"
+hash = "d3a7764f686bd4c6e44ef7e2ec0581fdefeb9ed3d4aab1db63aa58821a264d61"
metafile = true
[[files]]
-file = "mods/continuity.pw.toml"
-hash = "352ca1ab963d35f379bc6a058870f3877edd0773f3a4c827bbca6eb1a37c2be1"
+file = "mods/cloth-config.pw.toml"
+hash = "f250d6778f5b8d03ca32913bea5ea677508e9bb6d8201cdebe005bbe9c3100ee"
metafile = true
[[files]]
-file = "mods/cull-leaves.pw.toml"
-hash = "86d5d686ebe5078b2058260f3fcf7c987a07ff00144514af0789c8e4c71c6d7d"
+file = "mods/continuity.pw.toml"
+hash = "ba6bb5cd66f675c0b0d43bed9f81cc4143b279430e6d6df88ffc9fb71e783813"
metafile = true
[[files]]
file = "mods/debugify.pw.toml"
-hash = "4ba45966a267b774f5d83442c3c43d740f55e11a910e117e50c046b4f77b5c66"
+hash = "60d43521b68e4639ad7e258a8d10759e70a22e543aa0050727283a848466d0b9"
metafile = true
[[files]]
@@ -64,155 +57,145 @@ metafile = true
[[files]]
file = "mods/entityculling.pw.toml"
-hash = "625dddd14bf47324a945452cbd92e913877bb574883b086a73aa6fc07740ac44"
+hash = "457603e7c278da5b0a418354585addb075993380ec9e195d691d5097a8bd512c"
metafile = true
[[files]]
file = "mods/essential.pw.toml"
-hash = "32555a5ea778bd645e45c552129306753c04b213c97db29240ec60371a325319"
+hash = "780d6188b09c7599e9ac3f0d50713d911bdda0353b9a7f3dd0e66e6d377c4831"
metafile = true
[[files]]
-file = "mods/fallingtree.pw.toml"
-hash = "c2fee69886e8ce1010ca02d8eb532585155339eeb6e29cc30d508a50600a07e2"
+file = "mods/fabric-api.pw.toml"
+hash = "8ad92515a4d70ba75d0affea314f19274faf06344c835a1b59d21724d011fb34"
metafile = true
[[files]]
-file = "mods/fastanim.pw.toml"
-hash = "09282ae8265516057d5500cb489f0a8d3c563064d85582718a1efd6f3afb43be"
+file = "mods/fabric-language-kotlin.pw.toml"
+hash = "bd278a821fa158a7ffedb511c84e5bc0887192ceae21f9038b30357edd64a9e9"
metafile = true
[[files]]
-file = "mods/fastload.pw.toml"
-hash = "0e72ac12907f4fb5a499a459cc2c64f9225a0c77ee59e76c9360ff0d3479aea2"
+file = "mods/fallingtree.pw.toml"
+hash = "8f31f9669801ff1bd36b9e061cba9966c784117a4a81f98ec3a8ed0735bd56d3"
metafile = true
[[files]]
file = "mods/ferrite-core.pw.toml"
-hash = "39a6a39433b1b104bfafafcd60a8171f866daa2ebefffd64df822d0e69288e3a"
+hash = "4146027b92b4885fddec00435233c61c3728b5e09265982ab187021519a4fa89"
metafile = true
[[files]]
-file = "mods/freecam.pw.toml"
-hash = "32e947e8c9fba4812f2713e5f28db1a3cfa759464b75954d1d288a48e4e3e740"
+file = "mods/immediatelyfast.pw.toml"
+hash = "c4afda1d505225ad18e689ded06f0ed170dec2ea5e6c9621277b565d0fc338b8"
metafile = true
[[files]]
-file = "mods/inspecio.pw.toml"
-hash = "280af6886fbdec37ccfab4d8a7cbd2d3777a198a5fa0d2ec15dc9b9c8b0eff67"
+file = "mods/indium.pw.toml"
+hash = "a81a6caaf787401a7a32dceee38e1d3f67ee6d747fb8fd7e38950b9c220e0c92"
metafile = true
[[files]]
file = "mods/iris.pw.toml"
-hash = "41a3116f5642d40ed54efda3f863373fa4d3c0c3a24a447a38c8a106e9fbb079"
+hash = "61fc4926a5d915dd8e52dce0c906b100f0d3c72ac91008c2a90c88abe22a3bf0"
metafile = true
[[files]]
file = "mods/jade.pw.toml"
-hash = "bd14735296607c2f58e3130748610d08ab6407afcb1d7cd168e856a0012173a7"
+hash = "4b0dc5a4e66974885600acef784f425a6930a1fa4e6091a0b46eef65c063c215"
metafile = true
[[files]]
file = "mods/krypton.pw.toml"
-hash = "71ef7cc16632c0039fe194183b5885968c6d740aaa67a58000653ae0cb40b882"
-metafile = true
-
-[[files]]
-file = "mods/lambdabettergrass.pw.toml"
-hash = "0e0ad3001c99ec281023ad8fefb7ace9931cb8cbda6d4ed18abf2b47c02320da"
+hash = "fe6abe1ea33393fe1441801f79eda74ea892e5f4b677a56eccafafcbf4d253ca"
metafile = true
[[files]]
-file = "mods/lambdynamiclights.pw.toml"
-hash = "a626674fc1092afe5ccc6cbf4856c09119e42395494f1c3862eed2ab17da0221"
+file = "mods/lithium.pw.toml"
+hash = "3dedde5213176d72e1c353877fa44315945e8f3da2ba05f5679d81e9f558bb1d"
metafile = true
[[files]]
-file = "mods/lithium.pw.toml"
-hash = "c239c951796882b9c93e649a0dba4f2d95804441faaed707b686381b7a5c67da"
+file = "mods/memoryleakfix.pw.toml"
+hash = "3c0945a312aca06a2185b00cb03ae482949b008d72614497148aa2df301af019"
metafile = true
[[files]]
-file = "mods/memoryleakfix.pw.toml"
-hash = "f395370c85fadafff7f793cd66a875c927c381320cfdb5a638ad3bc7b59fc01e"
+file = "mods/modernfix.pw.toml"
+hash = "783fe7d40a9e8e14775ed458cedc7cfc5cd13a2d3d857792adfda77025d3f379"
metafile = true
[[files]]
file = "mods/modmenu.pw.toml"
-hash = "4cd171d3f5f3e1d2948cb1b0062e742a5e85110c9e9a668f9aed5b0cebcb9c97"
+hash = "b61b0ccdc8328d637c0f57cbb25258491b94ae03c89c4194ad6ca8b86579dd28"
metafile = true
[[files]]
file = "mods/moreculling.pw.toml"
-hash = "be1f88824f7ceb008ce38ae763a93921db0c27db68577fdb16c29c6a085ec1f3"
+hash = "b73a1ae14953db777b1ec7617280b57285daeb4663cd0d984959e398eb393c59"
metafile = true
[[files]]
file = "mods/mouse-wheelie.pw.toml"
-hash = "3f49409f478daabaf27bfc18e6519b75518769c7f10a204add96ae3d231c4eb6"
-metafile = true
-
-[[files]]
-file = "mods/no-chat-reports.pw.toml"
-hash = "7ca62a9da5c2ec9f0a8bed5394021c959e90077db16b313be44f4c8736f7fbf5"
+hash = "9758d49c2104b585d61bbd1adc2a0c71b42e2e4b09b5f2410c9995cf957cdd9c"
metafile = true
[[files]]
-file = "mods/not-enough-animations.pw.toml"
-hash = "6e8f54238b405650aea8f045b138b86d13311fabe8bc0bbebd35f3844c9148e4"
+file = "mods/mru.pw.toml"
+hash = "133f616a55d3fb6d5047319135fd9dbef1b850a19ab521add361222c10a616e5"
metafile = true
[[files]]
-file = "mods/ok-zoomer.pw.toml"
-hash = "8799d48386f500a6f924f327d61680fcb544ce74595f044d40c398de2174bc58"
+file = "mods/no-chat-reports.pw.toml"
+hash = "a045df0a5d03ef89d92ca9318aa42a5a5e7617b37dd38d32b0a7058c0f6f4ef7"
metafile = true
[[files]]
-file = "mods/qkl.pw.toml"
-hash = "edf6a6fa71746a3927c2d7f3c2e46be7e7ef97bb3bd8f0eb6abd84989b9257e1"
+file = "mods/not-enough-animations.pw.toml"
+hash = "a4edf114ab489c47edbf44dcded6693ace1168bffafdaa374f371c67167e84f6"
metafile = true
[[files]]
-file = "mods/qsl.pw.toml"
-hash = "db2669fd5202942c0d0514c797c198506470e149542ac9d65e33e04f1a01db23"
+file = "mods/ok-boomer.pw.toml"
+hash = "2390504b56605e6464ecddda031cb221d46871437ecb4035783feb67faa1bff1"
metafile = true
[[files]]
-file = "mods/quilt-loading-screen.pw.toml"
-hash = "0431d2fbc92b56108c48fc955caafbefcafeb69bc9773c5413daa89af5d87966"
+file = "mods/owo-lib.pw.toml"
+hash = "544c3f52ee5bc050074ab01908485bf2a4d771171e2d706a641c929598968c22"
metafile = true
[[files]]
file = "mods/raised.pw.toml"
-hash = "dc0a117734b1153892a40e65301ee236c9dbe45930f04d7ab6967daaee11214a"
+hash = "1035934f4a2815750fb1608b360329604c9b8fa25283ed435fb3cda1339b0f8b"
metafile = true
[[files]]
file = "mods/roughly-enough-items.pw.toml"
-hash = "23d596d1d2e39ae3b05415790663819401fc62d745d6a817e88d9c36d07bce53"
+hash = "fa061dc6468aa501d456d99f4a73a92076a00944b62faefff122c7ce4c2c4e18"
metafile = true
[[files]]
file = "mods/sodium.pw.toml"
-hash = "9a927c3e0830ba32e1b8a2e543597781724462595b8cce58f676962b442bb52b"
+hash = "582b585d4bcb3bc316e0451a3c46a869d0b2f120598df12bd339bae2a68c5734"
metafile = true
[[files]]
-file = "mods/starlight.pw.toml"
-hash = "218f67d6bcaae849582618cd3e5eb1d4cac0fd6045115f64340620300e160c11"
+file = "mods/sound.pw.toml"
+hash = "28f5026e2def7e42e2392bd771ac4c6c98543107ece810c1e1899ae94c3ef25d"
metafile = true
[[files]]
file = "mods/visuality.pw.toml"
-hash = "1d0b62685fd74fdd9d8cba3b3f3a85da75423550704646251a39542fce96bcb4"
+hash = "5ff3f8eb488d24fc70830b805da7a33d8fa9ffa1b45d858bf60189060c56093c"
metafile = true
[[files]]
-file = "mods/vmp-fabric.pw.toml"
-hash = "40f1effd2c65b6c6f9a1b5dfd0903c87df02b23da6b57f389f61f361ef86d425"
+file = "mods/xaeros-world-map.pw.toml"
+hash = "32e5438512b7e4c4a4e2fb6346a00e4346702bbea3a0030a108eecb3f7e3f261"
metafile = true
[[files]]
-file = "mods/xaeros-world-map.pw.toml"
-hash = "f79ac61306ede9d4037235e540fb6f9046a5fa20ef1b24b2639c6ca78addd165"
+file = "mods/yacl.pw.toml"
+hash = "e93f3ff0a1d8939c3e5ad6c0ce6ccdc69c1a5654b0adb85acd72176e2ba58031"
metafile = true
diff --git a/mods/adaptive-tooltips.pw.toml b/mods/adaptive-tooltips.pw.toml
new file mode 100644
index 0000000..3de2413
--- /dev/null
+++ b/mods/adaptive-tooltips.pw.toml
@@ -0,0 +1,13 @@
+name = "Adaptive Tooltips"
+filename = "AdaptiveTooltips-1.3.0-fabric-1.20.2.jar"
+side = "client"
+
+[download]
+url = "https://cdn.modrinth.com/data/wFv8yCxM/versions/MgbaLEPy/AdaptiveTooltips-1.3.0-fabric-1.20.2.jar"
+hash-format = "sha1"
+hash = "2ff512a70c437c20523de01ea95b6fc9b164a5c0"
+
+[update]
+[update.modrinth]
+mod-id = "wFv8yCxM"
+version = "MgbaLEPy"
diff --git a/mods/appleskin.pw.toml b/mods/appleskin.pw.toml
index ccaee94..03b0e2b 100644
--- a/mods/appleskin.pw.toml
+++ b/mods/appleskin.pw.toml
@@ -1,13 +1,13 @@
name = "AppleSkin"
-filename = "appleskin-fabric-mc1.20.1-2.5.1.jar"
+filename = "appleskin-fabric-mc1.20.3-2.5.1.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/xcauwnEB/appleskin-fabric-mc1.20.1-2.5.1.jar"
+url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/pmFyu3Sz/appleskin-fabric-mc1.20.3-2.5.1.jar"
hash-format = "sha1"
-hash = "d0f11243f79c071416bbcee781ae93eb57a0283c"
+hash = "d8c8f47cadf0bec89b0539f44e3c67df73d8e048"
[update]
[update.modrinth]
mod-id = "EsAfCjCV"
-version = "xcauwnEB"
+version = "pmFyu3Sz"
diff --git a/mods/architectury-api.pw.toml b/mods/architectury-api.pw.toml
index 7dadcdd..175dcd0 100644
--- a/mods/architectury-api.pw.toml
+++ b/mods/architectury-api.pw.toml
@@ -1,13 +1,13 @@
name = "Architectury API"
-filename = "architectury-9.1.12-fabric.jar"
+filename = "architectury-11.0.10-fabric.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/Sbew3kXe/architectury-9.1.12-fabric.jar"
+url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/FS4xv173/architectury-11.0.10-fabric.jar"
hash-format = "sha1"
-hash = "add0fffa445ee2959b0898484732704a15156553"
+hash = "6ba57dff2b2d7386cf0906d7f6f21dce497c8b50"
[update]
[update.modrinth]
mod-id = "lhGA9TYQ"
-version = "Sbew3kXe"
+version = "FS4xv173"
diff --git a/mods/better-ping-display-fabric.pw.toml b/mods/better-ping-display-fabric.pw.toml
index 1a26301..cfbd366 100644
--- a/mods/better-ping-display-fabric.pw.toml
+++ b/mods/better-ping-display-fabric.pw.toml
@@ -1,13 +1,17 @@
name = "Better Ping Display [Fabric]"
-filename = "BetterPingDisplay-Fabric-1.20.1-1.1.1.jar"
+filename = "BetterPingDisplay-Fabric-1.20.2-1.1.1.jar"
side = "client"
[download]
-url = "https://cdn.modrinth.com/data/MS1ZMyR7/versions/FbxcDBxy/BetterPingDisplay-Fabric-1.20.1-1.1.1.jar"
+url = "https://cdn.modrinth.com/data/MS1ZMyR7/versions/u8ekpfw9/BetterPingDisplay-Fabric-1.20.2-1.1.1.jar"
hash-format = "sha1"
-hash = "c9c7a272b371dc3362cb40bfb4550f7d4be59002"
+hash = "a8068f3a56c12f6cdcc797b6eea7820e808f780d"
[update]
[update.modrinth]
mod-id = "MS1ZMyR7"
-version = "FbxcDBxy"
+version = "u8ekpfw9"
+
+[option]
+optional = true
+description = "doesn't work with 1.20.4"
diff --git a/mods/c2me-fabric.pw.toml b/mods/c2me-fabric.pw.toml
index e1e6dce..b62d80b 100644
--- a/mods/c2me-fabric.pw.toml
+++ b/mods/c2me-fabric.pw.toml
@@ -1,13 +1,13 @@
name = "Concurrent Chunk Management Engine (Fabric)"
-filename = "c2me-fabric-mc1.20.1-0.2.0+alpha.11.0.jar"
+filename = "c2me-fabric-mc1.20.4-0.2.0+alpha.11.40.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/VSNURh3q/versions/T5Pkyhit/c2me-fabric-mc1.20.1-0.2.0%2Balpha.11.0.jar"
+url = "https://cdn.modrinth.com/data/VSNURh3q/versions/OSw3GbgT/c2me-fabric-mc1.20.4-0.2.0%2Balpha.11.40.jar"
hash-format = "sha1"
-hash = "a7b3f8136ba60ff6e3c216ade83ff03c42ca77ee"
+hash = "1b24dec5cb84d957089a4f6a97223f7c52f0eeac"
[update]
[update.modrinth]
mod-id = "VSNURh3q"
-version = "T5Pkyhit"
+version = "OSw3GbgT"
diff --git a/mods/cloth-config.pw.toml b/mods/cloth-config.pw.toml
new file mode 100644
index 0000000..c78d980
--- /dev/null
+++ b/mods/cloth-config.pw.toml
@@ -0,0 +1,13 @@
+name = "Cloth Config API"
+filename = "cloth-config-13.0.121-fabric.jar"
+side = "both"
+
+[download]
+url = "https://cdn.modrinth.com/data/9s6osm5g/versions/eBZiZ9NS/cloth-config-13.0.121-fabric.jar"
+hash-format = "sha1"
+hash = "e20f396a937a09b686aa986c802643b9adbb311e"
+
+[update]
+[update.modrinth]
+mod-id = "9s6osm5g"
+version = "eBZiZ9NS"
diff --git a/mods/continuity.pw.toml b/mods/continuity.pw.toml
index cee9a3c..cf8ee94 100644
--- a/mods/continuity.pw.toml
+++ b/mods/continuity.pw.toml
@@ -1,16 +1,16 @@
name = "Continuity"
-filename = "continuity-3.0.0-beta.4+1.20.1.jar"
+filename = "continuity-3.0.0-beta.4+1.20.2.jar"
side = "client"
[download]
-url = "https://cdn.modrinth.com/data/1IjD5062/versions/Z9FJWLMt/continuity-3.0.0-beta.4%2B1.20.1.jar"
+url = "https://cdn.modrinth.com/data/1IjD5062/versions/JXhQlDZl/continuity-3.0.0-beta.4%2B1.20.2.jar"
hash-format = "sha1"
-hash = "b662fd625ba1f06c6e4958eac373856047d0d2a9"
+hash = "f9eaa5fc75d2747dbe14818dfde04eaf7152ae3c"
[update]
[update.modrinth]
mod-id = "1IjD5062"
-version = "Z9FJWLMt"
+version = "JXhQlDZl"
[option]
optional = true
diff --git a/mods/cull-leaves.pw.toml b/mods/cull-leaves.pw.toml
deleted file mode 100644
index 4e2d715..0000000
--- a/mods/cull-leaves.pw.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Cull Leaves"
-filename = "cullleaves-quilt-3.2.0.jar"
-side = "client"
-
-[download]
-url = "https://cdn.modrinth.com/data/GNxdLCoP/versions/vGCKmen2/cullleaves-quilt-3.2.0.jar"
-hash-format = "sha1"
-hash = "8c146fc54324030319bfe08dd15b1a96bb189a5d"
-
-[update]
-[update.modrinth]
-mod-id = "GNxdLCoP"
-version = "vGCKmen2"
diff --git a/mods/debugify.pw.toml b/mods/debugify.pw.toml
index e6f9022..43f2c03 100644
--- a/mods/debugify.pw.toml
+++ b/mods/debugify.pw.toml
@@ -1,13 +1,13 @@
name = "Debugify"
-filename = "Debugify-1.20.1+2.0.jar"
+filename = "Debugify-1.20.4+1.0.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/QwxR6Gcd/versions/6XDJoCks/Debugify-1.20.1%2B2.0.jar"
+url = "https://cdn.modrinth.com/data/QwxR6Gcd/versions/gGTvKKDk/Debugify-1.20.4%2B1.0.jar"
hash-format = "sha1"
-hash = "ca859180ad2b57856fbcc8db4995c1871a7d556c"
+hash = "1e5ad7a619ca72824e7196403aae44ebb0a2468e"
[update]
[update.modrinth]
mod-id = "QwxR6Gcd"
-version = "6XDJoCks"
+version = "gGTvKKDk"
diff --git a/mods/entityculling.pw.toml b/mods/entityculling.pw.toml
index 115ee81..d5ee1fb 100644
--- a/mods/entityculling.pw.toml
+++ b/mods/entityculling.pw.toml
@@ -1,13 +1,13 @@
name = "EntityCulling"
-filename = "entityculling-fabric-1.6.2-mc1.20.1.jar"
+filename = "entityculling-fabric-1.6.3.1-mc1.20.4.jar"
side = "client"
[download]
-url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/BDwHAdWc/entityculling-fabric-1.6.2-mc1.20.1.jar"
+url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/HSirwtwV/entityculling-fabric-1.6.3.1-mc1.20.4.jar"
hash-format = "sha1"
-hash = "8e4be2bb9703deddb3d3d212c812cdc1f9de072b"
+hash = "898794f5fe7051ce2c58c3c32e34d785fec7761d"
[update]
[update.modrinth]
mod-id = "NNAgCjsB"
-version = "BDwHAdWc"
+version = "HSirwtwV"
diff --git a/mods/essential.pw.toml b/mods/essential.pw.toml
index 294dd19..caca8a4 100644
--- a/mods/essential.pw.toml
+++ b/mods/essential.pw.toml
@@ -1,16 +1,16 @@
name = "ESSENTIAL Mod"
-filename = "essential_1-3-0-2_fabric_1-20-1.jar"
+filename = "essential_1-3-0-2_fabric_1-20-4.jar"
side = "client"
[download]
-url = "https://cdn.modrinth.com/data/k2ZPuTBm/versions/PQ4V8nU6/essential_1-3-0-2_fabric_1-20-1.jar"
+url = "https://cdn.modrinth.com/data/k2ZPuTBm/versions/E1C1ayvX/essential_1-3-0-2_fabric_1-20-4.jar"
hash-format = "sha1"
-hash = "7140cb895dc2f66850da1f1d2352bc210938ee1c"
+hash = "88d4e07cd3982a6c024d89d7cce0732f13138eff"
[update]
[update.modrinth]
mod-id = "k2ZPuTBm"
-version = "PQ4V8nU6"
+version = "E1C1ayvX"
[option]
optional = true
diff --git a/mods/fabric-api.pw.toml b/mods/fabric-api.pw.toml
new file mode 100644
index 0000000..9a7be0f
--- /dev/null
+++ b/mods/fabric-api.pw.toml
@@ -0,0 +1,13 @@
+name = "Fabric API"
+filename = "fabric-api-0.92.1+1.20.4.jar"
+side = "both"
+
+[download]
+url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/cAJWRbQt/fabric-api-0.92.1%2B1.20.4.jar"
+hash-format = "sha1"
+hash = "cffd50fa41969c78215266ed1459b1b86eac401a"
+
+[update]
+[update.modrinth]
+mod-id = "P7dR8mSH"
+version = "cAJWRbQt"
diff --git a/mods/fabric-language-kotlin.pw.toml b/mods/fabric-language-kotlin.pw.toml
new file mode 100644
index 0000000..3177341
--- /dev/null
+++ b/mods/fabric-language-kotlin.pw.toml
@@ -0,0 +1,13 @@
+name = "Fabric Language Kotlin"
+filename = "fabric-language-kotlin-1.10.17+kotlin.1.9.22.jar"
+side = "both"
+
+[download]
+url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/JjrWZ7m8/fabric-language-kotlin-1.10.17%2Bkotlin.1.9.22.jar"
+hash-format = "sha1"
+hash = "02e0af07d7c1476a6bd0530d0dacf0a2a9f8a8ea"
+
+[update]
+[update.modrinth]
+mod-id = "Ha28R6CL"
+version = "JjrWZ7m8"
diff --git a/mods/fallingtree.pw.toml b/mods/fallingtree.pw.toml
index 6f27375..bcd89c5 100644
--- a/mods/fallingtree.pw.toml
+++ b/mods/fallingtree.pw.toml
@@ -1,16 +1,13 @@
name = "FallingTree"
-filename = "FallingTree-1.20.1-4.3.4.jar"
-side = "both"
+filename = "FallingTree-1.20.4-1.20.4.3.jar"
+side = "server"
[download]
-url = "https://cdn.modrinth.com/data/Fb4jn8m6/versions/NrtzFkZE/FallingTree-1.20.1-4.3.4.jar"
+url = "https://cdn.modrinth.com/data/Fb4jn8m6/versions/mb15RrXi/FallingTree-1.20.4-1.20.4.3.jar"
hash-format = "sha1"
-hash = "617b79628fca3968979c1cc5f42edda882a55adb"
+hash = "ca13eb4798f4bb8b9a4f55f3733959857a867b5d"
[update]
[update.modrinth]
mod-id = "Fb4jn8m6"
-version = "NrtzFkZE"
-
-[option]
-optional = true
+version = "mb15RrXi"
diff --git a/mods/fastanim.pw.toml b/mods/fastanim.pw.toml
deleted file mode 100644
index e485939..0000000
--- a/mods/fastanim.pw.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "FastAnim"
-filename = "lunade-fastanim-1.6-1.20.jar"
-side = "client"
-
-[download]
-url = "https://cdn.modrinth.com/data/yHf7SALy/versions/5lHXCowj/lunade-fastanim-1.6-1.20.jar"
-hash-format = "sha1"
-hash = "0e611399323878b9f3efcc6016ea5d6eefc8c765"
-
-[update]
-[update.modrinth]
-mod-id = "yHf7SALy"
-version = "5lHXCowj"
diff --git a/mods/fastload.pw.toml b/mods/fastload.pw.toml
deleted file mode 100644
index b4883c6..0000000
--- a/mods/fastload.pw.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Fastload"
-filename = "Fastload+1.18.2-1.20-3.4.0.jar"
-side = "both"
-
-[download]
-url = "https://cdn.modrinth.com/data/kCpssoSb/versions/ys9T20o4/Fastload%2B1.18.2-1.20-3.4.0.jar"
-hash-format = "sha1"
-hash = "b57e4d594031638b0dc076a3b6e501f417700577"
-
-[update]
-[update.modrinth]
-mod-id = "kCpssoSb"
-version = "ys9T20o4"
diff --git a/mods/ferrite-core.pw.toml b/mods/ferrite-core.pw.toml
index 2b83cf6..8aa2013 100644
--- a/mods/ferrite-core.pw.toml
+++ b/mods/ferrite-core.pw.toml
@@ -1,13 +1,13 @@
name = "FerriteCore"
-filename = "ferritecore-6.0.1-fabric.jar"
+filename = "ferritecore-6.0.3-fabric.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/uXXizFIs/versions/unerR5MN/ferritecore-6.0.1-fabric.jar"
+url = "https://cdn.modrinth.com/data/uXXizFIs/versions/pguEMpy9/ferritecore-6.0.3-fabric.jar"
hash-format = "sha1"
-hash = "8fa3b84fc5860dbc30fdf8cced02af68dffcf3fa"
+hash = "f2bbb773f4213d36201b76820f206e2a6f213c0c"
[update]
[update.modrinth]
mod-id = "uXXizFIs"
-version = "unerR5MN"
+version = "pguEMpy9"
diff --git a/mods/freecam.pw.toml b/mods/freecam.pw.toml
deleted file mode 100644
index 6da64fc..0000000
--- a/mods/freecam.pw.toml
+++ /dev/null
@@ -1,17 +0,0 @@
-name = "Freecam (Modrinth Edition)"
-filename = "freecam-fabric-modrinth-1.2.1+1.20.jar"
-side = "client"
-
-[download]
-url = "https://cdn.modrinth.com/data/XeEZ3fK2/versions/QkWJuaZ8/freecam-fabric-modrinth-1.2.1%2B1.20.jar"
-hash-format = "sha1"
-hash = "c057cd934d4d1c68b3f3775e864fd11e225d9f80"
-
-[update]
-[update.modrinth]
-mod-id = "XeEZ3fK2"
-version = "QkWJuaZ8"
-
-[option]
-optional = true
-description = "simple free cam for taking cool pics :)"
diff --git a/mods/immediatelyfast.pw.toml b/mods/immediatelyfast.pw.toml
new file mode 100644
index 0000000..3bcf867
--- /dev/null
+++ b/mods/immediatelyfast.pw.toml
@@ -0,0 +1,13 @@
+name = "ImmediatelyFast"
+filename = "ImmediatelyFast-Fabric-1.2.8+1.20.4.jar"
+side = "client"
+
+[download]
+url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/3EgIBnht/ImmediatelyFast-Fabric-1.2.8%2B1.20.4.jar"
+hash-format = "sha1"
+hash = "6777e5b7071410d9257af181ac6367324d28854a"
+
+[update]
+[update.modrinth]
+mod-id = "5ZwdcRci"
+version = "3EgIBnht"
diff --git a/mods/indium.pw.toml b/mods/indium.pw.toml
new file mode 100644
index 0000000..876e290
--- /dev/null
+++ b/mods/indium.pw.toml
@@ -0,0 +1,13 @@
+name = "Indium"
+filename = "indium-1.0.28+mc1.20.4.jar"
+side = "client"
+
+[download]
+url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/tD2IqHXC/indium-1.0.28%2Bmc1.20.4.jar"
+hash-format = "sha1"
+hash = "58dd40a3047dc9539996258a884fc92a0cced2e7"
+
+[update]
+[update.modrinth]
+mod-id = "Orvt0mRa"
+version = "tD2IqHXC"
diff --git a/mods/inspecio.pw.toml b/mods/inspecio.pw.toml
deleted file mode 100644
index f792ad4..0000000
--- a/mods/inspecio.pw.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Inspecio"
-filename = "inspecio-1.8.1+1.20.jar"
-side = "both"
-
-[download]
-url = "https://cdn.modrinth.com/data/a93H3mKU/versions/9fkuAmia/inspecio-1.8.1%2B1.20.jar"
-hash-format = "sha1"
-hash = "54c163318a121848c4b4544a53f81f6cb5d0a67c"
-
-[update]
-[update.modrinth]
-mod-id = "a93H3mKU"
-version = "9fkuAmia"
diff --git a/mods/iris.pw.toml b/mods/iris.pw.toml
index 1c60f93..3c6a8c4 100644
--- a/mods/iris.pw.toml
+++ b/mods/iris.pw.toml
@@ -1,13 +1,13 @@
name = "Iris Shaders"
-filename = "iris-mc1.20.1-1.6.11.jar"
+filename = "iris-mc1.20.4-1.6.14.jar"
side = "client"
[download]
-url = "https://cdn.modrinth.com/data/YL57xq9U/versions/ogjxrwGQ/iris-mc1.20.1-1.6.11.jar"
+url = "https://cdn.modrinth.com/data/YL57xq9U/versions/Xl7oywRL/iris-mc1.20.4-1.6.14.jar"
hash-format = "sha1"
-hash = "11c22bb87b55a7991663f2187490b25ea9c9f698"
+hash = "7e62bb2851f2afc06946ea3fc170173528aefdbb"
[update]
[update.modrinth]
mod-id = "YL57xq9U"
-version = "ogjxrwGQ"
+version = "Xl7oywRL"
diff --git a/mods/jade.pw.toml b/mods/jade.pw.toml
index db2ec25..c146f6d 100644
--- a/mods/jade.pw.toml
+++ b/mods/jade.pw.toml
@@ -1,13 +1,13 @@
name = "Jade 🔍"
-filename = "Jade-1.20-fabric-11.7.0.jar"
+filename = "Jade-1.20.4-fabric-13.2.1.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/QhvPNPdp/Jade-1.20-fabric-11.7.0.jar"
+url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/dxGKPrkW/Jade-1.20.4-fabric-13.2.1.jar"
hash-format = "sha1"
-hash = "e15f8b549a8442e063aa57a1faec4877a71ef88a"
+hash = "2fa281fd978d83062450ea6537db9a00ef10aa90"
[update]
[update.modrinth]
mod-id = "nvQzSEkH"
-version = "QhvPNPdp"
+version = "dxGKPrkW"
diff --git a/mods/krypton.pw.toml b/mods/krypton.pw.toml
index 74c1b51..00a36fa 100644
--- a/mods/krypton.pw.toml
+++ b/mods/krypton.pw.toml
@@ -1,13 +1,13 @@
name = "Krypton"
-filename = "krypton-0.2.3.jar"
+filename = "krypton-0.2.6.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/fQEb0iXm/versions/jiDwS0W1/krypton-0.2.3.jar"
+url = "https://cdn.modrinth.com/data/fQEb0iXm/versions/bRcuOnao/krypton-0.2.6.jar"
hash-format = "sha1"
-hash = "4d499819effd8afe811e5d93952fcc46765a00df"
+hash = "fc237a3cdf7cff71e222db8e14fa6d4546e2d000"
[update]
[update.modrinth]
mod-id = "fQEb0iXm"
-version = "jiDwS0W1"
+version = "bRcuOnao"
diff --git a/mods/lambdabettergrass.pw.toml b/mods/lambdabettergrass.pw.toml
deleted file mode 100644
index 6b116b7..0000000
--- a/mods/lambdabettergrass.pw.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "LambdaBetterGrass"
-filename = "lambdabettergrass-1.5.2+1.20.1.jar"
-side = "client"
-
-[download]
-url = "https://cdn.modrinth.com/data/2Uev7LdA/versions/Fhyj2P7Q/lambdabettergrass-1.5.2%2B1.20.1.jar"
-hash-format = "sha1"
-hash = "4b3658f4dc69212768db703b7931f0d51a5c5568"
-
-[update]
-[update.modrinth]
-mod-id = "2Uev7LdA"
-version = "Fhyj2P7Q"
diff --git a/mods/lambdynamiclights.pw.toml b/mods/lambdynamiclights.pw.toml
deleted file mode 100644
index 66842a8..0000000
--- a/mods/lambdynamiclights.pw.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "LambDynamicLights"
-filename = "lambdynamiclights-2.3.2+1.20.1.jar"
-side = "client"
-
-[download]
-url = "https://cdn.modrinth.com/data/yBW8D80W/versions/mYl4RvKg/lambdynamiclights-2.3.2%2B1.20.1.jar"
-hash-format = "sha1"
-hash = "71b636fa74744e51ba2d248c81a38bdbfad5d43b"
-
-[update]
-[update.modrinth]
-mod-id = "yBW8D80W"
-version = "mYl4RvKg"
diff --git a/mods/lithium.pw.toml b/mods/lithium.pw.toml
index c5a1bc5..117fad8 100644
--- a/mods/lithium.pw.toml
+++ b/mods/lithium.pw.toml
@@ -1,13 +1,13 @@
name = "Lithium"
-filename = "lithium-fabric-mc1.20.1-0.11.2.jar"
+filename = "lithium-fabric-mc1.20.4-0.12.1.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/ZSNsJrPI/lithium-fabric-mc1.20.1-0.11.2.jar"
+url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/nMhjKWVE/lithium-fabric-mc1.20.4-0.12.1.jar"
hash-format = "sha1"
-hash = "8f4642147e60827f728badac7a819d1a9f3b25d5"
+hash = "4a0744beb2246d93cb475d21a5a53faa556956e0"
[update]
[update.modrinth]
mod-id = "gvQqBUqZ"
-version = "ZSNsJrPI"
+version = "nMhjKWVE"
diff --git a/mods/memoryleakfix.pw.toml b/mods/memoryleakfix.pw.toml
index 80f21ca..4177d50 100644
--- a/mods/memoryleakfix.pw.toml
+++ b/mods/memoryleakfix.pw.toml
@@ -1,13 +1,13 @@
name = "Memory Leak Fix"
-filename = "memoryleakfix-fabric-1.17+-1.1.3.jar"
+filename = "memoryleakfix-fabric-1.17+-1.1.5.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/NRjRiSSD/versions/r62Eyd0k/memoryleakfix-fabric-1.17%2B-1.1.3.jar"
+url = "https://cdn.modrinth.com/data/NRjRiSSD/versions/5xvCCRjJ/memoryleakfix-fabric-1.17%2B-1.1.5.jar"
hash-format = "sha1"
-hash = "77d4db057dee088f7b346aee6f64459c078857ef"
+hash = "784bbbe9c64ac9d3d4ad19786c02291e607fcf4e"
[update]
[update.modrinth]
mod-id = "NRjRiSSD"
-version = "r62Eyd0k"
+version = "5xvCCRjJ"
diff --git a/mods/modernfix.pw.toml b/mods/modernfix.pw.toml
new file mode 100644
index 0000000..65d929b
--- /dev/null
+++ b/mods/modernfix.pw.toml
@@ -0,0 +1,13 @@
+name = "ModernFix"
+filename = "modernfix-fabric-5.11.1+mc1.20.4.jar"
+side = "both"
+
+[download]
+url = "https://cdn.modrinth.com/data/nmDcB62a/versions/2FN93J80/modernfix-fabric-5.11.1%2Bmc1.20.4.jar"
+hash-format = "sha1"
+hash = "9ed996abf121b9c3f90915dcb84d890de7aa4f0f"
+
+[update]
+[update.modrinth]
+mod-id = "nmDcB62a"
+version = "2FN93J80"
diff --git a/mods/modmenu.pw.toml b/mods/modmenu.pw.toml
index 9609af6..21a6ef7 100644
--- a/mods/modmenu.pw.toml
+++ b/mods/modmenu.pw.toml
@@ -1,13 +1,13 @@
name = "Mod Menu"
-filename = "modmenu-7.2.2.jar"
+filename = "modmenu-9.0.0.jar"
side = "client"
[download]
-url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/lEkperf6/modmenu-7.2.2.jar"
+url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/sjtVVlsA/modmenu-9.0.0.jar"
hash-format = "sha1"
-hash = "099c68feeb74887cbbbd8ce9a27c6123804a2c5a"
+hash = "eb09a3b6668407df4ad9b24849d52a38c448877e"
[update]
[update.modrinth]
mod-id = "mOgUt4GM"
-version = "lEkperf6"
+version = "sjtVVlsA"
diff --git a/mods/moreculling.pw.toml b/mods/moreculling.pw.toml
index 9b39e22..b643281 100644
--- a/mods/moreculling.pw.toml
+++ b/mods/moreculling.pw.toml
@@ -1,13 +1,13 @@
name = "More Culling"
-filename = "moreculling-1.20.1-0.19.0.jar"
+filename = "moreculling-1.20.4-0.20.3.jar"
side = "client"
[download]
-url = "https://cdn.modrinth.com/data/51shyZVL/versions/Bu5pCvCn/moreculling-1.20.1-0.19.0.jar"
+url = "https://cdn.modrinth.com/data/51shyZVL/versions/qLO5kLrO/moreculling-1.20.4-0.20.3.jar"
hash-format = "sha1"
-hash = "2b781b5ec7aa1b13f49a5fcc761a6b3f57c1e05f"
+hash = "d58cc68e3867fc64bfcfe35baf5ba572f018f6d9"
[update]
[update.modrinth]
mod-id = "51shyZVL"
-version = "Bu5pCvCn"
+version = "qLO5kLrO"
diff --git a/mods/mouse-wheelie.pw.toml b/mods/mouse-wheelie.pw.toml
index fc38499..6fbdb54 100644
--- a/mods/mouse-wheelie.pw.toml
+++ b/mods/mouse-wheelie.pw.toml
@@ -1,16 +1,16 @@
name = "Mouse Wheelie"
-filename = "mousewheelie-1.13.0+mc1.20.1.jar"
+filename = "mousewheelie-1.13.3+mc1.20.4.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/u5Ic2U1u/versions/wPtDzPBH/mousewheelie-1.13.0%2Bmc1.20.1.jar"
+url = "https://cdn.modrinth.com/data/u5Ic2U1u/versions/73ivfwq5/mousewheelie-1.13.3%2Bmc1.20.4.jar"
hash-format = "sha1"
-hash = "799268adcb25eceab35ca7df96415186221771c9"
+hash = "df092b18978ff3f9bae332f8ddf31b29850f2edc"
[update]
[update.modrinth]
mod-id = "u5Ic2U1u"
-version = "wPtDzPBH"
+version = "73ivfwq5"
[option]
optional = true
diff --git a/mods/mru.pw.toml b/mods/mru.pw.toml
new file mode 100644
index 0000000..9760dd3
--- /dev/null
+++ b/mods/mru.pw.toml
@@ -0,0 +1,13 @@
+name = "M.R.U"
+filename = "mru-0.4.0+1.20.4.jar"
+side = "both"
+
+[download]
+url = "https://cdn.modrinth.com/data/SNVQ2c0g/versions/Qjx3vUgd/mru-0.4.0%2B1.20.4.jar"
+hash-format = "sha1"
+hash = "c049d60c2d6a6d0faa3bd9b8d796b8c3f9cf98fb"
+
+[update]
+[update.modrinth]
+mod-id = "SNVQ2c0g"
+version = "Qjx3vUgd"
diff --git a/mods/no-chat-reports.pw.toml b/mods/no-chat-reports.pw.toml
index c63912b..c10b615 100644
--- a/mods/no-chat-reports.pw.toml
+++ b/mods/no-chat-reports.pw.toml
@@ -1,13 +1,13 @@
name = "No Chat Reports"
-filename = "NoChatReports-FABRIC-1.20.1-v2.2.2.jar"
+filename = "NoChatReports-FABRIC-1.20.4-v2.5.0.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/HeZZR2kF/NoChatReports-FABRIC-1.20.1-v2.2.2.jar"
+url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/tfv6A4l5/NoChatReports-FABRIC-1.20.4-v2.5.0.jar"
hash-format = "sha1"
-hash = "b99f23fb76aad5a944400717e6d71aa011c4d7f7"
+hash = "4108d959727fde432620693c2e271b4be81e5591"
[update]
[update.modrinth]
mod-id = "qQyHxfxd"
-version = "HeZZR2kF"
+version = "tfv6A4l5"
diff --git a/mods/not-enough-animations.pw.toml b/mods/not-enough-animations.pw.toml
index 76ae771..5e2778d 100644
--- a/mods/not-enough-animations.pw.toml
+++ b/mods/not-enough-animations.pw.toml
@@ -1,13 +1,13 @@
name = "Not Enough Animations"
-filename = "notenoughanimations-fabric-1.7.0-mc1.20.1.jar"
+filename = "notenoughanimations-fabric-1.7.0-mc1.20.4.jar"
side = "client"
[download]
-url = "https://cdn.modrinth.com/data/MPCX6s5C/versions/lODpunva/notenoughanimations-fabric-1.7.0-mc1.20.1.jar"
+url = "https://cdn.modrinth.com/data/MPCX6s5C/versions/4e9kpBqk/notenoughanimations-fabric-1.7.0-mc1.20.4.jar"
hash-format = "sha1"
-hash = "600cab17c80547c43b40de02e60817634a16fffe"
+hash = "8e2a562e2dda78b83f8059c89811f7860af073bc"
[update]
[update.modrinth]
mod-id = "MPCX6s5C"
-version = "lODpunva"
+version = "4e9kpBqk"
diff --git a/mods/ok-boomer.pw.toml b/mods/ok-boomer.pw.toml
new file mode 100644
index 0000000..5eb252e
--- /dev/null
+++ b/mods/ok-boomer.pw.toml
@@ -0,0 +1,13 @@
+name = "Ok Boomer"
+filename = "ok-boomer-0.1.3+1.20.2.jar"
+side = "client"
+
+[download]
+url = "https://cdn.modrinth.com/data/SOLWeImS/versions/YYSHsUN9/ok-boomer-0.1.3%2B1.20.2.jar"
+hash-format = "sha1"
+hash = "6ee9d9777de1a1b75f536c4c40fa29dc32af9f33"
+
+[update]
+[update.modrinth]
+mod-id = "SOLWeImS"
+version = "YYSHsUN9"
diff --git a/mods/ok-zoomer.pw.toml b/mods/ok-zoomer.pw.toml
deleted file mode 100644
index dbac1ed..0000000
--- a/mods/ok-zoomer.pw.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Ok Zoomer"
-filename = "ok_zoomer-5.0.1+1.20.1.jar"
-side = "client"
-
-[download]
-url = "https://cdn.modrinth.com/data/aXf2OSFU/versions/buDX2XKX/ok_zoomer-5.0.1%2B1.20.1.jar"
-hash-format = "sha1"
-hash = "d0b9471321c33dc0fe72e5cc63074ab8489297be"
-
-[update]
-[update.modrinth]
-mod-id = "aXf2OSFU"
-version = "buDX2XKX"
diff --git a/mods/owo-lib.pw.toml b/mods/owo-lib.pw.toml
new file mode 100644
index 0000000..c44fabe
--- /dev/null
+++ b/mods/owo-lib.pw.toml
@@ -0,0 +1,13 @@
+name = "oωo (owo-lib)"
+filename = "owo-lib-0.12.0+1.20.3.jar"
+side = "both"
+
+[download]
+url = "https://cdn.modrinth.com/data/ccKDOlHs/versions/rGwQL6vN/owo-lib-0.12.0%2B1.20.3.jar"
+hash-format = "sha1"
+hash = "30a27015e67b985f58b0dce423ea884618cd1912"
+
+[update]
+[update.modrinth]
+mod-id = "ccKDOlHs"
+version = "rGwQL6vN"
diff --git a/mods/qkl.pw.toml b/mods/qkl.pw.toml
deleted file mode 100644
index 858a19e..0000000
--- a/mods/qkl.pw.toml
+++ /dev/null
@@ -1,17 +0,0 @@
-name = "Quilt Kotlin Libraries (QKL)"
-filename = "quilt-kotlin-libraries-2.1.3+kt.1.9.10+flk.1.10.10.jar"
-side = "both"
-
-[download]
-url = "https://cdn.modrinth.com/data/lwVhp9o5/versions/RYTef2Wb/quilt-kotlin-libraries-2.1.3%2Bkt.1.9.10%2Bflk.1.10.10.jar"
-hash-format = "sha1"
-hash = "5ff2bb51375fcad46544a987ad87e8ef441f12ea"
-
-[update]
-[update.modrinth]
-mod-id = "lwVhp9o5"
-version = "RYTef2Wb"
-
-[option]
-optional = true
-description = "enable this if you use e4mc"
diff --git a/mods/qsl.pw.toml b/mods/qsl.pw.toml
deleted file mode 100644
index d3bbfbd..0000000
--- a/mods/qsl.pw.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Quilted Fabric API (QFAPI) / Quilt Standard Libraries (QSL)"
-filename = "qfapi-7.4.0_qsl-6.1.2_fapi-0.90.0_mc-1.20.1.jar"
-side = "both"
-
-[download]
-url = "https://cdn.modrinth.com/data/qvIfYCYJ/versions/GjvWb8WQ/qfapi-7.4.0_qsl-6.1.2_fapi-0.90.0_mc-1.20.1.jar"
-hash-format = "sha1"
-hash = "d52456c799cc2534331f9cc71532e43c5f886554"
-
-[update]
-[update.modrinth]
-mod-id = "qvIfYCYJ"
-version = "GjvWb8WQ"
diff --git a/mods/quilt-loading-screen.pw.toml b/mods/quilt-loading-screen.pw.toml
deleted file mode 100644
index 6154d0d..0000000
--- a/mods/quilt-loading-screen.pw.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Quilt Loading Screen"
-filename = "quilt_loading_screen-6.0.0+1.20.1.jar"
-side = "client"
-
-[download]
-url = "https://cdn.modrinth.com/data/VPU6VYVP/versions/ZxKclDRW/quilt_loading_screen-6.0.0%2B1.20.1.jar"
-hash-format = "sha1"
-hash = "b257e89ff9bb3cf2cad5ffd6de781722f37f02ee"
-
-[update]
-[update.modrinth]
-mod-id = "VPU6VYVP"
-version = "ZxKclDRW"
diff --git a/mods/raised.pw.toml b/mods/raised.pw.toml
index 0d03e44..ead568e 100644
--- a/mods/raised.pw.toml
+++ b/mods/raised.pw.toml
@@ -1,13 +1,13 @@
name = "Raised"
-filename = "raised-fabric-1.20.1-3.1.0.jar"
+filename = "raised-fabric-1.20.2-3.1.0.jar"
side = "client"
[download]
-url = "https://cdn.modrinth.com/data/nCQRBEiR/versions/hJe5aLGc/raised-fabric-1.20.1-3.1.0.jar"
+url = "https://cdn.modrinth.com/data/nCQRBEiR/versions/ZSvD52HS/raised-fabric-1.20.2-3.1.0.jar"
hash-format = "sha1"
-hash = "3ad6e181d68614163847eef75db82f933e01aaee"
+hash = "e85fd0e6acc452d81af4082a732f771ca4d42c34"
[update]
[update.modrinth]
mod-id = "nCQRBEiR"
-version = "hJe5aLGc"
+version = "ZSvD52HS"
diff --git a/mods/roughly-enough-items.pw.toml b/mods/roughly-enough-items.pw.toml
index 6586c9a..4711d9d 100644
--- a/mods/roughly-enough-items.pw.toml
+++ b/mods/roughly-enough-items.pw.toml
@@ -1,13 +1,13 @@
name = "Roughly Enough Items (REI)"
-filename = "RoughlyEnoughItems-12.0.684-fabric.jar"
+filename = "RoughlyEnoughItems-14.0.688-fabric.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/nfn13YXA/versions/23HREXEg/RoughlyEnoughItems-12.0.684-fabric.jar"
+url = "https://cdn.modrinth.com/data/nfn13YXA/versions/Jhw0fDTs/RoughlyEnoughItems-14.0.688-fabric.jar"
hash-format = "sha1"
-hash = "447ea5038e0a8189cc2b537cb956b8d42770af7c"
+hash = "a0693dc5036ca869196a6d9eb815fad9d3a42625"
[update]
[update.modrinth]
mod-id = "nfn13YXA"
-version = "23HREXEg"
+version = "Jhw0fDTs"
diff --git a/mods/sodium.pw.toml b/mods/sodium.pw.toml
index c85899e..4eccbbf 100644
--- a/mods/sodium.pw.toml
+++ b/mods/sodium.pw.toml
@@ -1,13 +1,13 @@
name = "Sodium"
-filename = "sodium-fabric-mc1.20.1-0.5.3.jar"
+filename = "sodium-fabric-mc1.20.3-0.5.5.jar"
side = "client"
[download]
-url = "https://cdn.modrinth.com/data/AANobbMI/versions/4OZL6q9h/sodium-fabric-mc1.20.1-0.5.3.jar"
+url = "https://cdn.modrinth.com/data/AANobbMI/versions/InGKdfel/sodium-fabric-mc1.20.3-0.5.5.jar"
hash-format = "sha1"
-hash = "74784e6deb72e8cdb4e3788ac3a3cfd88fc77acf"
+hash = "999eb53c5761850e99d234812dd0f710640b79a5"
[update]
[update.modrinth]
mod-id = "AANobbMI"
-version = "4OZL6q9h"
+version = "InGKdfel"
diff --git a/mods/sound.pw.toml b/mods/sound.pw.toml
new file mode 100644
index 0000000..9f4ead2
--- /dev/null
+++ b/mods/sound.pw.toml
@@ -0,0 +1,13 @@
+name = "Sounds"
+filename = "Sounds-0.4.0+1.20.4.jar"
+side = "client"
+
+[download]
+url = "https://cdn.modrinth.com/data/ZouiUX7t/versions/axpfcbM1/Sounds-0.4.0%2B1.20.4.jar"
+hash-format = "sha1"
+hash = "942adee9675587ea747e556c0c570b86684ecca9"
+
+[update]
+[update.modrinth]
+mod-id = "ZouiUX7t"
+version = "axpfcbM1"
diff --git a/mods/starlight.pw.toml b/mods/starlight.pw.toml
deleted file mode 100644
index db082ee..0000000
--- a/mods/starlight.pw.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Starlight (Fabric)"
-filename = "starlight-1.1.2+fabric.dbc156f.jar"
-side = "both"
-
-[download]
-url = "https://cdn.modrinth.com/data/H8CaAYZC/versions/XGIsoVGT/starlight-1.1.2%2Bfabric.dbc156f.jar"
-hash-format = "sha1"
-hash = "a03102cab439cbab5a1d7d72cd7c2b4976ddd421"
-
-[update]
-[update.modrinth]
-mod-id = "H8CaAYZC"
-version = "XGIsoVGT"
diff --git a/mods/visuality.pw.toml b/mods/visuality.pw.toml
index bf69703..7ba6e70 100644
--- a/mods/visuality.pw.toml
+++ b/mods/visuality.pw.toml
@@ -1,13 +1,13 @@
name = "Visuality"
-filename = "visuality-0.7.1+1.20.jar"
+filename = "visuality-0.7.3+1.20.4.jar"
side = "client"
[download]
-url = "https://cdn.modrinth.com/data/rI0hvYcd/versions/uhvQD6Ny/visuality-0.7.1%2B1.20.jar"
+url = "https://cdn.modrinth.com/data/rI0hvYcd/versions/OR2HyGHb/visuality-0.7.3%2B1.20.4.jar"
hash-format = "sha1"
-hash = "a4a5fc1edae49126432fc903dd6fdbb88b7251ed"
+hash = "7f056d6b4d11097f1152ea6da1951e98a1475f58"
[update]
[update.modrinth]
mod-id = "rI0hvYcd"
-version = "uhvQD6Ny"
+version = "OR2HyGHb"
diff --git a/mods/vmp-fabric.pw.toml b/mods/vmp-fabric.pw.toml
deleted file mode 100644
index 59e993a..0000000
--- a/mods/vmp-fabric.pw.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-name = "Very Many Players (Fabric)"
-filename = "vmp-fabric-mc1.20.1-0.2.0+beta.7.102-all.jar"
-side = "both"
-
-[download]
-url = "https://cdn.modrinth.com/data/wnEe9KBa/versions/sV8lIBhJ/vmp-fabric-mc1.20.1-0.2.0%2Bbeta.7.102-all.jar"
-hash-format = "sha1"
-hash = "46e896cabf7813275413c97e6dd2f48ef534057d"
-
-[update]
-[update.modrinth]
-mod-id = "wnEe9KBa"
-version = "sV8lIBhJ"
diff --git a/mods/xaeros-world-map.pw.toml b/mods/xaeros-world-map.pw.toml
index 3ae2b53..3b0af9e 100644
--- a/mods/xaeros-world-map.pw.toml
+++ b/mods/xaeros-world-map.pw.toml
@@ -1,13 +1,13 @@
name = "Xaero's World Map"
-filename = "XaerosWorldMap_1.37.2_Fabric_1.20.jar"
+filename = "XaerosWorldMap_1.37.6_Fabric_1.20.4.jar"
side = "both"
[download]
-url = "https://cdn.modrinth.com/data/NcUtCpym/versions/EKlLbMF8/XaerosWorldMap_1.37.2_Fabric_1.20.jar"
+url = "https://cdn.modrinth.com/data/NcUtCpym/versions/UXPdKH9b/XaerosWorldMap_1.37.6_Fabric_1.20.4.jar"
hash-format = "sha1"
-hash = "d153ab9bb03f5ad6dbec0402909d7d233868458a"
+hash = "d08eb3b6e5c06deaebe5666e663a5836c5470e17"
[update]
[update.modrinth]
mod-id = "NcUtCpym"
-version = "EKlLbMF8"
+version = "UXPdKH9b"
diff --git a/mods/yacl.pw.toml b/mods/yacl.pw.toml
new file mode 100644
index 0000000..778192b
--- /dev/null
+++ b/mods/yacl.pw.toml
@@ -0,0 +1,13 @@
+name = "YetAnotherConfigLib"
+filename = "yet-another-config-lib-fabric-3.3.1+1.20.4.jar"
+side = "client"
+
+[download]
+url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/cwavYrLH/yet-another-config-lib-fabric-3.3.1%2B1.20.4.jar"
+hash-format = "sha1"
+hash = "454de6336b06d181c7e6829aaf63b09c4717e257"
+
+[update]
+[update.modrinth]
+mod-id = "1eAoo2KR"
+version = "cwavYrLH"
diff --git a/notes.md b/notes.md
new file mode 100644
index 0000000..924a7b5
--- /dev/null
+++ b/notes.md
@@ -0,0 +1,23 @@
+# Notes on some mods here
+
+This is mainly to keep track of things I would like to add or
+have removed and want back
+
+## Quilt exclusive
+
+Moving from Quilt to Fabric was mainly just to update my game
+version
+
+- LambDynamicLights
+ - Very cool, would like to use again
+- LambdaBetterGrass
+ - Not *as* cool, but would still like to use
+- Inspecio
+ - Probably what I miss most
+- Effective
+ - Also really miss
+
+## Oudated/Unmaintained
+
+- ExtraSounds
+
diff --git a/pack.toml b/pack.toml
index 8cf0fa1..b803406 100644
--- a/pack.toml
+++ b/pack.toml
@@ -6,8 +6,11 @@ pack-format = "packwiz:1.1.0"
[index]
file = "index.toml"
hash-format = "sha256"
-hash = "80b22eae66bf0b663fc46ff869722f72e20a7e930b212b83c01c66ba204deb34"
+hash = "43b3e5a3fd3993002c30d21f3fa0d08e1d9e8c46dd0b8604c0b884c6606ee301"
[versions]
-minecraft = "1.20.1"
-quilt = "0.21.0"
+fabric = "0.15.3"
+minecraft = "1.20.4"
+
+[options]
+acceptable-game-versions = ["1.20.2"]