Compare commits
18 Commits
release/qu
...
release/fa
Author | SHA1 | Date | |
---|---|---|---|
8fbd2d07fd | |||
432cc75441 | |||
4c357e04f8 | |||
8256cc6712 | |||
55c1557d36 | |||
1bce1942d9 | |||
b6a6cbe74c | |||
e7e818d621 | |||
87e332a2bd | |||
1c548521fa | |||
0064907adb | |||
30e68b120a | |||
55467b1493 | |||
b524c64800 | |||
4aa7770ed5 | |||
43e0d855f2 | |||
299cc0b3bb | |||
94193c064e |
4
.gitignore
vendored
4
.gitignore
vendored
@ -3,7 +3,3 @@
|
||||
|
||||
# Exclude exported Modrinth modpacks
|
||||
*.mrpack
|
||||
|
||||
# nix
|
||||
result
|
||||
.direnv
|
||||
|
@ -3,9 +3,3 @@ README.md
|
||||
README-modrinth.md
|
||||
COPYING.txt
|
||||
release-notes.sh
|
||||
result
|
||||
flake.nix
|
||||
flake.lock
|
||||
.envrc
|
||||
.direnv/
|
||||
nix/
|
||||
|
@ -1,3 +0,0 @@
|
||||
[client.advanced.autoUpdater]
|
||||
# disable auto updater, it should be updated with the modpack
|
||||
enableAutoUpdater = false
|
@ -1 +0,0 @@
|
||||
accurateBlockPlacement true
|
@ -1,5 +0,0 @@
|
||||
{
|
||||
"disabledIntegrations": [
|
||||
"entity_model_features"
|
||||
]
|
||||
}
|
@ -1,7 +0,0 @@
|
||||
{
|
||||
"recording": {
|
||||
"recordSingleplayer": false,
|
||||
"recordServer": false,
|
||||
"autoStartRecording": false
|
||||
}
|
||||
}
|
@ -1,5 +1,6 @@
|
||||
version:3465
|
||||
autoJump:false
|
||||
darkMojangStudiosBackground:true
|
||||
snooperEnabled:false
|
||||
operatorItemsTab:true
|
||||
simulationDistance:6
|
||||
@ -10,15 +11,7 @@ tutorialStep:none
|
||||
skipMultiplayerWarning:true
|
||||
joinedFirstServer:true
|
||||
onboardAccessibility:false
|
||||
resourcePacks:["vanilla","fabric","continuity/default","continuity/glass_pane_culling_fix","betterbeds/connectedbeds","midnightcontrols/bedrock","continuity:default","continuity:glass_pane_culling_fix","betterbeds:connectedbeds","midnightcontrols:bedrock","file/VanillaTweaks_r265009.zip","file/enhanced-boss-bars.zip"]
|
||||
resourcePacks:["vanilla","fabric","continuity/default","continuity/glass_pane_culling_fix","betterbeds/connectedbeds","midnightcontrols/bedrock","continuity:default","continuity:glass_pane_culling_fix","betterbeds:connectedbeds","midnightcontrols:bedrock","file/VanillaTweaks_r265009.zip"]
|
||||
incompatibleResourcePacks:["betterbeds:connectedbeds","midnightcontrols:bedrock"]
|
||||
key_key.saveToolbarActivator:key.keyboard.v
|
||||
key_iris.keybind.reload:key.keyboard.unknown
|
||||
key_key.replaymod.marker:key.keyboard.comma
|
||||
key_key.presencefootsteps.settings:key.keyboard.unknown
|
||||
key_key.identity:key.keyboard.backslash
|
||||
key_key.identity_ability:key.keyboard.y
|
||||
key_key.optigui.inspect:key.keyboard.unknown
|
||||
key_key.fabricskyboxes.toggle.debug_hud:key.keyboard.unknown
|
||||
key_key.ae2.guide:key.keyboard.w
|
||||
key_gui.xaero_open_settings:key.keyboard.unknown
|
||||
key_gui.xaero_minimap_settings:key.keyboard.unknown
|
||||
|
@ -1 +0,0 @@
|
||||
accurateBlockPlacement true
|
41
flake.lock
generated
41
flake.lock
generated
@ -1,41 +0,0 @@
|
||||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1719931832,
|
||||
"narHash": "sha256-0LD+KePCKKEb4CcPsTBOwf019wDtZJanjoKm1S8q3Do=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "0aeab749216e4c073cece5d34bc01b79e717c3e0",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs",
|
||||
"systems": "systems"
|
||||
}
|
||||
},
|
||||
"systems": {
|
||||
"locked": {
|
||||
"lastModified": 1681028828,
|
||||
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
16
flake.nix
16
flake.nix
@ -1,16 +0,0 @@
|
||||
{
|
||||
inputs.systems.url = "github:nix-systems/default";
|
||||
outputs = { self, systems, nixpkgs }: let
|
||||
lib = nixpkgs.lib;
|
||||
eachSystem = lib.genAttrs (import systems);
|
||||
in {
|
||||
devShells = eachSystem (system: let pkgs = import nixpkgs { inherit system; };
|
||||
in {
|
||||
default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [ self.packages.${system}.packwiz-wrapper nix-update ];
|
||||
};
|
||||
});
|
||||
packages = eachSystem (system: let pkgs = import nixpkgs { inherit system; };
|
||||
in pkgs.callPackages ./nix/packages { });
|
||||
};
|
||||
}
|
283
index.toml
283
index.toml
@ -1,9 +1,5 @@
|
||||
hash-format = "sha256"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/config/DistantHorizons.toml"
|
||||
hash = "3a6ae31c255079774a688c1542858660ef4c81ec328d074ea008e0a96bbeceeb"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/config/MouseTweaks.cfg"
|
||||
hash = "5c6f2a474736301aa66e13b9fe3bb9044cef658bae57e6b3507785554743a75c"
|
||||
@ -12,10 +8,6 @@ hash = "5c6f2a474736301aa66e13b9fe3bb9044cef658bae57e6b3507785554743a75c"
|
||||
file = "config/yosbr/config/capes.json5"
|
||||
hash = "b0e11760190870b23a50e68018a3792e6ad3929302bb2917db21268a20f858af"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/config/default_carpet.conf"
|
||||
hash = "7e5cdd9f750de73a3962a551a54ac01aaae9411f84c8b8f2519b3ce1c138fff5"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/config/figura.json"
|
||||
hash = "783c458bf3501796a8f07e396a5bb0d623c7f694c82974fefc228eb921bb82f3"
|
||||
@ -24,14 +16,6 @@ hash = "783c458bf3501796a8f07e396a5bb0d623c7f694c82974fefc228eb921bb82f3"
|
||||
file = "config/yosbr/config/inventoryprofilesnext/inventoryprofiles.json"
|
||||
hash = "000b31b1c42d90dbc3cd9964df47b9093e698ac08c002771c924b340529e6a18"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/config/puzzle.json"
|
||||
hash = "f4f3a9663a482ff424c2db4212fc6f6842c1af3bfb97ebe5c5d7e35e33974e78"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/config/replaymod.json"
|
||||
hash = "93659cc038fc404d0cab2eb840121b47f5287206a9e6aa00858ed70372b84187"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/config/roughlyenoughitems/config.json5"
|
||||
hash = "c072599a7c36a2e240d61ea78ee02b57dec67ae1cfb6dfe70f8ea58537099d40"
|
||||
@ -50,52 +34,43 @@ hash = "29e8afe5258e9f0cbeb96d3e8ab0cbdb4eadacf48621a6df06a6dece25410547"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/options.txt"
|
||||
hash = "14303032dc114706dd212b473599d7c504cd1ec59ad3023e4214eab7859ed7ef"
|
||||
hash = "9b49e7162aeeb2a53a1df56d3a785db854f219b66025501d185d250b82784c92"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/shaderpacks/ComplementaryReimagined_r5.1.1.zip.txt"
|
||||
file = "config/yosbr/shaderpacks/ComplementaryReimagined_r2.2.zip.txt"
|
||||
hash = "f4aaafa7cda512e478ea8942387ebbb0662bbb20b6e0c916c341c373e33a2a50"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/shaderpacks/ComplementaryUnbound_r5.1.1.zip.txt"
|
||||
file = "config/yosbr/shaderpacks/ComplementaryShaders_v4.7.2.zip.txt"
|
||||
hash = "6f5bf766cebabca0bcfa339eeb119956c48c40eba03c5aa39d7685eab67c56b5"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/shaderpacks/rethinking-voxels_r0.1_beta2.zip.txt"
|
||||
file = "config/yosbr/shaderpacks/rethinking-voxels_r0.1_alpha4.zip.txt"
|
||||
hash = "6e7b02f11cb6feb7f08d1088d042518d1a04cb6b71a7b2b109cf997173510e3c"
|
||||
|
||||
[[files]]
|
||||
file = "config/yosbr/world/carpet.conf"
|
||||
hash = "7e5cdd9f750de73a3962a551a54ac01aaae9411f84c8b8f2519b3ce1c138fff5"
|
||||
|
||||
[[files]]
|
||||
file = "mods/amecs.pw.toml"
|
||||
hash = "d66bc9c3f81429f138de5eae6226dce25f620f90df864bf7f0f9121708bf0bcc"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/appleskin.pw.toml"
|
||||
hash = "e3dfb2478e6bb096667d4ec89b0ddfef627747939373bdefee02f358d6e3dee1"
|
||||
hash = "6869de1ca55dc09beabb3c234727e84be4d4fbdcbad2c8081c03010713f374e1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/architectury-api.pw.toml"
|
||||
hash = "0cbcd58c49decc0ecbccd330fcc8326e3b8769e22e1740e229f09541acf3df7f"
|
||||
hash = "df19c411fd67e340ed687f781863a6d7fb9f1de666449df75ffe82136e45f9dc"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/auth-me.pw.toml"
|
||||
hash = "e954c2f9ea9195ef558f0cb7dbc7057f2086348fc4a78186bc399145c18b4bb9"
|
||||
hash = "cea9d72f42127f4974afc7120d99dd4042d7342129d465ea4afb11f334749b61"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/badpackets.pw.toml"
|
||||
hash = "e5a68e0e0d90aac1d965ab7cab5858c474e875be9012a7c8a3adf96420faa726"
|
||||
hash = "cbf5544ba86d4d10262fff9c53af6c9ef05bb92d329bb02f891a5aaf3ca94631"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/better-fabric-console.pw.toml"
|
||||
hash = "bcac9bb680ef83b99bacc8e96bd4f77372f5360d49083ad4d53a6b0412f386ed"
|
||||
hash = "dfd7fb4f18b490346dee3a4576660d22f1305c564ead3641bd710193eb74f2e4"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -105,17 +80,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/betterf3.pw.toml"
|
||||
hash = "5e3ee3550327d6b3545abc363325056c9fc09fb4d48a841e32da2da54c7f74c9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/blur-fabric.pw.toml"
|
||||
hash = "5f53eb8d272bfec2c6f58d6d744397b8152d7561a370f1d6e7e1e495fc4a1e7a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/bobby.pw.toml"
|
||||
hash = "628ca822826f31018f97293b673e09defe9bc46616a7636bbd4a3b51ee4c9949"
|
||||
hash = "86ce47da34b9a69c105e4e22058a5d6fc12448283a54a1f911c16351f096068e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -129,8 +94,8 @@ hash = "4c712d7ad6d2ddb130b845c3b2c660be7cb7795db21be00b130443730719305e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/carpet-extra.pw.toml"
|
||||
hash = "5aa266498f131bf7b9d764d608b6416f36555c228110c0d5126bcd7c8bec9f9c"
|
||||
file = "mods/carpet-fixes.pw.toml"
|
||||
hash = "d7c6555b666ff113894f6dd6dba7e6cc95c041542d06a39fd6f67421341711b9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -138,144 +103,104 @@ file = "mods/carpet.pw.toml"
|
||||
hash = "095a93b4f0b4e2b8fadf8359bc145cbdd83be3c5bf23432e9a5f4e54d60de5b4"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/chat-heads.pw.toml"
|
||||
hash = "dc7a1dd927927788de75b4ec7bf29b40d0d4704a13788bdfcba5d5b243d0eaa1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cit-resewn.pw.toml"
|
||||
hash = "2cf2d6c7683cbaa8d4d91374d5a92e6166176aefe5e0d7a0a2714c9321f8add0"
|
||||
hash = "44e2cc695c040b7bbca462165099fa3c56a98aa8f01104bb067dc850b65f6d02"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/client-commands.pw.toml"
|
||||
hash = "4abf982db7bfaae41c8ac2c6d124b3092711750a792354d381829751166ecc1a"
|
||||
hash = "fbde69d3092af1adae67d9301f4ee0253cd0f8b041be24f8a7deb19cf44ddee2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cloth-config.pw.toml"
|
||||
hash = "a89dfcc985612a275975d4823a24fc3dceb244bacb2e8f81bd459283bf1b9fe9"
|
||||
hash = "b6348f94ec939f563285dc96683e61da8fc17ab2f2897be2751fa24789513691"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/continuity.pw.toml"
|
||||
hash = "acbde04e67f2f0970a6b81e3c818a5f8ed3eceab4f3a04330d80c70c24d03afe"
|
||||
hash = "8e73f68cbcbff53b6a00c30f371fc34a63c2ac2240af4792008d67dce74fb507"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cull-less-leaves.pw.toml"
|
||||
hash = "39eb9db990032d949909f079ada415ffda18b372ec5d9b23ab95652d88474131"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/distanthorizons.pw.toml"
|
||||
hash = "f6317dc039dd9efe5ef1c7b225c7a0f9a52f4ebd93a4b27726916369135f3059"
|
||||
hash = "312270e142843c8709d2768888f6a95572ed385d4b4aaf50526f1bfa667cf23c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/dynamic-fps.pw.toml"
|
||||
hash = "fa2b28c7304509b8d95f8917fd34029c2149961bb1696c40fae5b5f504c7cd53"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/dynamiccrosshair.pw.toml"
|
||||
hash = "d543ff3e5a5620ccf586716b6ea41d6ddb2b088bfae71c2c3f832d7ac17d0f7c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/e4mc.pw.toml"
|
||||
hash = "d9e8561b7696944a1647af52d7260fabb244b45b30f4b3656dc3630cecfb03e2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emi-loot.pw.toml"
|
||||
hash = "6ed9dba064110665c3dcf26be139c68b290ef0079e8aece1d2aced9484ebf85b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emi.pw.toml"
|
||||
hash = "a685dc41c1361b3bf5b77533826a1216534e1c689fee371c002e9e9fcccdf712"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emiffect.pw.toml"
|
||||
hash = "2ad35d1b513308d702e9fe45f3c711d63dd1abb8fcbbb40d9a1d7c37d4d5d367"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/emitrades.pw.toml"
|
||||
hash = "a55d562fcd6be9796e8cc162b83b5745efd83254fae44bf5a4d85d0fe6c97fcb"
|
||||
hash = "c8c6a3893859d2f0e04ebf400c8ce8b47de21cfe6097996b5dde1561e92f3c80"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/entity-model-features.pw.toml"
|
||||
hash = "3532700b41c5b82a0b57b140d0eb2e6f36728c575901b077b39cacac5a4322c8"
|
||||
hash = "a42efa3033cacd177b4ad1d014f354246aa05e996f9183695b5eedb6fe93f8b6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/entityculling.pw.toml"
|
||||
hash = "9f499eff7ddb9eeab719f19808cbcf41f2b77d06ebf946f157cf7b5f52f64e70"
|
||||
hash = "4eec3de8a58a6e64ea96e31781b52f70b4b33ec02a34a45f171e3a1e6697ba86"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/entitytexturefeatures.pw.toml"
|
||||
hash = "0dc604455e2d5f4e82e3527aab59cc199f060c776a90b9571fe36bcbb61f28b4"
|
||||
hash = "49a42a2456b0d0024bb61afdfeb279c51d581901fbd59a4d00ff772b206fefaa"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-api.pw.toml"
|
||||
hash = "2205239199b4a1e74afcdba1151807d2e4487ce2cf116cee9f62d25f1659a3f5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-language-kotlin.pw.toml"
|
||||
hash = "de9b5bac4165fb069bf6df9da2bb6028d50dd51fa0d294f0fb62d1d0c64b707b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabricskyboxes-interop.pw.toml"
|
||||
hash = "ed4487cc1613cc53daa5188730653a4720728971553315dcea7205b28f914f1c"
|
||||
hash = "3a86b3417b781abc294b6e41c475e5ac1831944527db6f07f0107a30e5bde0bd"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabricskyboxes.pw.toml"
|
||||
hash = "ae83dfcccd580352eee3cf509ace37f67f1bf0d2862d2d9c9d64d8909892d2d4"
|
||||
hash = "08b843dfc24cc97afeba5b3a60a1263c8aa4fc786398a1972cc69741f0253e22"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fallingleaves.pw.toml"
|
||||
hash = "948e8a5d65ede4a8612a2f476d7b3b0f2fe00436ab3b8dd73829d4bdcf0cdf22"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fastquit.pw.toml"
|
||||
hash = "26b473edf76a38c7f6f883381b6a42a33eea992501f26c46bae8b6149c86e234"
|
||||
file = "mods/farsight-fabric.pw.toml"
|
||||
hash = "825458a5e2a5ffe04e07e92643be57bdbef5861a6670fa996bf0b6a5a10cba9e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ferrite-core.pw.toml"
|
||||
hash = "39a6a39433b1b104bfafafcd60a8171f866daa2ebefffd64df822d0e69288e3a"
|
||||
hash = "03e174cf691b52da20bd973b955fae6f3720d3d2120f9d6cc1de5fdf3180013c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/figura.pw.toml"
|
||||
hash = "75ffe202cd8947bbbb748a46bcd9d1cfb55d34a2fc95909b3001ac8433625fb7"
|
||||
hash = "bf79ad92d559bbdc715c7ec5359cae0b29171c445974ba4141f70897cafa6bae"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/immediatelyfast.pw.toml"
|
||||
hash = "a154087f80d2179cabd05cf7629c29c06c5a62538e70f7c58021dd1d4f9e3e3a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/indium.pw.toml"
|
||||
hash = "31278d67704a56eb32d93c240e4bfd9822e1ab6047ee14d752953dd0c24dca95"
|
||||
hash = "85daf558c36022a664c9e2bc3d9a9bc21cb9fa62977890f142c20ccc155eae36"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/inventory-profiles-next.pw.toml"
|
||||
hash = "c9f4a8f985932269b8c9159c320929f81216f7197c2909c24c1498346f371b32"
|
||||
hash = "5945376058eb508f9a049134ed66dbc70c861d80d043441e03b10fa4338dc1e0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/iris.pw.toml"
|
||||
hash = "aac37788ac1acd537a8b5b32fc2489cddf8034f196f7f38c0755837764b4f01d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/itemswapper.pw.toml"
|
||||
hash = "c9196744dab42a9d4292fa409c64bbda856018cf97b0ca2850a9d8c1995dce24"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/jei.pw.toml"
|
||||
hash = "6bbbc46c585f36fa78a8a1dacc8dd228a34cbe7418bba5661bd4a8a44c252cea"
|
||||
hash = "659e2447deffc797f441ed09c0b05d75138253dfacfe1479d3938e55773be4b6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -285,22 +210,17 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lambdynamiclights.pw.toml"
|
||||
hash = "a626674fc1092afe5ccc6cbf4856c09119e42395494f1c3862eed2ab17da0221"
|
||||
hash = "8bb36bbf7dbac0d531f6c308329109d29d95a83a2c0d972178655efd8afddf4b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/language-reload.pw.toml"
|
||||
hash = "863c7625ed377ba905368ec8cb50a29d2ad23c833b50d7808f933aecbe1bcad4"
|
||||
hash = "409d820a08baf91ace8443e3abb9ef8914083b053e1e24cb989419aaef8b3f5d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/libipn.pw.toml"
|
||||
hash = "3de6db38b0870f8bc8c61b2698d4b64ac1610b9066536be1b22b3a8257ab73fe"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lilac.pw.toml"
|
||||
hash = "40da6c11ac0a856fb0fa5688bf7df6538bba3cb0c0258b6611ce56fb8a0f0f69"
|
||||
hash = "b7d04fcd38f84af79e1733f2f4912df51f40dbd5d196f5d6bbadce586b52136b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -308,9 +228,14 @@ file = "mods/lithium.pw.toml"
|
||||
hash = "c239c951796882b9c93e649a0dba4f2d95804441faaed707b686381b7a5c67da"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/memoryleakfix.pw.toml"
|
||||
hash = "97ffbc7d0e4087777c5e3732780f01958f99d44c4f09fd534bbb8f239d4980a1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/midnightcontrols.pw.toml"
|
||||
hash = "96aa6aa1291191030918c56a6342f1ca6902cbbcf2cb6ba2762b0bcc1d81fa65"
|
||||
hash = "5f6bbdeff1476501410b0e6f304a3d37183d9774bd1b182c20ffd186bb140ba2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -320,22 +245,17 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/modmenu.pw.toml"
|
||||
hash = "4cd171d3f5f3e1d2948cb1b0062e742a5e85110c9e9a668f9aed5b0cebcb9c97"
|
||||
hash = "e00217e8327711e7d6acf95814212d9398499bc15cde7a3ec4ca4417393a8fbc"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/morechathistory.pw.toml"
|
||||
hash = "d2cf752938bcc2e83b8389fc1c6fc0557eb6a8b721fd33733b89f1a09fb535e5"
|
||||
hash = "d1558ff187abe468110fef11eee834aa3c03df732e706ac16e221425b538da4d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/mouse-tweaks.pw.toml"
|
||||
hash = "9ecf3bd4cd96af63bb04063f74b8a13cea46a77bfce670b4408417f8d0d293e0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/nmuk.pw.toml"
|
||||
hash = "bf90fb21fcd2f9ea1f8b6b9abdd489e3fa56cb706602ea37741234630efd56ad"
|
||||
hash = "669008dbd2508a67f8c409096cf2357de450f26a69494289e5852045ade7d358"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -345,42 +265,27 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/optigui.pw.toml"
|
||||
hash = "2440a2e6d0ade6bc4ca8d3677b59312734dd22106fc6fc5cbac5c24b0ba2ff05"
|
||||
hash = "0241aaf8419884f43f529223b52e274712b109557e065846b953ab91953f2cb7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/presence-footsteps.pw.toml"
|
||||
hash = "35f2b7d27291e3a313c986137b70b7675bc32b3d0097e0940c7e23b0cf62b92e"
|
||||
hash = "5027329d763899c40db5e3f389cfb2262d61d0037668c331db0cec1491c585d8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/puzzle.pw.toml"
|
||||
hash = "a6e087aa1beacb72cbfd77e442c78329b8a3c8af71cd3833078ff4cc7186d64f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/qkl.pw.toml"
|
||||
hash = "47217cc1489533f668d622f2078351a61873be573311a9a94be7293328a849a7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/qsl.pw.toml"
|
||||
hash = "c94b68658f3158a44d5e95a606aa08628cd2b80a50fe45d26d5679205a77e4d1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/quilt-loading-screen.pw.toml"
|
||||
hash = "e08fdeed1d56d03938bc66e2f34fefe5df150afb6e8ec4d318f354d6413ec0ba"
|
||||
hash = "684594797d13dbc0ca57a5a6349a4597c03f629617bff83621bafb147a22ee76"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/reeses-sodium-options.pw.toml"
|
||||
hash = "0f9916dcded3aac68d56113e9617bbe3db5ec9036bd9bba784bc40a961b0c9f0"
|
||||
hash = "a1d419cad5a32a4a442b37b2e2fe2db3e761429d6ab60dd3bb79f43d36df2297"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/replaymod.pw.toml"
|
||||
hash = "e1fdb3d4b7619e35b10a6131631addbae338a5c52b0145b0d58d24bd7b9007b2"
|
||||
file = "mods/rei.pw.toml"
|
||||
hash = "401489a8476901a3f5d354b1d413f88034c9d69fb0928c932d042d99f33e68fc"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -390,17 +295,17 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium-extra.pw.toml"
|
||||
hash = "5379b1da9fa50def37ede26e66dd963de3ce6f8576cd60a6b117998e09a5597c"
|
||||
hash = "ea193a0081775b5b2dda289e12578c9122294ec6b6363dbfd7c1e7b5d2dfbd71"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium.pw.toml"
|
||||
hash = "245530bdbb5c4127a1286f3722778d71e478194a8dcee89388c8fd247b4a57da"
|
||||
hash = "217b07516517c4c01958387192143943f3e9309a0e935828f9f32af771425d66"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/spark.pw.toml"
|
||||
hash = "96e3771cd09bb4a808d1c1fcb5a050efdc2ffb4efe7b584407ed54c46c0388d9"
|
||||
hash = "7ca0983d3b7852c06f84c66b9f12da8115ff9b8ba63293cd20452377a0de726e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -408,29 +313,24 @@ file = "mods/starlight.pw.toml"
|
||||
hash = "218f67d6bcaae849582618cd3e5eb1d4cac0fd6045115f64340620300e160c11"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/where-is-it.pw.toml"
|
||||
hash = "c4ffad2aebeba13e732a9ce853120e3313d404a216a4046aa52333f361d3feeb"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/wthit.pw.toml"
|
||||
hash = "fc721bd93f9b250912bfba398601d111cd158fdf5e40129c107cc28fef3f5fa5"
|
||||
hash = "5d920f14136c4e3b7731846bd21dbb5ace512d962b61338ffffeae284525b520"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/xaeros-minimap.pw.toml"
|
||||
hash = "5cefed621171d22a3c902aa92ce8fff2aa09410963668664651adf66f635013b"
|
||||
hash = "fa7940ff6c6d65fede416632132a57518ab1a79e09014410932ed614ea386a70"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/xaeros-world-map.pw.toml"
|
||||
hash = "a564179c06682ce17b454caf8dcb82e72c49b3eb8a6d74b5ea115aab2681635e"
|
||||
hash = "f8f30afc8349f40bfbe62d21aabf6caeca2d67a8cc2778296ce758b2763c5d8d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yacl.pw.toml"
|
||||
hash = "e012c2d48d8c2ef08e8a77a83476db46a81f9a5ee3aa90e5c57e2af508bd9089"
|
||||
hash = "796239ec3e198ff16d27b144d24f813da260ee25c7342cf5487f0db0843f1c29"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -440,65 +340,40 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/zoomify.pw.toml"
|
||||
hash = "ec7f94fcb88b139515557631074b5e90e64ea53761eb5753c2492007e24f59c4"
|
||||
hash = "fe67f559bf7c07593f1eb0e3cfabb56635de7e566b26241559452dc04484bd4e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/enhanced-boss-bars.pw.toml"
|
||||
hash = "5211c59a355673aa4a07698533778901324b5d352177ea324d48c849c6aa1593"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/bloop-shaders.pw.toml"
|
||||
hash = "51e2fddbf447e85e0aeeb15808c9f9515da33dba2745a6d15465263688f33aab"
|
||||
file = "resourcepacks/vanillatweaks.pw.toml"
|
||||
hash = "2ada98e4a07f325283f285b9ac397636df3414e2b578d3f6e4d55ed00904f23d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/bsl-shaders.pw.toml"
|
||||
hash = "41fbddad14b67a342e35eb7d2c96cfb555014c0f9c0e1e2866a3d2516a33c971"
|
||||
hash = "ef5060e4fee094045e79fad89880359d0f3ad6042a63c74314adde206f8f208c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/complementary-reimagined.pw.toml"
|
||||
hash = "79f3766c282f1d3c5bd671f8c9f7bac5128b941557ca7668542b533e035c090b"
|
||||
hash = "ce18d14782c7d414c416de2b2613369c23d39a85c252f81ed1073816d5587b44"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/complementary-shaders-v4.pw.toml"
|
||||
hash = "c77c87c64c38307c6b0c40619f428199ba89278b6fa0c28e4beeda74a933d2f0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/hysteria-shaders.pw.toml"
|
||||
hash = "6e0f8d3902604c0a0ec68a7c755149795bef9ee373038ad2837032b6f8f9b004"
|
||||
hash = "62907b0a98b3ea75b6ab6efb694685751abbd19aa21826f03de0ab4bc4012fbe"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/makeup-ultra-fast-shaders.pw.toml"
|
||||
hash = "5821f960ab766cc441934d39998677b224c9e1c6efb965af2d1fa7f8eab73f58"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/pixel-perfect.pw.toml"
|
||||
hash = "103a0e3143e9dc41d99be6a00646356108b1efb0dd27c90b97bf9d4c16afdbbd"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/psx-shader.pw.toml"
|
||||
hash = "0a360a375249cb4221e62a4459073e31f5a43e213abcbe71526f5b373f258a74"
|
||||
hash = "d607da4ce672251838256616b1c6db384f5f0b5d849e428ce05d852d6e9b81ae"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/rethinking-voxels.pw.toml"
|
||||
hash = "5a858b73cd053d094cc4e7894fa32219872dcf572604e6aa1f1e7ac2680d9bd2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/shrimple.pw.toml"
|
||||
hash = "5278e03c761883c72be4f3afb5c06119e2cfc333ed80a1608734d922e070619f"
|
||||
hash = "1f2ec0bcd3a5e8e5a4070b141654039f726812ae0a76acf2b6b5e309da24dc0e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/vanillaa.pw.toml"
|
||||
hash = "b062f3d3717d82a0359fbf09472339e7080026fce69fc4a6d136ac8266b9e6ec"
|
||||
hash = "5def7fe470d25c729d7356c856984ab517e8cbcdf0b01eced72aa1dc95accb3b"
|
||||
metafile = true
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "Amecs"
|
||||
filename = "amecs-1.3.10+mc.1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/rcLriA4v/versions/HuXAp0GB/amecs-1.3.10%2Bmc.1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "1eff33308da62b47e5767875b28cdd436da77e2c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "rcLriA4v"
|
||||
version = "HuXAp0GB"
|
@ -1,13 +1,13 @@
|
||||
name = "AppleSkin"
|
||||
filename = "appleskin-fabric-mc1.20.1-2.5.1.jar"
|
||||
filename = "appleskin-fabric-mc1.20-2.5.0.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/CxnVG86Y/appleskin-fabric-mc1.20-2.5.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "d0f11243f79c071416bbcee781ae93eb57a0283c"
|
||||
hash = "f01bcf9adbaaeb5f6b185864c0b879e8e3923991"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "EsAfCjCV"
|
||||
version = "xcauwnEB"
|
||||
version = "CxnVG86Y"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Architectury API"
|
||||
filename = "architectury-9.2.14-fabric.jar"
|
||||
filename = "architectury-9.1.10-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/WbL7MStR/architectury-9.2.14-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/8tNf9Wq9/architectury-9.1.10-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "4fa65e32dbf63a871a30fe8ec6fbff9a4b8d007d"
|
||||
hash = "f09e5f8e18aa42f80f6c51fd8fee539f1426dbbe"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "lhGA9TYQ"
|
||||
version = "WbL7MStR"
|
||||
version = "8tNf9Wq9"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Auth Me"
|
||||
filename = "authme-7.0.2+1.20.jar"
|
||||
filename = "authme-7.0.1+1.20.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yjgIrBjZ/versions/RiTU8rGC/authme-7.0.2%2B1.20.jar"
|
||||
url = "https://cdn.modrinth.com/data/yjgIrBjZ/versions/TyXRb1be/authme-7.0.1%2B1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "5e430805cf3dfd79fc5f0995f97604edac1491cd"
|
||||
hash = "b61e03cd948d296e0e0dc811397e3c3317801e64"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yjgIrBjZ"
|
||||
version = "RiTU8rGC"
|
||||
version = "TyXRb1be"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "bad packets"
|
||||
filename = "badpackets-fabric-0.4.3.jar"
|
||||
filename = "badpackets-fabric-0.4.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ftdbN0KK/versions/JjLWLyDz/badpackets-fabric-0.4.3.jar"
|
||||
url = "https://cdn.modrinth.com/data/ftdbN0KK/versions/ivJ0srK8/badpackets-fabric-0.4.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "87b7ef4e9c9bff0fd8cdcc79156e9c7ac7b26690"
|
||||
hash = "64ed580b9a7c8d4da646944bd01c775c9aa9cb97"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ftdbN0KK"
|
||||
version = "JjLWLyDz"
|
||||
version = "ivJ0srK8"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Better Fabric Console"
|
||||
filename = "better-fabric-console-mc1.20.1-1.1.6.jar"
|
||||
filename = "better-fabric-console-mc1.20.1-1.1.5.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Y8o1j1Sf/versions/8YUqYot0/better-fabric-console-mc1.20.1-1.1.6.jar"
|
||||
url = "https://cdn.modrinth.com/data/Y8o1j1Sf/versions/6BihHVPz/better-fabric-console-mc1.20.1-1.1.5.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "7850bce7cb851a8296da5ef5eb2b7c2862874bf4"
|
||||
hash = "423c2babfc4e11c7f35ebe62a82cf65d2a7bac0d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Y8o1j1Sf"
|
||||
version = "8YUqYot0"
|
||||
version = "6BihHVPz"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "BetterF3"
|
||||
filename = "BetterF3-7.0.2-Fabric-1.20.1.jar"
|
||||
filename = "BetterF3-7.0.0-Fabric-1.20-pre6.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/7WkFnw9F/BetterF3-7.0.2-Fabric-1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/NwdpRyuN/BetterF3-7.0.0-Fabric-1.20-pre6.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "ed0383ed8c68e1d1cbfc61267afee028d8a4d7fe"
|
||||
hash = "45729e0b259cafdffc3886e5120f887eb811f681"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "8shC1gFX"
|
||||
version = "7WkFnw9F"
|
||||
version = "NwdpRyuN"
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "Blur (Fabric)"
|
||||
filename = "blur-3.1.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NK39zBp2/versions/dki8Ab2D/blur-3.1.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "3a0811af7f425daab896fbfc38898a22e7af39cf"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NK39zBp2"
|
||||
version = "dki8Ab2D"
|
@ -1,13 +0,0 @@
|
||||
name = "Bobby"
|
||||
filename = "bobby-5.0.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/M08ruV16/versions/2cuVyTav/bobby-5.0.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "bdc0285d4209c529019ae1c5f1f0af0e3a3cffa6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "M08ruV16"
|
||||
version = "2cuVyTav"
|
@ -1,13 +0,0 @@
|
||||
name = "Carpet Extra"
|
||||
filename = "carpet-extra-1.20-1.4.115.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/VX3TgwQh/versions/gPJoJ3mr/carpet-extra-1.20-1.4.115.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "09f1aeb870393d9ee07d895b5a60c7594a0bddd5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "VX3TgwQh"
|
||||
version = "gPJoJ3mr"
|
13
mods/carpet-fixes.pw.toml
Normal file
13
mods/carpet-fixes.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Carpet-Fixes"
|
||||
filename = "carpet-fixes-1.20-1.16.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/7Jaxgqip/versions/NBCnBGZj/carpet-fixes-1.20-1.16.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "0e4f0f766ffbb059f8992e63987975f111e45780"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "7Jaxgqip"
|
||||
version = "NBCnBGZj"
|
@ -1,13 +0,0 @@
|
||||
name = "Chat Heads"
|
||||
filename = "chat_heads-0.12.6-fabric-1.20.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/E3eEb6PU/chat_heads-0.12.6-fabric-1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "4ffbd82ff5d603157d4507e0543055a9ee6d7036"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Wb5oqrBJ"
|
||||
version = "E3eEb6PU"
|
@ -1,13 +1,13 @@
|
||||
name = "CIT Resewn"
|
||||
filename = "citresewn-1.1.5+1.20.1.jar"
|
||||
filename = "CITResewn-1.1.3+1.20.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/otVJckYQ/versions/8uQeAHwk/citresewn-1.1.5%2B1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/otVJckYQ/versions/c7Lo4vij/CITResewn-1.1.3%2B1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "80d5b5b7bd73a1af7e3ea2c3a770efd7043d399e"
|
||||
hash = "53f036ebe51d7d97afaf44d541775c92c4470dad"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "otVJckYQ"
|
||||
version = "8uQeAHwk"
|
||||
version = "c7Lo4vij"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "clientcommands"
|
||||
filename = "clientcommands-2.8.5.jar"
|
||||
filename = "clientcommands-2.8.2.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/7Coz83fv/versions/ZWPrW9TU/clientcommands-2.8.5.jar"
|
||||
url = "https://cdn.modrinth.com/data/7Coz83fv/versions/ViyxuSEH/clientcommands-2.8.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "055f47b62154773c83c746edd1862a33883bf07a"
|
||||
hash = "7cf1bd2a6d02db2cc2dc2741b46345a710a7fe39"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "7Coz83fv"
|
||||
version = "ZWPrW9TU"
|
||||
version = "ViyxuSEH"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Cloth Config API"
|
||||
filename = "cloth-config-11.1.118-fabric.jar"
|
||||
filename = "cloth-config-11.1.106-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/J3FLptsi/cloth-config-11.1.118-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/s7VTKfLA/cloth-config-11.1.106-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "f669f899d707b9e9acf1c239b0ae6b2c8be95361"
|
||||
hash = "a05e176326365f2b8e377a35be52a5671491bcfd"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9s6osm5g"
|
||||
version = "J3FLptsi"
|
||||
version = "s7VTKfLA"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Continuity"
|
||||
filename = "continuity-3.0.0-beta.5+1.20.1.jar"
|
||||
filename = "continuity-3.0.0-beta.2+1.20.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/1IjD5062/versions/84Zs6tNo/continuity-3.0.0-beta.5%2B1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/1IjD5062/versions/ImUFj5Gl/continuity-3.0.0-beta.2%2B1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "15ad75d51f567c69308b91223454bacfd2eda7a5"
|
||||
hash = "c5157819671612384834730a877eec5c484b5cf9"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "1IjD5062"
|
||||
version = "84Zs6tNo"
|
||||
version = "ImUFj5Gl"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Cull Less Leaves"
|
||||
filename = "CullLessLeaves-1.3.0.jar"
|
||||
filename = "CullLessLeaves-1.2.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/iG6ZHsUV/versions/TFvkv8XK/CullLessLeaves-1.3.0.jar"
|
||||
url = "https://cdn.modrinth.com/data/iG6ZHsUV/versions/mafk58Fm/CullLessLeaves-1.2.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "83380456dab54b8ac790b84a0f4f39a1404e6bc5"
|
||||
hash = "405914c77d3d38e6dad3b2b33fbd44f92c2fba6d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "iG6ZHsUV"
|
||||
version = "TFvkv8XK"
|
||||
version = "mafk58Fm"
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "Distant Horizons"
|
||||
filename = "DistantHorizons-2.1.2-a-1.20.1-forge-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/uCdwusMi/versions/OwcStAhe/DistantHorizons-2.1.2-a-1.20.1-forge-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "56117d011bc5892dea3921676d0c981d66ed83ed"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "uCdwusMi"
|
||||
version = "OwcStAhe"
|
@ -1,13 +1,13 @@
|
||||
name = "Dynamic FPS"
|
||||
filename = "dynamic-fps-3.6.0+minecraft-1.20.0-quilt.jar"
|
||||
filename = "dynamic-fps-2.4.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/zVtEuiz1/dynamic-fps-3.6.0%2Bminecraft-1.20.0-quilt.jar"
|
||||
url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/Usg995P0/dynamic-fps-2.4.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "6c20da90c2a2a998fe56b32d84f6b93d74142a36"
|
||||
hash = "8f8dc48343df6bd07aad944f4fe09f33dc737184"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "LQ3K71Q1"
|
||||
version = "zVtEuiz1"
|
||||
version = "Usg995P0"
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "Dynamic Crosshair"
|
||||
filename = "dynamiccrosshair-7.4.4+1.20-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ZcR9weSm/versions/9TBX0qkD/dynamiccrosshair-7.4.4%2B1.20-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "99b63cd2478966710cf2e19568dcde7b14a86201"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ZcR9weSm"
|
||||
version = "9TBX0qkD"
|
@ -1,13 +0,0 @@
|
||||
name = "e4mc"
|
||||
filename = "e4mc_minecraft-5.0.0-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/qANg5Jrr/versions/bvr50NJe/e4mc_minecraft-5.0.0-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "41f45402c2af136a8654688f23931d6ecde18f3c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qANg5Jrr"
|
||||
version = "bvr50NJe"
|
@ -1,13 +0,0 @@
|
||||
name = "EMI Loot"
|
||||
filename = "emi_loot-0.6.6+1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/qbbO7Jns/versions/lwhMjJHL/emi_loot-0.6.6%2B1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "1ecb08d3a45f000e835e9214eb6bae282bd8fdb0"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qbbO7Jns"
|
||||
version = "lwhMjJHL"
|
@ -1,13 +0,0 @@
|
||||
name = "EMI"
|
||||
filename = "emi-1.1.10+1.20.1+fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/fRiHVvU7/versions/8KtEM1az/emi-1.1.10%2B1.20.1%2Bfabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "863db56afaa62d3f7edf992df493e1bbf360c00c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "fRiHVvU7"
|
||||
version = "8KtEM1az"
|
@ -1,13 +0,0 @@
|
||||
name = "EMIffect"
|
||||
filename = "emiffect-fabric-1.1.2+mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/705gWllI/versions/BslzSzGd/emiffect-fabric-1.1.2%2Bmc1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "8a63f92080a05eeb53547ec76be615c5576ef901"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "705gWllI"
|
||||
version = "BslzSzGd"
|
@ -1,13 +0,0 @@
|
||||
name = "EMI Trades"
|
||||
filename = "emitrades-fabric-1.2.1+mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/j2HhbEE7/versions/kWMqVWTm/emitrades-fabric-1.2.1%2Bmc1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "72b51627c09e539e9f6194fc5aad862ff5f09461"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "j2HhbEE7"
|
||||
version = "kWMqVWTm"
|
@ -1,13 +1,13 @@
|
||||
name = "Entity Model Features [CEM]"
|
||||
filename = "entity_model_features_fabric_1.20.1-2.1.3.jar"
|
||||
filename = "entity_model_features_fabric_1.20-0.2.12.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/4I1XuqiY/versions/f3RkrLlq/entity_model_features_fabric_1.20.1-2.1.3.jar"
|
||||
url = "https://cdn.modrinth.com/data/4I1XuqiY/versions/ZAuTqMfx/entity_model_features_fabric_1.20-0.2.12.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "e5c7c4a0b5cb645945dfa1ef332984d04ba77363"
|
||||
hash = "d38ed7290ba1e8443b09ea68b2ef8000b59c3e41"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "4I1XuqiY"
|
||||
version = "f3RkrLlq"
|
||||
version = "ZAuTqMfx"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Entity Culling"
|
||||
filename = "entityculling-fabric-1.6.6-mc1.20.1.jar"
|
||||
filename = "entityculling-fabric-1.6.2-mc1.20.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/F3RXDl1W/entityculling-fabric-1.6.6-mc1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/d20sUcYn/entityculling-fabric-1.6.2-mc1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "d6894508d74e5f01fb525b5b89d20ac4e54257b6"
|
||||
hash = "cf43e7a58fb62f75d664cce1b14a6064774e6547"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NNAgCjsB"
|
||||
version = "F3RXDl1W"
|
||||
version = "d20sUcYn"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Entity Texture Features"
|
||||
filename = "entity_texture_features_fabric_1.20.1-6.1.3.jar"
|
||||
filename = "entity_texture_features_fabric_1.20-4.4.4.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/BVzZfTc1/versions/fqFnWIXs/entity_texture_features_fabric_1.20.1-6.1.3.jar"
|
||||
url = "https://cdn.modrinth.com/data/BVzZfTc1/versions/DpEWP7FH/entity_texture_features_fabric_1.20-4.4.4.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "ab8907e55f6474fbba2de022a87ffb29fa14a64c"
|
||||
hash = "d3c83c0e3fd5fb8aecbfa0502dbb509656f6daa5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "BVzZfTc1"
|
||||
version = "fqFnWIXs"
|
||||
version = "DpEWP7FH"
|
||||
|
13
mods/fabric-api.pw.toml
Normal file
13
mods/fabric-api.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Fabric API"
|
||||
filename = "fabric-api-0.85.0+1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/hFdJG9fY/fabric-api-0.85.0%2B1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "02ae17b8122b176f2884cae49af440e27bee7161"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "P7dR8mSH"
|
||||
version = "hFdJG9fY"
|
13
mods/fabric-language-kotlin.pw.toml
Normal file
13
mods/fabric-language-kotlin.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Fabric Language Kotlin"
|
||||
filename = "fabric-language-kotlin-1.10.0+kotlin.1.9.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/65oEzjEs/fabric-language-kotlin-1.10.0%2Bkotlin.1.9.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "e0a7c6564243009f9bf2476b70e9af98dd2dd944"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Ha28R6CL"
|
||||
version = "65oEzjEs"
|
@ -1,13 +1,13 @@
|
||||
name = "FabricSkyBoxes Interop"
|
||||
filename = "fsb-interop-1.3.6+mc1.20.1-build.50.jar"
|
||||
filename = "fsb-interop-1.3.2+mc1.20-build.36.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/HpdHOPOp/versions/JRvZ5VhS/fsb-interop-1.3.6%2Bmc1.20.1-build.50.jar"
|
||||
url = "https://cdn.modrinth.com/data/HpdHOPOp/versions/pA1F353z/fsb-interop-1.3.2%2Bmc1.20-build.36.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "4ead20a0528788f36d4a7e38d1ebfec35218387e"
|
||||
hash = "817c4abb1a0815bc5eb5504390ab2ce976f4154f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "HpdHOPOp"
|
||||
version = "JRvZ5VhS"
|
||||
version = "pA1F353z"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "FabricSkyboxes"
|
||||
filename = "fabricskyboxes-0.7.3+mc1.20.1.jar"
|
||||
filename = "fabricskyboxes-0.7.1+mc1.20.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YBz7DOs8/versions/cezLH6eB/fabricskyboxes-0.7.3%2Bmc1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/YBz7DOs8/versions/bl8ZIucH/fabricskyboxes-0.7.1%2Bmc1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "31a13b9ca0a500b4caad993ec42e1199142d86d1"
|
||||
hash = "1a2a4778dc91b3357e7a7d73b5e08c05c71dadc5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YBz7DOs8"
|
||||
version = "cezLH6eB"
|
||||
version = "bl8ZIucH"
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "Falling Leaves"
|
||||
filename = "fallingleaves-1.15.6+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/WhbRG4iK/versions/flPXaySR/fallingleaves-1.15.6%2B1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "9950aaea2a33b1cfc972e881c533384e3bb0a0fb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "WhbRG4iK"
|
||||
version = "flPXaySR"
|
13
mods/farsight-fabric.pw.toml
Normal file
13
mods/farsight-fabric.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Farsight [Fabric]"
|
||||
filename = "farsight-fabric-1.20.1-3.7.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "fcc303ad8d7b937e175f1dec2e74f5a4bbc5389f"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4595154
|
||||
project-id = 579192
|
@ -1,13 +0,0 @@
|
||||
name = "FastQuit"
|
||||
filename = "fastquit-3.0.0+1.20+.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/x1hIzbuY/versions/tNgyOUMr/fastquit-3.0.0%2B1.20%2B.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "68f080925502a49027e231c63d3b94128ed6499b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "x1hIzbuY"
|
||||
version = "tNgyOUMr"
|
@ -1,13 +1,13 @@
|
||||
name = "FerriteCore"
|
||||
filename = "ferritecore-6.0.1-fabric.jar"
|
||||
filename = "ferritecore-6.0.0-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/FCnCG6PS/ferritecore-6.0.0-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "8fa3b84fc5860dbc30fdf8cced02af68dffcf3fa"
|
||||
hash = "5a57ea73c3c7c0cc300d69611a9cad93baf8e9ab"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "uXXizFIs"
|
||||
version = "unerR5MN"
|
||||
version = "FCnCG6PS"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Figura"
|
||||
filename = "figura-0.1.4+1.20.1-fabric-mc.jar"
|
||||
filename = "figura-0.1.1+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/s9gIPDom/versions/DhHrk371/figura-0.1.4%2B1.20.1-fabric-mc.jar"
|
||||
url = "https://cdn.modrinth.com/data/B3csO4KD/versions/1KkDgZl5/figura-0.1.1%2B1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "260b9cae1dc1087d3007e644e2b43f4d2634914d"
|
||||
hash = "2cb7b8e839f834d5e05be6fe3f363fae8f3802a2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "s9gIPDom"
|
||||
version = "DhHrk371"
|
||||
mod-id = "B3csO4KD"
|
||||
version = "1KkDgZl5"
|
||||
|
13
mods/immediatelyfast.pw.toml
Normal file
13
mods/immediatelyfast.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "ImmediatelyFast"
|
||||
filename = "ImmediatelyFast-1.1.16+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/aptjkgGB/ImmediatelyFast-1.1.16%2B1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "03e6ec096ad20ada721574e12b0145fe129fbd5a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "5ZwdcRci"
|
||||
version = "aptjkgGB"
|
@ -1,13 +1,13 @@
|
||||
name = "Indium"
|
||||
filename = "indium-1.0.34+mc1.20.1.jar"
|
||||
filename = "indium-1.0.21+mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/gofbpynL/indium-1.0.34%2Bmc1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/yTh7W27h/indium-1.0.21%2Bmc1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "a2de9ba15f155b09626995ad58b0e23803b05fe6"
|
||||
hash = "f97c6485da813634541a8c792b2f04d44e17d141"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Orvt0mRa"
|
||||
version = "gofbpynL"
|
||||
version = "yTh7W27h"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Inventory Profiles Next"
|
||||
filename = "InventoryProfilesNext-fabric-1.20-1.10.10.jar"
|
||||
filename = "InventoryProfilesNext-fabric-1.20-1.10.6.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/O7RBXm3n/versions/vYitK6Zf/InventoryProfilesNext-fabric-1.20-1.10.10.jar"
|
||||
url = "https://cdn.modrinth.com/data/O7RBXm3n/versions/MPvWmWwk/InventoryProfilesNext-fabric-1.20-1.10.6.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "10f1bdc53f23261078b0754b5d7976d85f739497"
|
||||
hash = "2fdcb0ad16c1e7edf48070962f48eada3218f0f6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "O7RBXm3n"
|
||||
version = "vYitK6Zf"
|
||||
version = "MPvWmWwk"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Iris Shaders"
|
||||
filename = "iris-1.7.2+mc1.20.1.jar"
|
||||
filename = "iris-mc1.20-1.6.4.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/1CMVXDHo/iris-1.7.2%2Bmc1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/URWeWMAt/iris-mc1.20-1.6.4.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "4841b993d37c0944ca6f7a02809364e561a6acc3"
|
||||
hash = "ec1491adc5dffeb0ab2f5da290b32cd4e45d58ad"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YL57xq9U"
|
||||
version = "1CMVXDHo"
|
||||
version = "URWeWMAt"
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "ItemSwapper"
|
||||
filename = "itemswapper-fabric-0.7.0-mc1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/RPOSBQgq/versions/gUBexK3m/itemswapper-fabric-0.7.0-mc1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "5b79dbd2776fff2c30f817913e186968e0fbde18"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "RPOSBQgq"
|
||||
version = "gUBexK3m"
|
@ -1,13 +0,0 @@
|
||||
name = "Just Enough Items"
|
||||
filename = "jei-1.20.1-fabric-15.3.0.8.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/MtHhjBC2/jei-1.20.1-fabric-15.3.0.8.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "883008503c38e4f3dddd16001a497cddc141a574"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "u6dRKJwZ"
|
||||
version = "MtHhjBC2"
|
@ -1,13 +1,13 @@
|
||||
name = "LambDynamicLights"
|
||||
filename = "lambdynamiclights-2.3.2+1.20.1.jar"
|
||||
filename = "lambdynamiclights-2.3.1+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yBW8D80W/versions/mYl4RvKg/lambdynamiclights-2.3.2%2B1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/yBW8D80W/versions/Vsx4I8Np/lambdynamiclights-2.3.1%2B1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "71b636fa74744e51ba2d248c81a38bdbfad5d43b"
|
||||
hash = "bb009883b87e45f069e83d44f2e6d559eee757e4"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yBW8D80W"
|
||||
version = "mYl4RvKg"
|
||||
version = "Vsx4I8Np"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Language Reload"
|
||||
filename = "language-reload-1.6.1+1.20.1.jar"
|
||||
filename = "language-reload-1.5.8+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/uLbm7CG6/versions/kO9nUBoX/language-reload-1.6.1%2B1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/uLbm7CG6/versions/vMtWVHDJ/language-reload-1.5.8%2B1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "02fdfa8eab9fb261c0681d86d1d91b3a2fe16cb6"
|
||||
hash = "c6d1806fbf8c2cd5969f4d7ee51519ef5c3210d6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "uLbm7CG6"
|
||||
version = "kO9nUBoX"
|
||||
version = "vMtWVHDJ"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "libIPN"
|
||||
filename = "libIPN-fabric-1.20-4.0.2.jar"
|
||||
filename = "libIPN-fabric-1.20-3.0.2.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/onSQdWhM/versions/Uygzs3iI/libIPN-fabric-1.20-4.0.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/onSQdWhM/versions/R8cssvoN/libIPN-fabric-1.20-3.0.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "c8c4d93037efb226b6bd3264e33df4c010cb111b"
|
||||
hash = "7ca028553a1423d8f34ce31d6a6a31b1fcf57aeb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "onSQdWhM"
|
||||
version = "Uygzs3iI"
|
||||
version = "R8cssvoN"
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "LiLaC"
|
||||
filename = "lilac-1.0.0-beta.3.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Rtp2Lyr5/versions/UuwX5TxU/lilac-1.0.0-beta.3.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "e6d449b82261294fd36dd8059d78c521f30cc08d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Rtp2Lyr5"
|
||||
version = "UuwX5TxU"
|
13
mods/memoryleakfix.pw.toml
Normal file
13
mods/memoryleakfix.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Memory Leak Fix"
|
||||
filename = "memoryleakfix-fabric-1.17+-1.1.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NRjRiSSD/versions/kLyFtyv2/memoryleakfix-fabric-1.17%2B-1.1.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "2bc5237993e08fd491d410bb646838cda4999bed"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NRjRiSSD"
|
||||
version = "kLyFtyv2"
|
@ -1,13 +1,13 @@
|
||||
name = "MidnightControls"
|
||||
filename = "midnightcontrols-1.9.4+1.20.jar"
|
||||
filename = "midnightcontrols-1.8.2+1.20.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/bXX9h73M/versions/xHOdr9un/midnightcontrols-1.9.4%2B1.20.jar"
|
||||
url = "https://cdn.modrinth.com/data/bXX9h73M/versions/Ek4mkpRw/midnightcontrols-1.8.2%2B1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "9c88a6d8c043db3b1cbf7301432080636ef3ee9d"
|
||||
hash = "12ca313a138705adad5200a7edc216f233ecb24b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "bXX9h73M"
|
||||
version = "xHOdr9un"
|
||||
version = "Ek4mkpRw"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Mod Menu"
|
||||
filename = "modmenu-7.2.2.jar"
|
||||
filename = "modmenu-7.1.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/zv46i3PW/modmenu-7.1.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "099c68feeb74887cbbbd8ce9a27c6123804a2c5a"
|
||||
hash = "7d26ff2477ad8a083f11c1006a2b87ff1c121b62"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "mOgUt4GM"
|
||||
version = "lEkperf6"
|
||||
version = "zv46i3PW"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "MoreChatHistory"
|
||||
filename = "morechathistory-1.3.0.jar"
|
||||
filename = "morechathistory-1.19.1-1.1.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/8qkXwOnk/versions/PLfxrDkh/morechathistory-1.3.0.jar"
|
||||
url = "https://cdn.modrinth.com/data/8qkXwOnk/versions/mc1.19.1-1.1.1/morechathistory-1.19.1-1.1.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "346cce5cb5d89e676d8ed0dca05522369063b3c3"
|
||||
hash = "b23419da24f1c7ae16c6e77e992a38491cccf2c8"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "8qkXwOnk"
|
||||
version = "PLfxrDkh"
|
||||
version = "b1apT2G2"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Mouse Tweaks"
|
||||
filename = "MouseTweaks-fabric-mc1.20-2.26.jar"
|
||||
filename = "MouseTweaks-fabric-mc1.20-2.25.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/mjuG4AYd/MouseTweaks-fabric-mc1.20-2.26.jar"
|
||||
url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/m0Dd8Cjy/MouseTweaks-fabric-mc1.20-2.25.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "6a6b977e671b1ab625e740fc70fb5300c21bb841"
|
||||
hash = "21ae6dd81324543e77c10bbb2b928320d71b6750"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "aC3cM3Vq"
|
||||
version = "mjuG4AYd"
|
||||
version = "m0Dd8Cjy"
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "No More Useless Keys - NMUK"
|
||||
filename = "nmuk-1.1.1+mc1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YCcdA1Lp/versions/wX0qDRqE/nmuk-1.1.1%2Bmc1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "df246e99b615da7236a14c6f07054cd44f6ca9b2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YCcdA1Lp"
|
||||
version = "wX0qDRqE"
|
@ -1,13 +1,13 @@
|
||||
name = "OptiGUI"
|
||||
filename = "optigui-2.1.7.jar"
|
||||
filename = "optigui-2.1.2.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/JuksLGBQ/versions/xpfegZsE/optigui-2.1.7.jar"
|
||||
url = "https://cdn.modrinth.com/data/JuksLGBQ/versions/YU9Yi2mO/optigui-2.1.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "47040b4c65b6381ca61bc3af61fee4df279b5eec"
|
||||
hash = "ec6ee4f47fbe7850866ca2fac9aed14d9c4f0336"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "JuksLGBQ"
|
||||
version = "xpfegZsE"
|
||||
version = "YU9Yi2mO"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Presence Footsteps"
|
||||
filename = "PresenceFootsteps-1.9.4+1.20.1.jar"
|
||||
filename = "PresenceFootsteps-1.9.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/rcTfTZr3/versions/LjDXTyEn/PresenceFootsteps-1.9.4%2B1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/rcTfTZr3/versions/FMF3yzCR/PresenceFootsteps-1.9.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "f4b446c7153bf6dbe41b7f3325686e3dd630dff1"
|
||||
hash = "e5ea35c6c326e6f5e6fe2a8af7cbc6a955515dbc"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "rcTfTZr3"
|
||||
version = "LjDXTyEn"
|
||||
version = "FMF3yzCR"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Puzzle"
|
||||
filename = "puzzle-1.5.2+1.20.jar"
|
||||
filename = "puzzle-1.5.1+1.20.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/3IuO68q1/versions/F5UKlslF/puzzle-1.5.2%2B1.20.jar"
|
||||
url = "https://cdn.modrinth.com/data/3IuO68q1/versions/SyDRZGtj/puzzle-1.5.1%2B1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "5c3937cb1b9f7e2112cdf00ec0b1afce7c526ac1"
|
||||
hash = "72f270e7740285a1276f43ef5b1f8542e9048be3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "3IuO68q1"
|
||||
version = "F5UKlslF"
|
||||
version = "SyDRZGtj"
|
||||
|
@ -1,13 +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"
|
@ -1,13 +0,0 @@
|
||||
name = "Quilted Fabric API (QFAPI) / Quilt Standard Libraries (QSL)"
|
||||
filename = "qfapi-7.5.0_qsl-6.1.2_fapi-0.92.2_mc-1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/qvIfYCYJ/versions/Gydw2vxY/qfapi-7.5.0_qsl-6.1.2_fapi-0.92.2_mc-1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "24b33e47b5980eefc63b0aff350347144cf9bfa4"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qvIfYCYJ"
|
||||
version = "Gydw2vxY"
|
@ -1,13 +0,0 @@
|
||||
name = "Quilt Loading Screen"
|
||||
filename = "quilt_loading_screen-6.1.0+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/VPU6VYVP/versions/CxbdfZp6/quilt_loading_screen-6.1.0%2B1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "95ad28ba01e197aa24a1510eb947653eae56109e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "VPU6VYVP"
|
||||
version = "CxbdfZp6"
|
@ -1,13 +1,13 @@
|
||||
name = "Reese's Sodium Options"
|
||||
filename = "reeses_sodium_options-1.7.2+mc1.20.1-build.101.jar"
|
||||
filename = "reeses_sodium_options-1.5.1+mc1.20-build.74.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/Rc9pkPug/reeses_sodium_options-1.7.2%2Bmc1.20.1-build.101.jar"
|
||||
url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/SgSIhHQO/reeses_sodium_options-1.5.1%2Bmc1.20-build.74.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "206f1b01b99ac3df99ddd84ed96b466a8700412d"
|
||||
hash = "ff2fb322da5ca3edc25b55234e0f883797e18647"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Bh37bMuy"
|
||||
version = "Rc9pkPug"
|
||||
version = "SgSIhHQO"
|
||||
|
13
mods/rei.pw.toml
Normal file
13
mods/rei.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Roughly Enough Items (REI)"
|
||||
filename = "RoughlyEnoughItems-12.0.626.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/nfn13YXA/versions/MdZAcX0v/RoughlyEnoughItems-12.0.626.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "5bb82eb4a5198c1cd49a89922c1abdc0d7b142ea"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "nfn13YXA"
|
||||
version = "MdZAcX0v"
|
@ -1,13 +0,0 @@
|
||||
name = "ReplayMod"
|
||||
filename = "replaymod-1.20.1-2.6.15.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Nv2fQJo5/versions/MEAiQjrL/replaymod-1.20.1-2.6.15.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "43585ef8dc0c50ebc79dfff9082bc10d94dff6e2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Nv2fQJo5"
|
||||
version = "MEAiQjrL"
|
@ -1,13 +1,13 @@
|
||||
name = "Sodium Extra"
|
||||
filename = "sodium-extra-0.5.4+mc1.20.1-build.115.jar"
|
||||
filename = "sodium-extra-0.4.20+mc1.20-build.103.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/I7ggF6B5/sodium-extra-0.5.4%2Bmc1.20.1-build.115.jar"
|
||||
url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/kTxAMqAj/sodium-extra-0.4.20%2Bmc1.20-build.103.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "890864a6ab5d77d57d8d757bcc31f5379b5a11b1"
|
||||
hash = "6cf2844ca0cfd0b8adb8a0d86e0c635ce0c0f4ef"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "PtjYWJkn"
|
||||
version = "I7ggF6B5"
|
||||
version = "kTxAMqAj"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Sodium"
|
||||
filename = "sodium-fabric-0.5.11+mc1.20.1.jar"
|
||||
filename = "sodium-fabric-mc1.20-0.4.10+build.27.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/AANobbMI/versions/ygf8cVZg/sodium-fabric-0.5.11%2Bmc1.20.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/AANobbMI/versions/vgceLbdH/sodium-fabric-mc1.20-0.4.10%2Bbuild.27.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "c4293c1483f3b39c1c6c4c69143e8bb2c6e53daf"
|
||||
hash = "b11e18bb09f06c3f8028fa2c090072976fa326d0"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "AANobbMI"
|
||||
version = "ygf8cVZg"
|
||||
version = "vgceLbdH"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "spark"
|
||||
filename = "spark-1.10.53-fabric.jar"
|
||||
filename = "spark-1.10.42-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/l6YH9Als/versions/XGW2fviP/spark-1.10.53-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/l6YH9Als/versions/BeIg1bik/spark-1.10.42-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "252de323db10d2b49ef74f8e7a6a5c72929be140"
|
||||
hash = "0f0e066808446999f4d63c9db5abf9e3d778a446"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "l6YH9Als"
|
||||
version = "XGW2fviP"
|
||||
version = "BeIg1bik"
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "Where Is It"
|
||||
filename = "whereisit-2.4.3+1.20.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/FCTyEqkn/versions/QMO5B1AE/whereisit-2.4.3%2B1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "a91bbd91cd770861883ee7e3ccf110a21368d395"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "FCTyEqkn"
|
||||
version = "QMO5B1AE"
|
@ -1,13 +1,13 @@
|
||||
name = "WTHIT"
|
||||
filename = "wthit-quilt-8.13.2.jar"
|
||||
filename = "wthit-fabric-8.1.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/6AQIaxuO/versions/4Jamol2R/wthit-quilt-8.13.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/6AQIaxuO/versions/k8RgJjbP/wthit-fabric-8.1.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "b3b0105ac3dd6d8774fde26b48a1bf40ff6ce4cb"
|
||||
hash = "9a8640b2af89537ade0da2d16f0c39bb5b76d04e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "6AQIaxuO"
|
||||
version = "4Jamol2R"
|
||||
version = "k8RgJjbP"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Xaero's Minimap"
|
||||
filename = "Xaeros_Minimap_24.2.0_Fabric_1.20.jar"
|
||||
filename = "Xaeros_Minimap_23.5.0_Fabric_1.20.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/1bokaNcj/versions/WQEX096d/Xaeros_Minimap_24.2.0_Fabric_1.20.jar"
|
||||
url = "https://cdn.modrinth.com/data/1bokaNcj/versions/46F7j3df/Xaeros_Minimap_23.5.0_Fabric_1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "396401316ddde6e7712f5d6122d4d491c4d5cd2c"
|
||||
hash = "d0d455112aea5603681f07255243faf387e65119"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "1bokaNcj"
|
||||
version = "WQEX096d"
|
||||
version = "46F7j3df"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Xaero's World Map"
|
||||
filename = "XaerosWorldMap_1.38.8_Fabric_1.20.jar"
|
||||
filename = "XaerosWorldMap_1.30.6_Fabric_1.20.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NcUtCpym/versions/szULGs3b/XaerosWorldMap_1.38.8_Fabric_1.20.jar"
|
||||
url = "https://cdn.modrinth.com/data/NcUtCpym/versions/J5hmblFo/XaerosWorldMap_1.30.6_Fabric_1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "51b20efcb6c70057c98a42b2d3591fb6e84f2299"
|
||||
hash = "3d00cd983b93bc885fca0596c7007aeade392645"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NcUtCpym"
|
||||
version = "szULGs3b"
|
||||
version = "J5hmblFo"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "YetAnotherConfigLib"
|
||||
filename = "YetAnotherConfigLib-3.5.0+1.20.1-fabric.jar"
|
||||
filename = "yet-another-config-lib-fabric-3.0.3+1.20.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/gQuF6HNa/YetAnotherConfigLib-3.5.0%2B1.20.1-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/g38uL3ti/yet-another-config-lib-fabric-3.0.3%2B1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "48005e145f5423ff9446ac6fe3d1cb122f977a00"
|
||||
hash = "779bca0b6b4e98f3601fe09b5977fbe12bbd9347"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "1eAoo2KR"
|
||||
version = "gQuF6HNa"
|
||||
version = "g38uL3ti"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Zoomify"
|
||||
filename = "Zoomify-2.11.2.jar"
|
||||
filename = "Zoomify-2.10.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/w7ThoJFB/versions/gZr7EykF/Zoomify-2.11.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/w7ThoJFB/versions/1mKrqlvv/Zoomify-2.10.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "75d8785b79cd2333f4d1d326da55ba5fc6372f8d"
|
||||
hash = "21a75350e0f2a904076d2af505a4b077b8ff6438"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "w7ThoJFB"
|
||||
version = "gZr7EykF"
|
||||
version = "1mKrqlvv"
|
||||
|
@ -1,7 +0,0 @@
|
||||
{ callPackage }:
|
||||
let
|
||||
shaders = callPackage ./shaders.nix {};
|
||||
in {
|
||||
inherit (shaders) bliss-dh complementary-reimagined-dh rethinking-voxels-dh;
|
||||
packwiz-wrapper = callPackage ./packwiz-wrapper { };
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
{ lib,
|
||||
stdenvNoCC,
|
||||
python3,
|
||||
makeWrapper,
|
||||
packwiz }:
|
||||
let
|
||||
wrappedPath = lib.makeBinPath [ packwiz ];
|
||||
in stdenvNoCC.mkDerivation {
|
||||
pname = "packwiz-wrapper";
|
||||
version = "0.0.0";
|
||||
buildInputs = [
|
||||
python3
|
||||
makeWrapper
|
||||
packwiz
|
||||
];
|
||||
|
||||
src = ./.;
|
||||
|
||||
installPhase = ''
|
||||
install -Dm555 packwiz-wrapper.py $out/libexec/packwiz-wrapper.py
|
||||
mkdir -p $out/bin
|
||||
makeShellWrapper $out/libexec/packwiz-wrapper.py $out/bin/packwiz \
|
||||
--prefix PATH : "${wrappedPath}"
|
||||
'';
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
import sys, os
|
||||
from pathlib import Path
|
||||
|
||||
# Returns a parent path with pack.toml, or None if it can't be found
|
||||
def search_recursive(dir: str | os.PathLike) -> Path | None:
|
||||
dir = Path(dir)
|
||||
pack = dir / "pack.toml"
|
||||
|
||||
if pack.is_file():
|
||||
return dir
|
||||
|
||||
# If we've made it to / without finding it, return None
|
||||
if dir.samefile("/"):
|
||||
return None
|
||||
|
||||
# Otherwise, recurse
|
||||
return search_recursive(dir / "..")
|
||||
|
||||
def search(dir: str | os.PathLike) -> Path:
|
||||
new_dir = search_recursive(dir)
|
||||
if new_dir is not None:
|
||||
return new_dir
|
||||
else:
|
||||
return Path(dir)
|
||||
|
||||
def main():
|
||||
args = ["packwiz"] + sys.argv[1:]
|
||||
os.chdir(search("."))
|
||||
os.execvp("packwiz", args)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
@ -1,59 +0,0 @@
|
||||
{ stdenvNoCC,
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
zip,
|
||||
nix-update-script, }:
|
||||
let
|
||||
makeShaderPackage = {
|
||||
name,
|
||||
src,
|
||||
branch ? null,
|
||||
}: stdenvNoCC.mkDerivation {
|
||||
pname = name;
|
||||
inherit src;
|
||||
version = src.rev;
|
||||
phases = [ "installPhase" ];
|
||||
buildInputs = [ zip ];
|
||||
installPhase = ''
|
||||
cd "$src"
|
||||
mkdir -p "$out"
|
||||
zip -r "$out/${name}.zip" .
|
||||
'';
|
||||
passthru.updateScript = nix-update-script {
|
||||
# this doesn't work for some reason; don't use --use-update-script for now
|
||||
extraArgs = lib.optional (!(builtins.isNull branch)) "--version=branch=${branch}";
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
bliss-dh = makeShaderPackage {
|
||||
name = "Bliss-DH";
|
||||
branch = "main";
|
||||
src = fetchFromGitHub {
|
||||
owner = "X0nk";
|
||||
repo = "Bliss-Shader";
|
||||
rev = "1cd49fe249db4cfeb102283fdc068e9cc1549e3e";
|
||||
hash = "sha256-0R+aebM2Cztkdj4020CUTr9ABwFyG9nEu7Op0K9k6+w=";
|
||||
};
|
||||
};
|
||||
|
||||
complementary-reimagined-dh = makeShaderPackage {
|
||||
name = "ComplementaryReimagined-DH";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Steveplays28";
|
||||
repo = "ComplementaryReimagined";
|
||||
rev = "c5cb31757c27550ae30b9c462fe3ed1993b39d9d";
|
||||
hash = "sha256-1HOscJ8afNC7t4yiobJBJgom7pDpwZPdA3B3EILlyWY=";
|
||||
};
|
||||
};
|
||||
|
||||
rethinking-voxels-dh = makeShaderPackage {
|
||||
name = "RethinkingVoxels-DH";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Steveplays28";
|
||||
repo = "ComplementaryReimagined";
|
||||
rev = "343915b7b18e1d83187fae1ea1f14eac90d4d09d";
|
||||
hash = "sha256-Hu+JeINQC09OS1WY1kpagoRH5Awnp4YhacWusQgRsqc=";
|
||||
};
|
||||
};
|
||||
}
|
@ -1,16 +1,16 @@
|
||||
name = "NullLite"
|
||||
author = "NullBite"
|
||||
version = "1.3.4"
|
||||
version = "1.3.2"
|
||||
pack-format = "packwiz:1.1.0"
|
||||
|
||||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "de316a7aa0ba2a167fa1d85ffdadd224d89d53b3a4f0694183393cd2aa0aff1e"
|
||||
hash = "91f6a7c6690dd0cdcee7931124439a2e37d63c60f6453801eecc85f494bf1028"
|
||||
|
||||
[versions]
|
||||
fabric = "0.14.21"
|
||||
minecraft = "1.20.1"
|
||||
quilt = "0.26.1-beta.1"
|
||||
|
||||
[options]
|
||||
acceptable-game-versions = ["1.20"]
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "Enhanced Boss Bars"
|
||||
filename = "[1.4.1] Enhanced Boss Bars.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/U5SedJ9S/versions/3fjpw8Kj/%5B1.4.1%5D%20Enhanced%20Boss%20Bars.zip"
|
||||
hash-format = "sha1"
|
||||
hash = "3dfe3e45e973179d924b7ff462aae5a1a36c2c6d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "U5SedJ9S"
|
||||
version = "3fjpw8Kj"
|
7
resourcepacks/vanillatweaks.pw.toml
Normal file
7
resourcepacks/vanillatweaks.pw.toml
Normal file
@ -0,0 +1,7 @@
|
||||
name = "resourcepacks/vanillatweaks"
|
||||
filename = "VanillaTweaks_r265009.zip"
|
||||
|
||||
[download]
|
||||
url = "https://f002.backblazeb2.com/file/nullbite-personal/fabric-lite/VanillaTweaks_r265009.zip"
|
||||
hash-format = "sha256"
|
||||
hash = "72909653977df8ea25db672708ae3ac546da197db6972d551202b3784c904fc7"
|
@ -1,13 +0,0 @@
|
||||
name = "Bloop Shaders"
|
||||
filename = "Bloop-1.2.3.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Q6RQF9Oa/versions/dYH7ovzG/Bloop-1.2.3.zip"
|
||||
hash-format = "sha1"
|
||||
hash = "398a564800679c4c986d03d20f24601beb5781f2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Q6RQF9Oa"
|
||||
version = "dYH7ovzG"
|
@ -1,13 +1,13 @@
|
||||
name = "BSL Shaders"
|
||||
filename = "BSL_v8.2.09.zip"
|
||||
filename = "BSL_v8.2.04.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Q1vvjJYV/versions/c6RfHyKW/BSL_v8.2.09.zip"
|
||||
url = "https://cdn.modrinth.com/data/Q1vvjJYV/versions/P1eZktJ3/BSL_v8.2.04.zip"
|
||||
hash-format = "sha1"
|
||||
hash = "cd92bf706a1347a2d2943b14391ffbe1233415bc"
|
||||
hash = "17baebfe70bc4b0639cc8994e303d9e9b4e96fcf"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Q1vvjJYV"
|
||||
version = "c6RfHyKW"
|
||||
version = "P1eZktJ3"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Complementary Reimagined"
|
||||
filename = "ComplementaryReimagined_r5.2.2.zip"
|
||||
filename = "ComplementaryReimagined_r2.2.1.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/HVnmMxH1/versions/pAOQ9Amz/ComplementaryReimagined_r5.2.2.zip"
|
||||
url = "https://cdn.modrinth.com/data/HVnmMxH1/versions/RYvsFGd2/ComplementaryReimagined_r2.2.1.zip"
|
||||
hash-format = "sha1"
|
||||
hash = "07cd8165acf24ec8ddada03f60729537687dd435"
|
||||
hash = "d55a5f8e492e362539882032baedd6025d750a9c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "HVnmMxH1"
|
||||
version = "pAOQ9Amz"
|
||||
version = "RYvsFGd2"
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Complementary Shaders v4"
|
||||
filename = "ComplementaryUnbound_r5.2.2.zip"
|
||||
filename = "ComplementaryShaders_v4.7.2.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/R6NEzAwj/versions/RMaZ3tSJ/ComplementaryUnbound_r5.2.2.zip"
|
||||
url = "https://cdn.modrinth.com/data/R6NEzAwj/versions/G16NNnV9/ComplementaryShaders_v4.7.2.zip"
|
||||
hash-format = "sha1"
|
||||
hash = "f0c0cbd2059b7a464b9e0f061ddfa6f0980849e1"
|
||||
hash = "c6957098a1f8ea27161289257ed14a8c5f10ba73"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "R6NEzAwj"
|
||||
version = "RMaZ3tSJ"
|
||||
version = "G16NNnV9"
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "Hysteria Shaders"
|
||||
filename = "Hysteria-Shaders-Universal-v1.1.0.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/iHC8BZn4/versions/s9yjAgG6/Hysteria-Shaders-Universal-v1.1.0.zip"
|
||||
hash-format = "sha1"
|
||||
hash = "18c4eb444309c8052164028deb9ed54f85c23902"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "iHC8BZn4"
|
||||
version = "s9yjAgG6"
|
@ -1,13 +1,13 @@
|
||||
name = "MakeUp - Ultra Fast"
|
||||
filename = "MakeUp-UltraFast-8.9f.zip"
|
||||
filename = "MakeUp-UltraFast-8.8e.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/izsIPI7a/versions/V8u6ZaM2/MakeUp-UltraFast-8.9f.zip"
|
||||
url = "https://cdn.modrinth.com/data/izsIPI7a/versions/HZOCaLH4/MakeUp-UltraFast-8.8e.zip"
|
||||
hash-format = "sha1"
|
||||
hash = "f8d660df8f70c0f65c8410c97fdfa1ec90f4c727"
|
||||
hash = "8141e88cf35143819cc1a074c3dffe6ee44e611d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "izsIPI7a"
|
||||
version = "V8u6ZaM2"
|
||||
version = "HZOCaLH4"
|
||||
|
@ -1,13 +0,0 @@
|
||||
name = "Pixel Perfect"
|
||||
filename = "Pixel-Perfect-1-5-0.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/D5k8BTVz/versions/qwUpiwSm/Pixel-Perfect-1-5-0.zip"
|
||||
hash-format = "sha1"
|
||||
hash = "82f960fc56af78794343ba2de24a5912d65f7226"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "D5k8BTVz"
|
||||
version = "qwUpiwSm"
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user