This commit is contained in:
Madis 2021-11-22 15:26:16 +02:00
parent 5bb920ec63
commit 98154af6f4
18 changed files with 486 additions and 453 deletions

View file

@ -3,6 +3,15 @@ This is the changelog for the Fabric modpack [Fabulously Optimized](https://www.
## 1.17.1
### 2.4.1
* AdvancementInfo now has settings, you can set the colors or info box width
* Disabled 'Slight' GUI Modifications' "satisfying screenshots" to make the screenshot instantly accessible (clickable link on chat like vanilla)
* Updated Mod Menu Helper phrases a bit
* Removed irrelevant suggestions from launcher logs
* Updated AdvancementInfo, Cloth Config API, Colormatic, Not Enough Crashes
* Skipped Sodium Extra update for now due to a crash
### 2.4.0
* Updated Fabric Loader to 0.12.5

View file

@ -86,6 +86,7 @@ def main():
git_path = user_path + "/Documents/GitHub/fabulously-optimized/"
version_no = "1.17.1"
packwiz_path = git_path + "Packwiz/" + version_no
modrinth_path = git_path + "Modrinth/"
input_dir = PurePosixPath(packwiz_path)
output_dir = PurePosixPath(user_path + "/Desktop")
@ -95,10 +96,15 @@ def main():
index = parse_toml(file)
for file in index['files']:
if 'metafile' in file and file['metafile'] is True:
manager.add_mod(input_dir / file['file'])
else: manager.add_override(input_dir / file['file'])
# Export index.json to git
from json import dump
with open(modrinth_path + "index.json", "w") as file:
dump(manager.index, file, indent = 4)
if __name__ == "__main__":
main()
main()

View file

@ -1,8 +1,8 @@
{
"modmenu.dropInfo.line1": "FO mods have §9✎§r or §8✎§r;",
"modmenu.dropInfo.line1": "FO mods have §9✎§r or §8✎§r, alts have §c*§r;",
"modmenu.dropInfo.line2": "others are unsupported",
"modmenu.summaryTranslation.slight-gui-modifications": "Animations, modpack version in menu\n§9✎§8 Animations, colors, FPS indicator, ...",
"modmenu.summaryTranslation.advancementinfo": "Bigger, smarter advancement screen\n§8✎ (no options)",
"modmenu.summaryTranslation.advancementinfo": "Bigger, smarter advancement screen\n§9✎§8 Colors, info box size, ...",
"modmenu.summaryTranslation.animatica": "Optifine's animated textures\n§8✎ (only advanced options)",
"modmenu.summaryTranslation.antighost": "Fix ghost blocks with /ghost\n§9✎§8 Keybind",
"modmenu.summaryTranslation.bettermounthud": "Show food and XP while on a horse\n§8✎ (no options)",
@ -26,7 +26,7 @@
"modmenu.summaryTranslation.languagereload": "Instant language switching, searchbar\n§9✎§8 F3+J to reload languages",
"modmenu.summaryTranslation.lazydfu": "Faster game startup\n§8✎ (no options)",
"modmenu.summaryTranslation.lithium": "Optimize physics and chunks\n§8✎ (only advanced options)",
"modmenu.summaryTranslation.littletweaks": "Audio output option\n§9✎§8 In Music & Sounds: Device",
"modmenu.summaryTranslation.littletweaks": "Audio output option\n§9✎§8 In Music & Sounds: Device, ...",
"modmenu.summaryTranslation.modmenu": "This mod menu\n§9✎§8 Button placement, filtering, sorting, ...",
"modmenu.summaryTranslation.morechathistory": "Increase chat history limit\n§8✎ (no options)",
"modmenu.summaryTranslation.nofade": "Remove loading fade animation\n§8✎ (no options)",

View file

@ -1,8 +1,8 @@
{
"modmenu.dropInfo.line1": "FO modidel on §9✎§r või §8✎§r;",
"modmenu.dropInfo.line1": "FO modidel on §9✎§r või §8✎§r, alt. modidel §c*§r;",
"modmenu.dropInfo.line2": "teisi ei toetata",
"modmenu.summaryTranslation.slight-gui-modifications": "Animatsioonid, modipaki versioon menüüs\n§9✎§8 Animatsioonid, värvid, ks indikaator, ...",
"modmenu.summaryTranslation.advancementinfo": "Suurem, targem edasijõudmiste kuva\n§8✎ (valikud puuduvad)",
"modmenu.summaryTranslation.advancementinfo": "Suurem, targem edasijõudmiste kuva\n§9✎§8 Värvid, teabekasti suurus, ...",
"modmenu.summaryTranslation.animatica": "Optifine'i animeeritud tekstuurid\n§8✎ (vaid edasijõudnute valikud)",
"modmenu.summaryTranslation.antighost": "Paranda kummitusplokid käsuga /ghost\n§9✎§8 Kiirklahv",
"modmenu.summaryTranslation.bettermounthud": "Kuva hobusel olles toit ja kogemusp.\n§8✎ (valikud puuduvad)",
@ -26,7 +26,7 @@
"modmenu.summaryTranslation.languagereload": "Kohene keelevahetus, otsinguriba\n§9✎§8 F3+J keelte taaslaadimiseks",
"modmenu.summaryTranslation.lazydfu": "Kiirem mängu käivitus\n§8✎ (valikud puuduvad)",
"modmenu.summaryTranslation.lithium": "Optimeeri füüsikat ja kamakaid\n§8✎ (vaid edasijõudnute valikud)",
"modmenu.summaryTranslation.littletweaks": "Heliväljundi valik\n§9✎§8 Muusika ja helides: Device",
"modmenu.summaryTranslation.littletweaks": "Heliväljundi valik\n§9✎§8 Muusika ja helides: Device, ...",
"modmenu.summaryTranslation.modmenu": "See modimenüü\n§9✎§8 Nupuasetus, filtreerimine, sorteerimine, ...",
"modmenu.summaryTranslation.morechathistory": "Suurenda vestlusajaloo limiiti\n§8✎ (valikud puuduvad)",
"modmenu.summaryTranslation.nofade": "Eemalda laadimise hääbumisanimatsioon\n§8✎ (valikud puuduvad)",

View file

@ -1,409 +1,409 @@
{
"formatVersion": 1,
"game": "minecraft",
"versionId": "2.4.0",
"name": "Fabulously Optimized",
"summary": "A Fabric-based modpack for Minecraft that focuses on performance and graphics optimizations",
"files": [
{
"path": "mods/advancementinfo-1.17.1-fabric0.36.1-1.2.1.jar",
"hashes": {
"murmur2": "1687095027"
},
"downloads": [
"https://edge.forgecdn.net/files/3379/960/advancementinfo-1.17.1-fabric0.36.1-1.2.1.jar"
]
},
{
"path": "mods/animatica-0.1+1.17.jar",
"hashes": {
"murmur2": "624985466"
},
"downloads": [
"https://edge.forgecdn.net/files/3478/564/animatica-0.1+1.17.jar"
]
},
{
"path": "mods/antighost-1.17.1-fabric0.36.1-1.1.4.jar",
"hashes": {
"murmur2": "685313541"
},
"downloads": [
"https://edge.forgecdn.net/files/3379/961/antighost-1.17.1-fabric0.36.1-1.1.4.jar"
]
},
{
"path": "mods/architectury-2.6.35.jar",
"hashes": {
"murmur2": "1974939410"
},
"downloads": [
"https://edge.forgecdn.net/files/3500/17/architectury-2.6.35.jar"
]
},
{
"path": "mods/bettermounthud-1.1.2.jar",
"hashes": {
"murmur2": "1872359493"
},
"downloads": [
"https://edge.forgecdn.net/files/3380/384/bettermounthud-1.1.2.jar"
]
},
{
"path": "mods/Capes-1.2.2+1.17.jar",
"hashes": {
"murmur2": "3793937648"
},
"downloads": [
"https://edge.forgecdn.net/files/3510/854/Capes-1.2.2+1.17.jar"
]
},
{
"path": "mods/CITResewn-0.8.1.jar",
"hashes": {
"murmur2": "2762477444"
},
"downloads": [
"https://edge.forgecdn.net/files/3498/887/CITResewn-0.8.1.jar"
]
},
{
"path": "mods/cloth-api-2.0.54.jar",
"hashes": {
"murmur2": "2308550397"
},
"downloads": [
"https://edge.forgecdn.net/files/3336/395/cloth-api-2.0.54.jar"
]
},
{
"path": "mods/cloth-config-5.0.38-fabric.jar",
"hashes": {
"murmur2": "1640156610"
},
"downloads": [
"https://edge.forgecdn.net/files/3413/206/cloth-config-5.0.38-fabric.jar"
]
},
{
"path": "mods/colormatic-2.3.0+mc.1.17.1.jar",
"hashes": {
"murmur2": "686398706"
},
"downloads": [
"https://edge.forgecdn.net/files/3475/133/colormatic-2.3.0+mc.1.17.1.jar"
]
},
{
"path": "mods/completeconfig-lib-1.2.0.jar",
"hashes": {
"murmur2": "2957550967"
},
"downloads": [
"https://edge.forgecdn.net/files/3492/921/completeconfig-lib-1.2.0.jar"
]
},
{
"path": "mods/continuity-1.0.2+1.17.jar",
"hashes": {
"murmur2": "1797852615"
},
"downloads": [
"https://edge.forgecdn.net/files/3498/711/continuity-1.0.2+1.17.jar"
]
},
{
"path": "mods/cullleaves-2.3.2.jar",
"hashes": {
"murmur2": "2412182132"
},
"downloads": [
"https://edge.forgecdn.net/files/3509/388/cullleaves-2.3.2.jar"
]
},
{
"path": "mods/cem-0.6.2.jar",
"hashes": {
"murmur2": "3701570831"
},
"downloads": [
"https://edge.forgecdn.net/files/3440/846/cem-0.6.2.jar"
]
},
{
"path": "mods/DCCH-1.17.x.jar",
"hashes": {
"murmur2": "2109808836"
},
"downloads": [
"https://edge.forgecdn.net/files/3456/37/DCCH-1.17.x.jar"
]
},
{
"path": "mods/dynamic-fps-2.0.6.jar",
"hashes": {
"murmur2": "1834508903"
},
"downloads": [
"https://edge.forgecdn.net/files/3497/287/dynamic-fps-2.0.6.jar"
]
},
{
"path": "mods/enhancedblockentities-0.5+1.17.jar",
"hashes": {
"murmur2": "2100632846"
},
"downloads": [
"https://edge.forgecdn.net/files/3461/725/enhancedblockentities-0.5+1.17.jar"
]
},
{
"path": "mods/EntityCulling-Fabric-1.3.3.jar",
"hashes": {
"murmur2": "3251325506"
},
"downloads": [
"https://edge.forgecdn.net/files/3388/827/EntityCulling-Fabric-1.3.3.jar"
]
},
{
"path": "mods/fabric-api-0.42.1+1.17.jar",
"hashes": {
"murmur2": "1200955640"
},
"downloads": [
"https://edge.forgecdn.net/files/3517/689/fabric-api-0.42.1+1.17.jar"
]
},
{
"path": "mods/fabric-language-kotlin-1.6.5+kotlin.1.5.31.jar",
"hashes": {
"murmur2": "3905405547"
},
"downloads": [
"https://edge.forgecdn.net/files/3477/154/fabric-language-kotlin-1.6.5+kotlin.1.5.31.jar"
]
},
{
"path": "mods/fabrishot-1.5.1.jar",
"hashes": {
"murmur2": "165472990"
},
"downloads": [
"https://edge.forgecdn.net/files/3381/995/fabrishot-1.5.1.jar"
]
},
{
"path": "mods/ferritecore-3.0.3-fabric.jar",
"hashes": {
"murmur2": "3088474633"
},
"downloads": [
"https://edge.forgecdn.net/files/3435/174/ferritecore-3.0.3-fabric.jar"
]
},
{
"path": "mods/hydrogen-fabric-mc1.17.1-0.3.jar",
"hashes": {
"sha512": "db4079c26bf27b38d32ae60a47e7d347e01d43def5987e5c2cb25218e427b2f10f7fcb36f9de5d486a0953637793cd90450f8d2d7ff1a31cf8a90af3794646ad"
},
"downloads": [
"https://cdn.modrinth.com/data/AZomiSrC/versions/mc1.17.1-0.3.1/hydrogen-fabric-mc1.17.1-0.3.jar"
]
},
{
"path": "mods/indium-1.0.0+mc1.17.1.jar",
"hashes": {
"murmur2": "191940847"
},
"downloads": [
"https://edge.forgecdn.net/files/3484/852/indium-1.0.0+mc1.17.1.jar"
]
},
{
"path": "mods/iris-and-sodium-mc1.17-1.1.2+build.9.jar",
"hashes": {
"murmur2": "2018118617"
},
"downloads": [
"https://edge.forgecdn.net/files/3451/773/iris-and-sodium-mc1.17-1.1.2+build.9.jar"
]
},
{
"path": "mods/item-model-fix-1.0.2+1.17.jar",
"hashes": {
"murmur2": "1083414010"
},
"downloads": [
"https://edge.forgecdn.net/files/3344/195/item-model-fix-1.0.2+1.17.jar"
]
},
{
"path": "mods/lambdabettergrass-1.2.1+1.17.jar",
"hashes": {
"murmur2": "3594399257"
},
"downloads": [
"https://edge.forgecdn.net/files/3436/762/lambdabettergrass-1.2.1+1.17.jar"
]
},
{
"path": "mods/lambdynamiclights-2.0.2+1.17.jar",
"hashes": {
"murmur2": "2350402653"
},
"downloads": [
"https://edge.forgecdn.net/files/3409/38/lambdynamiclights-2.0.2+1.17.jar"
]
},
{
"path": "mods/language-reload-1.2.jar",
"hashes": {
"murmur2": "2993088515"
},
"downloads": [
"https://edge.forgecdn.net/files/3510/259/language-reload-1.2.jar"
]
},
{
"path": "mods/lazydfu-0.1.2.jar",
"hashes": {
"murmur2": "2594861637"
},
"downloads": [
"https://edge.forgecdn.net/files/3209/972/lazydfu-0.1.2.jar"
]
},
{
"path": "mods/lithium-fabric-mc1.17.1-0.7.5.jar",
"hashes": {
"murmur2": "1827400379"
},
"downloads": [
"https://edge.forgecdn.net/files/3516/367/lithium-fabric-mc1.17.1-0.7.5.jar"
]
},
{
"path": "mods/littletweaks-1.0.0.jar",
"hashes": {
"murmur2": "3895033168"
},
"downloads": [
"https://edge.forgecdn.net/files/3519/804/littletweaks-1.0.0.jar"
]
},
{
"path": "mods/modmenu-2.0.14.jar",
"hashes": {
"murmur2": "3441524268"
},
"downloads": [
"https://edge.forgecdn.net/files/3479/750/modmenu-2.0.14.jar"
]
},
{
"path": "mods/morechathistory-1.17.1-1.1.0.jar",
"hashes": {
"murmur2": "2712844464"
},
"downloads": [
"https://edge.forgecdn.net/files/3448/302/morechathistory-1.17.1-1.1.0.jar"
]
},
{
"path": "mods/nofade-1.17-2.0.0.jar",
"hashes": {
"murmur2": "1935255380"
},
"downloads": [
"https://edge.forgecdn.net/files/3355/800/nofade-1.17-2.0.0.jar"
]
},
{
"path": "mods/no-potion-offset-1.0.2.jar",
"hashes": {
"murmur2": "2073280837"
},
"downloads": [
"https://edge.forgecdn.net/files/3119/667/no-potion-offset-1.0.2.jar"
]
},
{
"path": "mods/notenoughcrashes-3.7.1+1.17.1-fabric.jar",
"hashes": {
"murmur2": "284933955"
},
"downloads": [
"https://edge.forgecdn.net/files/3509/359/notenoughcrashes-3.7.1+1.17.1-fabric.jar"
]
},
{
"path": "mods/reeses_sodium_options-mc1.17.1-1.2.0.jar",
"hashes": {
"murmur2": "1007265709"
},
"downloads": [
"https://edge.forgecdn.net/files/3433/130/reeses_sodium_options-mc1.17.1-1.2.0.jar"
]
},
{
"path": "mods/slight-gui-modifications-2.0.2.jar",
"hashes": {
"murmur2": "2554437827"
},
"downloads": [
"https://edge.forgecdn.net/files/3512/331/slight-gui-modifications-2.0.2.jar"
]
},
{
"path": "mods/smoothboot-fabric-1.16.5-1.6.0.jar",
"hashes": {
"murmur2": "3205574711"
},
"downloads": [
"https://edge.forgecdn.net/files/3248/104/smoothboot-fabric-1.16.5-1.6.0.jar"
]
},
{
"path": "mods/sodium-extra-mc1.17.1-0.3.5.jar",
"hashes": {
"murmur2": "3924701839"
},
"downloads": [
"https://edge.forgecdn.net/files/3480/453/sodium-extra-mc1.17.1-0.3.5.jar"
]
},
{
"path": "mods/tooltipfix-1.0.4-1.17.1.jar",
"hashes": {
"murmur2": "2352865992"
},
"downloads": [
"https://edge.forgecdn.net/files/3487/571/tooltipfix-1.0.4-1.17.1.jar"
]
},
{
"path": "mods/WI-Zoom-1.3-MC1.17.1.jar",
"hashes": {
"murmur2": "2597724315"
},
"downloads": [
"https://edge.forgecdn.net/files/3379/128/WI-Zoom-1.3-MC1.17.1.jar"
]
},
{
"path": "mods/yosbr-0.1.1.jar",
"hashes": {
"murmur2": "1019026871"
},
"downloads": [
"https://edge.forgecdn.net/files/2934/596/yosbr-0.1.1.jar"
]
}
],
"dependencies": {
"minecraft": "1.17.1",
"fabric-loader": "0.11.7"
}
{
"formatVersion": 1,
"game": "minecraft",
"versionId": "2.4.1",
"name": "Fabulously Optimized",
"summary": "A Fabric-based modpack for Minecraft that focuses on performance and graphics optimizations",
"files": [
{
"path": "mods/advancementinfo-1.17.1-fabric0.36.1-1.2.2.jar",
"hashes": {
"murmur2": "2003017554"
},
"downloads": [
"https://edge.forgecdn.net/files/3532/520/advancementinfo-1.17.1-fabric0.36.1-1.2.2.jar"
]
},
{
"path": "mods/animatica-0.1+1.17.jar",
"hashes": {
"murmur2": "624985466"
},
"downloads": [
"https://edge.forgecdn.net/files/3478/564/animatica-0.1+1.17.jar"
]
},
{
"path": "mods/antighost-1.17.1-fabric0.36.1-1.1.4.jar",
"hashes": {
"murmur2": "685313541"
},
"downloads": [
"https://edge.forgecdn.net/files/3379/961/antighost-1.17.1-fabric0.36.1-1.1.4.jar"
]
},
{
"path": "mods/architectury-2.6.35.jar",
"hashes": {
"murmur2": "1974939410"
},
"downloads": [
"https://edge.forgecdn.net/files/3500/17/architectury-2.6.35.jar"
]
},
{
"path": "mods/bettermounthud-1.1.2.jar",
"hashes": {
"murmur2": "1872359493"
},
"downloads": [
"https://edge.forgecdn.net/files/3380/384/bettermounthud-1.1.2.jar"
]
},
{
"path": "mods/Capes-1.2.2+1.17.jar",
"hashes": {
"murmur2": "3793937648"
},
"downloads": [
"https://edge.forgecdn.net/files/3510/854/Capes-1.2.2+1.17.jar"
]
},
{
"path": "mods/CITResewn-0.8.1.jar",
"hashes": {
"murmur2": "2762477444"
},
"downloads": [
"https://edge.forgecdn.net/files/3498/887/CITResewn-0.8.1.jar"
]
},
{
"path": "mods/cloth-api-2.0.54.jar",
"hashes": {
"murmur2": "2308550397"
},
"downloads": [
"https://edge.forgecdn.net/files/3336/395/cloth-api-2.0.54.jar"
]
},
{
"path": "mods/cloth-config-5.1.40-fabric.jar",
"hashes": {
"murmur2": "617662973"
},
"downloads": [
"https://edge.forgecdn.net/files/3521/267/cloth-config-5.1.40-fabric.jar"
]
},
{
"path": "mods/colormatic-2.3.1+mc.1.17.1.jar",
"hashes": {
"murmur2": "1191722569"
},
"downloads": [
"https://edge.forgecdn.net/files/3522/12/colormatic-2.3.1+mc.1.17.1.jar"
]
},
{
"path": "mods/completeconfig-lib-1.2.0.jar",
"hashes": {
"murmur2": "2957550967"
},
"downloads": [
"https://edge.forgecdn.net/files/3492/921/completeconfig-lib-1.2.0.jar"
]
},
{
"path": "mods/continuity-1.0.2+1.17.jar",
"hashes": {
"murmur2": "1797852615"
},
"downloads": [
"https://edge.forgecdn.net/files/3498/711/continuity-1.0.2+1.17.jar"
]
},
{
"path": "mods/cullleaves-2.3.2.jar",
"hashes": {
"murmur2": "2412182132"
},
"downloads": [
"https://edge.forgecdn.net/files/3509/388/cullleaves-2.3.2.jar"
]
},
{
"path": "mods/cem-0.6.2.jar",
"hashes": {
"murmur2": "3701570831"
},
"downloads": [
"https://edge.forgecdn.net/files/3440/846/cem-0.6.2.jar"
]
},
{
"path": "mods/DCCH-1.17.x.jar",
"hashes": {
"murmur2": "2109808836"
},
"downloads": [
"https://edge.forgecdn.net/files/3456/37/DCCH-1.17.x.jar"
]
},
{
"path": "mods/dynamic-fps-2.0.6.jar",
"hashes": {
"murmur2": "1834508903"
},
"downloads": [
"https://edge.forgecdn.net/files/3497/287/dynamic-fps-2.0.6.jar"
]
},
{
"path": "mods/enhancedblockentities-0.5+1.17.jar",
"hashes": {
"murmur2": "2100632846"
},
"downloads": [
"https://edge.forgecdn.net/files/3461/725/enhancedblockentities-0.5+1.17.jar"
]
},
{
"path": "mods/EntityCulling-Fabric-1.3.3.jar",
"hashes": {
"murmur2": "3251325506"
},
"downloads": [
"https://edge.forgecdn.net/files/3388/827/EntityCulling-Fabric-1.3.3.jar"
]
},
{
"path": "mods/fabric-api-0.42.1+1.17.jar",
"hashes": {
"murmur2": "1200955640"
},
"downloads": [
"https://edge.forgecdn.net/files/3517/689/fabric-api-0.42.1+1.17.jar"
]
},
{
"path": "mods/fabric-language-kotlin-1.6.5+kotlin.1.5.31.jar",
"hashes": {
"murmur2": "3905405547"
},
"downloads": [
"https://edge.forgecdn.net/files/3477/154/fabric-language-kotlin-1.6.5+kotlin.1.5.31.jar"
]
},
{
"path": "mods/fabrishot-1.5.1.jar",
"hashes": {
"murmur2": "165472990"
},
"downloads": [
"https://edge.forgecdn.net/files/3381/995/fabrishot-1.5.1.jar"
]
},
{
"path": "mods/ferritecore-3.0.3-fabric.jar",
"hashes": {
"murmur2": "3088474633"
},
"downloads": [
"https://edge.forgecdn.net/files/3435/174/ferritecore-3.0.3-fabric.jar"
]
},
{
"path": "mods/hydrogen-fabric-mc1.17.1-0.3.jar",
"hashes": {
"sha512": "db4079c26bf27b38d32ae60a47e7d347e01d43def5987e5c2cb25218e427b2f10f7fcb36f9de5d486a0953637793cd90450f8d2d7ff1a31cf8a90af3794646ad"
},
"downloads": [
"https://cdn.modrinth.com/data/AZomiSrC/versions/mc1.17.1-0.3.1/hydrogen-fabric-mc1.17.1-0.3.jar"
]
},
{
"path": "mods/indium-1.0.0+mc1.17.1.jar",
"hashes": {
"murmur2": "191940847"
},
"downloads": [
"https://edge.forgecdn.net/files/3484/852/indium-1.0.0+mc1.17.1.jar"
]
},
{
"path": "mods/iris-and-sodium-mc1.17-1.1.2+build.9.jar",
"hashes": {
"murmur2": "2018118617"
},
"downloads": [
"https://edge.forgecdn.net/files/3451/773/iris-and-sodium-mc1.17-1.1.2+build.9.jar"
]
},
{
"path": "mods/item-model-fix-1.0.2+1.17.jar",
"hashes": {
"murmur2": "1083414010"
},
"downloads": [
"https://edge.forgecdn.net/files/3344/195/item-model-fix-1.0.2+1.17.jar"
]
},
{
"path": "mods/lambdabettergrass-1.2.1+1.17.jar",
"hashes": {
"murmur2": "3594399257"
},
"downloads": [
"https://edge.forgecdn.net/files/3436/762/lambdabettergrass-1.2.1+1.17.jar"
]
},
{
"path": "mods/lambdynamiclights-2.0.2+1.17.jar",
"hashes": {
"murmur2": "2350402653"
},
"downloads": [
"https://edge.forgecdn.net/files/3409/38/lambdynamiclights-2.0.2+1.17.jar"
]
},
{
"path": "mods/language-reload-1.2.jar",
"hashes": {
"murmur2": "2993088515"
},
"downloads": [
"https://edge.forgecdn.net/files/3510/259/language-reload-1.2.jar"
]
},
{
"path": "mods/lazydfu-0.1.2.jar",
"hashes": {
"murmur2": "2594861637"
},
"downloads": [
"https://edge.forgecdn.net/files/3209/972/lazydfu-0.1.2.jar"
]
},
{
"path": "mods/lithium-fabric-mc1.17.1-0.7.5.jar",
"hashes": {
"murmur2": "1827400379"
},
"downloads": [
"https://edge.forgecdn.net/files/3516/367/lithium-fabric-mc1.17.1-0.7.5.jar"
]
},
{
"path": "mods/littletweaks-1.0.0.jar",
"hashes": {
"murmur2": "3895033168"
},
"downloads": [
"https://edge.forgecdn.net/files/3519/804/littletweaks-1.0.0.jar"
]
},
{
"path": "mods/modmenu-2.0.14.jar",
"hashes": {
"murmur2": "3441524268"
},
"downloads": [
"https://edge.forgecdn.net/files/3479/750/modmenu-2.0.14.jar"
]
},
{
"path": "mods/morechathistory-1.17.1-1.1.0.jar",
"hashes": {
"murmur2": "2712844464"
},
"downloads": [
"https://edge.forgecdn.net/files/3448/302/morechathistory-1.17.1-1.1.0.jar"
]
},
{
"path": "mods/nofade-1.17-2.0.0.jar",
"hashes": {
"murmur2": "1935255380"
},
"downloads": [
"https://edge.forgecdn.net/files/3355/800/nofade-1.17-2.0.0.jar"
]
},
{
"path": "mods/no-potion-offset-1.0.2.jar",
"hashes": {
"murmur2": "2073280837"
},
"downloads": [
"https://edge.forgecdn.net/files/3119/667/no-potion-offset-1.0.2.jar"
]
},
{
"path": "mods/notenoughcrashes-4.1.1+1.17.1-fabric.jar",
"hashes": {
"murmur2": "3300367819"
},
"downloads": [
"https://edge.forgecdn.net/files/3531/339/notenoughcrashes-4.1.1+1.17.1-fabric.jar"
]
},
{
"path": "mods/reeses_sodium_options-mc1.17.1-1.2.0.jar",
"hashes": {
"murmur2": "1007265709"
},
"downloads": [
"https://edge.forgecdn.net/files/3433/130/reeses_sodium_options-mc1.17.1-1.2.0.jar"
]
},
{
"path": "mods/slight-gui-modifications-2.0.2.jar",
"hashes": {
"murmur2": "2554437827"
},
"downloads": [
"https://edge.forgecdn.net/files/3512/331/slight-gui-modifications-2.0.2.jar"
]
},
{
"path": "mods/smoothboot-fabric-1.16.5-1.6.0.jar",
"hashes": {
"murmur2": "3205574711"
},
"downloads": [
"https://edge.forgecdn.net/files/3248/104/smoothboot-fabric-1.16.5-1.6.0.jar"
]
},
{
"path": "mods/sodium-extra-mc1.17.1-0.3.5.jar",
"hashes": {
"murmur2": "3924701839"
},
"downloads": [
"https://edge.forgecdn.net/files/3480/453/sodium-extra-mc1.17.1-0.3.5.jar"
]
},
{
"path": "mods/tooltipfix-1.0.4-1.17.1.jar",
"hashes": {
"murmur2": "2352865992"
},
"downloads": [
"https://edge.forgecdn.net/files/3487/571/tooltipfix-1.0.4-1.17.1.jar"
]
},
{
"path": "mods/WI-Zoom-1.3-MC1.17.1.jar",
"hashes": {
"murmur2": "2597724315"
},
"downloads": [
"https://edge.forgecdn.net/files/3379/128/WI-Zoom-1.3-MC1.17.1.jar"
]
},
{
"path": "mods/yosbr-0.1.1.jar",
"hashes": {
"murmur2": "1019026871"
},
"downloads": [
"https://edge.forgecdn.net/files/2934/596/yosbr-0.1.1.jar"
]
}
],
"dependencies": {
"minecraft": "1.17.1",
"fabric-loader": "0.12.5"
}
}

View file

@ -20,6 +20,8 @@ OverrideNativeWorkarounds=false
OverrideWindow=false
PermGen=128
iconKey=pack
lastLaunchTime=1634574367356
name=Fabulously Optimized 2.4.0
lastLaunchTime=1637575892544
lastTimePlayed=24
name=Fabulously Optimized 2.4.1
notes=https://www.curseforge.com/minecraft/modpacks/fabulously-optimized
totalTimePlayed=875

View file

@ -1,5 +1,20 @@
{
"version": 1,
"overrides": {
"advancementinfo": {
"-recommends": {
"modupdater": ""
}
},
"antighost": {
"-recommends": {
"modupdater": ""
}
},
"colormatic": {
"-recommends": {
"quilt-loader": ""
}
}
}
}

View file

@ -5,7 +5,7 @@ mainMenu {
x { it - 2 }
y { it - 20 }
}
text = literal("Fabulously Optimized 2.4.0")
text = literal("Fabulously Optimized 2.4.1")
align = "right"
color = 0xFFFFFF
hoveredColor = 0x55FFFF

View file

@ -18,7 +18,8 @@
"hidden_mods": [
"minecraft",
"indium",
"fabric-language-kotlin"
"fabric-language-kotlin",
"cloth-basic-math"
],
"log_deprecation_warnings": false
}

View file

@ -10,7 +10,7 @@
"fluidAnimationDuration": 400,
"affectsGameMenus": false,
"affectsInventories": false,
"ignoreSlideWhenRedirected": false,
"ignoreSlideWhenRedirected": true,
"ignoreFadeWhenRedirected": false
},
"textFieldModifications": {
@ -61,5 +61,5 @@
},
// Whether GUI should allow right click actions.
"rightClickActions": false,
"satisfyingScreenshots": true
"satisfyingScreenshots": false
}

View file

@ -6,11 +6,15 @@ hash = "c0ea016e992b3093ebf05ecbb099361b0c11e8cc4dc53c81aa959b0a5fc42381"
[[files]]
file = "config/fabric_loader_dependencies.json"
hash = "84b82b6a4610dcf0f2992d3b86a3abfb8748c54ada513020bae4154581f012ea"
hash = "745da5107ecb302f0bdcc3871db964a105f50745730c59882c0e7c3bfbbfe9b0"
[[files]]
file = "config/midnightlib.json"
hash = "8bffacf0777bdc9e35022109e9580583d40fcaa05f0abfed1bf32220a5b39ab3"
[[files]]
file = "config/slightguimodifications/cts.groovy"
hash = "35d14c771ad88489bca62bee751dba9f669988016bfa65b9fc26de26a151bcb9"
hash = "0347867062ec4ddbb97a4826e5808a13c661f7ab2ba017e86b3d385aa954e81b"
[[files]]
file = "config/sodium-mixins.properties"
@ -48,17 +52,13 @@ hash = "2744ebcd3589f1124ab556b12e3d73b878fe89901789fdf18787cca12e6a6c0b"
file = "config/yosbr/config/lambdynlights.toml"
hash = "1a0c50101df35b82a3015882331c4b1b76bec59a05c25cac50bff3547b891f25"
[[files]]
file = "config/yosbr/config/midnightlib.json"
hash = "8bffacf0777bdc9e35022109e9580583d40fcaa05f0abfed1bf32220a5b39ab3"
[[files]]
file = "config/yosbr/config/modmenu.json"
hash = "cf0aaef402dc0b2be5b09f9f9a99f81c9ff64f585e077b0fdad7655b13a6055c"
hash = "363188965154bf65b2151d6695a35c2588ae7b185a4a761e5a1d6b084259d0b2"
[[files]]
file = "config/yosbr/config/slightguimodifications/config.json5"
hash = "c44249c87c48216b9ce39bd233b88e2a5e901fb7589b54cee79ac566bcb0c018"
hash = "7da931e9b7389034de203f2719b99ab74ab8e500a898ad5d563d64f13c501120"
[[files]]
file = "config/yosbr/config/sodium-extra-options.json"
@ -74,7 +74,7 @@ hash = "040239c0e00a49830917b1b2e2332a393b7d90f5366b5e1efd846a51df8b815d"
[[files]]
file = "mods/advancementinfo.toml"
hash = "4bdd914cc09497cbfa0122dab0f888f4bfd8d144a394db1746a592c95667fba7"
hash = "6a8810f580393762531fe79c4af28bf577040f17450e758dfebb1c43cbb5d525"
metafile = true
[[files]]
@ -114,12 +114,12 @@ metafile = true
[[files]]
file = "mods/cloth-config.toml"
hash = "94c221982b03971e906ac09835fae62e95acc7341aaf549cec289ae9f28f15ca"
hash = "1bbb7759542ccebcf1d5157dd889050c371277b8d26f7c1b9b18f0968ad7c33d"
metafile = true
[[files]]
file = "mods/colormatic.toml"
hash = "ed3b4fe8523e09ea329c0c25d11625cc025320feebd8137b1547ef6e9360f826"
hash = "8ce725c32e1c950da3f7f8982b3aec818c71a6d203716d8a0aca78fb01f69987"
metafile = true
[[files]]
@ -254,7 +254,7 @@ metafile = true
[[files]]
file = "mods/not-enough-crashes.toml"
hash = "e11cd0bb2c67e18dd77ea6cbf0a26bc237662057c9854b5ddb58a64c12fa4acb"
hash = "61554b360052d048d2a47a510945a757e2263d19bc72fa239e9b1a5f5ebccd2e"
metafile = true
[[files]]
@ -294,4 +294,4 @@ metafile = true
[[files]]
file = "resourcepacks/Mod Menu Helper.zip"
hash = "44cd88883b1376481973072594ff26a661d11e6839186f1a7c6e876c9677710e"
hash = "095546774e35e6466c659a2236ce497cb7c46465055c699abf100a33b334a963"

View file

@ -1,14 +1,14 @@
name = "AdvancementInfo"
filename = "advancementinfo-1.17.1-fabric0.36.1-1.2.1.jar"
filename = "advancementinfo-1.17.1-fabric0.36.1-1.2.2.jar"
side = "both"
[download]
url = "https://edge.forgecdn.net/files/3379/960/advancementinfo-1.17.1-fabric0.36.1-1.2.1.jar"
url = "https://edge.forgecdn.net/files/3532/520/advancementinfo-1.17.1-fabric0.36.1-1.2.2.jar"
hash-format = "murmur2"
hash = "1687095027"
hash = "2003017554"
[update]
[update.curseforge]
file-id = 3379960
file-id = 3532520
project-id = 403815
release-channel = "beta"

View file

@ -1,14 +1,14 @@
name = "Cloth Config API (Fabric)"
filename = "cloth-config-5.0.38-fabric.jar"
filename = "cloth-config-5.1.40-fabric.jar"
side = "both"
[download]
url = "https://edge.forgecdn.net/files/3413/206/cloth-config-5.0.38-fabric.jar"
url = "https://edge.forgecdn.net/files/3521/267/cloth-config-5.1.40-fabric.jar"
hash-format = "murmur2"
hash = "1640156610"
hash = "617662973"
[update]
[update.curseforge]
file-id = 3413206
file-id = 3521267
project-id = 319057
release-channel = "beta"

View file

@ -1,14 +1,14 @@
name = "Colormatic"
filename = "colormatic-2.3.0+mc.1.17.1.jar"
filename = "colormatic-2.3.1+mc.1.17.1.jar"
side = "both"
[download]
url = "https://edge.forgecdn.net/files/3475/133/colormatic-2.3.0+mc.1.17.1.jar"
url = "https://edge.forgecdn.net/files/3522/12/colormatic-2.3.1+mc.1.17.1.jar"
hash-format = "murmur2"
hash = "686398706"
hash = "1191722569"
[update]
[update.curseforge]
file-id = 3475133
file-id = 3522012
project-id = 325092
release-channel = "beta"

View file

@ -1,14 +1,14 @@
name = "Not Enough Crashes (Fabric)"
filename = "notenoughcrashes-3.7.1+1.17.1-fabric.jar"
filename = "notenoughcrashes-4.1.1+1.17.1-fabric.jar"
side = "both"
[download]
url = "https://edge.forgecdn.net/files/3509/359/notenoughcrashes-3.7.1+1.17.1-fabric.jar"
url = "https://edge.forgecdn.net/files/3531/339/notenoughcrashes-4.1.1+1.17.1-fabric.jar"
hash-format = "murmur2"
hash = "284933955"
hash = "3300367819"
[update]
[update.curseforge]
file-id = 3509359
file-id = 3531339
project-id = 353890
release-channel = "beta"

View file

@ -3,8 +3,8 @@ name = "Fabulously Optimized"
[index]
file = "index.toml"
hash-format = "sha256"
hash = "da06f1acdf6c76cd746f09eb8cc448e64a033c8eb493f03ff1691855578ae0af"
hash = "234ff88afcefe56d8adf985fd4a8e70bc43cd88b4ab8ce3fa81274111ae8de32"
[versions]
fabric = "0.11.7"
fabric = "0.12.5"
minecraft = "1.17.1"