From 7a596d464d21dc0ef46e0fa08c5a81c1fd6cf3c7 Mon Sep 17 00:00:00 2001 From: Madis Date: Fri, 7 Jan 2022 20:08:00 +0200 Subject: [PATCH] 3.1.0-alpha.7, Modrinth changes --- CHANGELOG.md | 5 + CLI tools/Curseforge to Packwiz-Modrinth.py | 41 + CLI tools/Curseforge to Packwiz.py | 33 - CLI tools/Packwiz to Modrinth.py | 105 -- Curseforge/manifest.json | 32 +- Curseforge/modlist.html | 6 +- Modrinth/modrinth.index.json | 1037 ++++++++++------- .../Fabulously Optimized x.y.z/instance.cfg | 2 +- Packwiz/1.16.5/pack.toml | 1 + Packwiz/1.17.1/.packwizignore | 6 +- Packwiz/1.17.1/pack.toml | 1 + Packwiz/1.18.1/.packwizignore | 6 +- .../config/slightguimodifications/cts.groovy | 2 +- Packwiz/1.18.1/index.toml | 12 +- Packwiz/1.18.1/mods/animatica.toml | 8 +- Packwiz/1.18.1/mods/colormatic.toml | 8 +- Packwiz/1.18.1/mods/fabric-api.toml | 8 +- Packwiz/1.18.1/mods/irisshaders.toml | 8 +- .../1.18.1/mods/reeses-sodium-options.toml | 8 +- Packwiz/1.18.1/pack.toml | 3 +- Packwiz/1.18/.packwizignore | 6 +- Packwiz/1.18/pack.toml | 1 + README.md | 2 +- 23 files changed, 712 insertions(+), 629 deletions(-) create mode 100644 CLI tools/Curseforge to Packwiz-Modrinth.py delete mode 100644 CLI tools/Curseforge to Packwiz.py delete mode 100644 CLI tools/Packwiz to Modrinth.py mode change 100644 => 120000 Packwiz/1.17.1/.packwizignore mode change 100644 => 120000 Packwiz/1.18.1/.packwizignore mode change 100644 => 120000 Packwiz/1.18/.packwizignore diff --git a/CHANGELOG.md b/CHANGELOG.md index b795cbfd3..06e370343 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ This is the changelog for the Fabric modpack [Fabulously Optimized](https://www. Notes: * See an error about "cloth-client-events-v0.mixins.json"? This is known, simply launch again until I find a fix. See [#192](https://github.com/Fabulously-Optimized/fabulously-optimized/issues/192) +### 3.1.0-alpha.6 (2022-01-07) + +* Iris got a performance update, the game should run better regardless of whether you have shaders enabled. +* Updated Animatica, Colormatic, Fabric API, Iris Shaders, Reese's Sodium Options + ### 3.1.0-alpha.6 (2022-01-02) Happy new year, time to test Phosphor! [Vote here!](https://github.com/Fabulously-Optimized/fabulously-optimized/issues/21#issuecomment-1003749296) diff --git a/CLI tools/Curseforge to Packwiz-Modrinth.py b/CLI tools/Curseforge to Packwiz-Modrinth.py new file mode 100644 index 000000000..ec21ca675 --- /dev/null +++ b/CLI tools/Curseforge to Packwiz-Modrinth.py @@ -0,0 +1,41 @@ +import os +from zipfile import ZipFile + +user_path = os.path.expanduser("~") +git_path = user_path + "/Documents/GitHub/fabulously-optimized/" +version_no = "1.18.1" +packwiz_path = git_path + "Packwiz/" + version_no + "/" +pw_exe_path = "..\packwiz.exe" +mods_path = packwiz_path + "mods" + +mod_files = os.listdir(mods_path) +for item in mod_files: + os.remove( os.path.join(mods_path, item)) + +def extract_file(from_zip, from_file, to_path, from_desc, to_desc): + with ZipFile(from_zip, 'r') as zip: + if from_file in zip.namelist(): + zip.extract(from_file, to_path) + print("Copied " + from_desc + " to " + to_desc) + else: + print("Skipped " + from_desc + " copying to " + to_desc + ", didn't exist") + + +os.chdir(packwiz_path) +cf_zip_path = input("Please drag the Curseforge zip file here: ")[3:][:-1] # Because dragging the file adds "& " and double quotes +os.system(pw_exe_path + " curseforge import \"" + cf_zip_path + "\"") +#os.system(pw_exe_path + " remove hydrogen") +#os.system(pw_exe_path + " mr install hydrogen") +os.system(pw_exe_path + " refresh") + +# Copy fresh manifest/modlist to git +extract_file(cf_zip_path, "manifest.json", git_path + "Curseforge", "Curseforge manifest.json", "Git") +extract_file(cf_zip_path, "modlist.html", git_path + "Curseforge", "Curseforge modlist.html", "Git") + +# Export Modrinth pack and manifest +os.system(pw_exe_path + " modrinth export") +for pack in os.listdir(packwiz_path): + if pack.endswith('.mrpack'): + extract_file(packwiz_path + "/" + pack, "modrinth.index.json", git_path + "/" + "Modrinth", "Modrinth manifest", "Git") + os.replace(packwiz_path + "/" + pack, os.path.expanduser("~/Desktop") + "/" + pack) + print("Moved " + pack + " to desktop") \ No newline at end of file diff --git a/CLI tools/Curseforge to Packwiz.py b/CLI tools/Curseforge to Packwiz.py deleted file mode 100644 index d19c8967a..000000000 --- a/CLI tools/Curseforge to Packwiz.py +++ /dev/null @@ -1,33 +0,0 @@ -import os, shutil -from zipfile import ZipFile - -user_path = os.path.expanduser("~") -git_path = user_path + "/Documents/GitHub/fabulously-optimized/" -version_no = "1.18.1" -packwiz_path = git_path + "Packwiz/" + version_no + "/" -exe_path = "..\packwiz.exe" -mods_path = packwiz_path + "mods" - -mod_files = os.listdir(mods_path) -for item in mod_files: - os.remove( os.path.join(mods_path, item)) - -def extract_file(from_file, to_path, from_desc, to_desc): - with ZipFile(cf_zip_path, 'r') as zip: - if from_file in zip.namelist(): - zip.extract(from_file, to_path) - print("Copied " + from_desc + " to " + to_desc) - else: - print("Skipped " + from_desc + " copying to " + to_desc + ", didn't exist") - - -os.chdir(packwiz_path) -cf_zip_path = input("Please drag the Curseforge zip file here: ")[3:][:-1] # Because dragging the file adds "& " and double quotes -os.system(exe_path + " curseforge import \"" + cf_zip_path + "\"") -#os.system(exe_path + " remove hydrogen") -#os.system(exe_path + " mr install hydrogen") -os.system(exe_path + " refresh") - -# Copy fresh manifest/modlist to git -extract_file("manifest.json", git_path + "Curseforge", "Curseforge manifest.json", "Git") -extract_file("modlist.html", git_path + "Curseforge", "Curseforge modlist.html", "Git") \ No newline at end of file diff --git a/CLI tools/Packwiz to Modrinth.py b/CLI tools/Packwiz to Modrinth.py deleted file mode 100644 index fb0e30beb..000000000 --- a/CLI tools/Packwiz to Modrinth.py +++ /dev/null @@ -1,105 +0,0 @@ -# Original by https://github.com/RozeFound, modified by Madis0 - -from pathlib import Path - -import pkg_resources as dist - -try: dist.require(['tomli']) # python -m pip install tomli -except dist.DistributionNotFound as Error: - exit(Error.report() + '\nThe following dependency is missing: {}"'.format(Error.req)) - -from tomli import load as parse_toml - -class ModrinthManager(object): - - def __init__(self, packwiz_folder:Path, output_folder:Path) -> None: - - pack_summary = "A Fabric-based modpack for Minecraft that focuses on performance and graphics optimizations" - - self.root_dir = packwiz_folder - self.output_dir = output_folder if output_folder else Path() - - with open(self.root_dir / "pack.toml") as file: - pack_info = parse_toml(file) - - self.index = { - "formatVersion": int(1), - "game": "minecraft", - "versionId": pack_info['version'] if 'version' in pack_info else input("Specify pack version: "), - "name": pack_info['name'], # Can be optional - "summary": pack_summary, # input("Describe your pack: "), - "files": [], - "dependencies": { - "minecraft": pack_info['versions']['minecraft'] - } - } - - if 'fabric' in pack_info['versions']: self.index['dependencies']['fabric-loader'] = pack_info['versions']['fabric'] - elif 'forge' in pack_info['versions']: self.index['dependencies']['forge'] = pack_info['versions']['forge'] - - from zipfile import ZipFile - self.zip = ZipFile(self.output_dir / (self.index['name'] + " " + self.index['versionId'] + " Modrinth.mrpack"), "w") - - super().__init__() - - def __del__(self): - - from json import dumps - - self.zip.writestr("modrinth.index.json", dumps(self.index, indent=4)) - self.zip.close() - - def add_override(self, path:Path): - - override_dir = Path("overrides") - relative_path = path.relative_to(self.root_dir) - self.zip.write(path, override_dir / relative_path) - - def add_mod(self, path:Path): - - mods_dir = Path("mods") - - with open(path) as file: - mod_info = parse_toml(file) - - mod_index = { - "path": mods_dir.joinpath(mod_info['filename']).as_posix(), - "hashes": {mod_info['download']['hash-format']: mod_info['download']['hash']}, - "downloads": [mod_info['download']['url']] - } - - self.index['files'].append(mod_index) - -def main(): - - from argparse import ArgumentParser - parser = ArgumentParser(description="Python script for converting packwiz to modrinth modpack format") - parser.add_argument('-i', '--input', dest='input_dir', type=Path, help='Specify packwiz pack directory', required=True) - parser.add_argument('-o', '--output', dest='output_dir', type=Path, help='Specify output directory (optional)') - - git_path = Path.home() / "Documents/GitHub/fabulously-optimized" - version_no = "1.18.1" - packwiz_path = git_path / "Packwiz" / version_no - modrinth_path = git_path / "Modrinth" - - args = parser.parse_args(['-i', str(packwiz_path), - '-o', str(Path.home() / "Desktop")]) - - manager = ModrinthManager(args.input_dir, args.output_dir) - - with open(args.input_dir / "index.toml") as file: - index = parse_toml(file) - - for file in index['files']: - if 'metafile' in file and file['metafile'] is True: - manager.add_mod(args.input_dir / file['file']) - else: manager.add_override(args.input_dir / file['file']) - - # Export index.json to git - - from json import dump - with open(modrinth_path / "modrinth.index.json", "w") as file: - dump(manager.index, file, indent = 4) - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/Curseforge/manifest.json b/Curseforge/manifest.json index 671c8979f..90fbe448d 100644 --- a/Curseforge/manifest.json +++ b/Curseforge/manifest.json @@ -11,7 +11,7 @@ "manifestType": "minecraftModpack", "manifestVersion": 1, "name": "Fabulously Optimized", - "version": "3.1.0-alpha.6", + "version": "3.1.0-alpha.7", "author": "robotkoer", "files": [ { @@ -26,7 +26,7 @@ }, { "projectID": 306612, - "fileID": 3577046, + "fileID": 3595229, "required": true }, { @@ -50,13 +50,13 @@ "required": true }, { - "projectID": 372124, - "fileID": 3573395, + "projectID": 399798, + "fileID": 3573935, "required": true }, { - "projectID": 399798, - "fileID": 3573935, + "projectID": 372124, + "fileID": 3573395, "required": true }, { @@ -66,7 +66,7 @@ }, { "projectID": 511319, - "fileID": 3578930, + "fileID": 3596724, "required": true }, { @@ -116,7 +116,7 @@ }, { "projectID": 533006, - "fileID": 3577480, + "fileID": 3594396, "required": true }, { @@ -205,13 +205,13 @@ "required": true }, { - "projectID": 455508, - "fileID": 3558900, + "projectID": 452768, + "fileID": 3550935, "required": true }, { - "projectID": 452768, - "fileID": 3550935, + "projectID": 455508, + "fileID": 3596182, "required": true }, { @@ -230,13 +230,13 @@ "required": true }, { - "projectID": 325092, - "fileID": 3549774, + "projectID": 360438, + "fileID": 3590908, "required": true }, { - "projectID": 360438, - "fileID": 3590908, + "projectID": 325092, + "fileID": 3591953, "required": true }, { diff --git a/Curseforge/modlist.html b/Curseforge/modlist.html index 772cd6223..f98903166 100644 --- a/Curseforge/modlist.html +++ b/Curseforge/modlist.html @@ -6,8 +6,8 @@
  • ToolTipFix (by Kyrptonaught)
  • Not Enough Crashes (Fabric) (by NatanFudge)
  • Language Reload (by Jerozgen)
  • -
  • Phosphor (Fabric) (by jellysquid3_)
  • Item Model Fix (Fabric) (by Pepper_Bell)
  • +
  • Phosphor (Fabric) (by jellysquid3_)
  • Fabrishot (by ramidzkh)
  • Reese's Sodium Options (by FlashyReese)
  • Borderless Mining (by comp500)
  • @@ -37,12 +37,12 @@
  • Don't Clear Chat History (by anar4732)
  • LambDynamicLights (by LambdAurora)
  • Dynamic FPS (by juliand665)
  • -
  • Iris Shaders (by coderbot)
  • No Fade (by UltimateBoomer)
  • +
  • Iris Shaders (by coderbot)
  • Cloth Config API (Fabric) (by shedaniel)
  • CompleteConfig (by Lortseam_)
  • Your Options Shall Be Respected (YOSBR) (by shedaniel)
  • -
  • Colormatic (by kwertiTheCats)
  • Lithium (Fabric) (by jellysquid3_)
  • +
  • Colormatic (by kwertiTheCats)
  • Indium (by comp500)
  • diff --git a/Modrinth/modrinth.index.json b/Modrinth/modrinth.index.json index 614d7b67f..b166546bf 100644 --- a/Modrinth/modrinth.index.json +++ b/Modrinth/modrinth.index.json @@ -1,427 +1,610 @@ -{ - "formatVersion": 1, - "game": "minecraft", - "versionId": "3.1.0-alpha.6", - "name": "Fabulously Optimized", - "summary": "A Fabric-based modpack for Minecraft that focuses on performance and graphics optimizations", - "files": [ - { - "path": "mods/advancementinfo-1.18-fabric0.43.1-1.3.jar", - "hashes": { - "murmur2": "4109430737" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3543/420/advancementinfo-1.18-fabric0.43.1-1.3.jar" - ] - }, - { - "path": "mods/animatica-0.2+1.18.jar", - "hashes": { - "murmur2": "1842450262" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3577/480/animatica-0.2+1.18.jar" - ] - }, - { - "path": "mods/antighost-1.18-fabric0.43.1-1.1.4.jar", - "hashes": { - "murmur2": "3690634280" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3543/423/antighost-1.18-fabric0.43.1-1.1.4.jar" - ] - }, - { - "path": "mods/architectury-3.4.9.jar", - "hashes": { - "murmur2": "3753628334" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3587/337/architectury-3.4.9.jar" - ] - }, - { - "path": "mods/bettermounthud-1.1.3.jar", - "hashes": { - "murmur2": "1229323412" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3556/489/bettermounthud-1.1.3.jar" - ] - }, - { - "path": "mods/borderless-mining-1.1.1+1.18.jar", - "hashes": { - "murmur2": "749412091" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3549/245/borderless-mining-1.1.1+1.18.jar" - ] - }, - { - "path": "mods/Capes-1.2.2+1.18.jar", - "hashes": { - "murmur2": "2842358990" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3543/238/Capes-1.2.2+1.18.jar" - ] - }, - { - "path": "mods/CITResewn-0.8.2+1.18.1.jar", - "hashes": { - "murmur2": "2401828346" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3586/968/CITResewn-0.8.2+1.18.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-6.1.48-fabric.jar", - "hashes": { - "murmur2": "2178376205" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3559/638/cloth-config-6.1.48-fabric.jar" - ] - }, - { - "path": "mods/colormatic-2.4.0+mc.1.18.jar", - "hashes": { - "murmur2": "2915827074" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3549/774/colormatic-2.4.0+mc.1.18.jar" - ] - }, - { - "path": "mods/completeconfig-lib-1.3.3.jar", - "hashes": { - "murmur2": "4163740095" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3555/13/completeconfig-lib-1.3.3.jar" - ] - }, - { - "path": "mods/continuity-1.0.3+1.18.jar", - "hashes": { - "murmur2": "2946885067" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3549/420/continuity-1.0.3+1.18.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.7.0.jar", - "hashes": { - "murmur2": "3362249222" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3561/474/cem-0.7.0.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.18.jar", - "hashes": { - "murmur2": "138218904" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3557/31/enhancedblockentities-0.5+1.18.jar" - ] - }, - { - "path": "mods/EntityCulling-Fabric-1.3.3.jar", - "hashes": { - "murmur2": "91561999" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3523/465/EntityCulling-Fabric-1.3.3.jar" - ] - }, - { - "path": "mods/fabric-api-0.45.0+1.18.jar", - "hashes": { - "murmur2": "3382045089" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3577/46/fabric-api-0.45.0+1.18.jar" - ] - }, - { - "path": "mods/fabric-language-kotlin-1.7.1+kotlin.1.6.10.jar", - "hashes": { - "murmur2": "2171328116" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3573/712/fabric-language-kotlin-1.7.1+kotlin.1.6.10.jar" - ] - }, - { - "path": "mods/fabrishot-1.6.0.jar", - "hashes": { - "murmur2": "1467117810" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3542/922/fabrishot-1.6.0.jar" - ] - }, - { - "path": "mods/fastopenlinksandfolders-1.0.1.jar", - "hashes": { - "murmur2": "3808314323" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3590/993/fastopenlinksandfolders-1.0.1.jar" - ] - }, - { - "path": "mods/ferritecore-4.0.0-fabric.jar", - "hashes": { - "murmur2": "4229292133" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3550/48/ferritecore-4.0.0-fabric.jar" - ] - }, - { - "path": "mods/indium-1.0.2-alpha1+mc1.18.jar", - "hashes": { - "murmur2": "3058950694" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3542/434/indium-1.0.2-alpha1+mc1.18.jar" - ] - }, - { - "path": "mods/iris-mc1.18.1-1.1.3.jar", - "hashes": { - "murmur2": "3998045195" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3558/900/iris-mc1.18.1-1.1.3.jar" - ] - }, - { - "path": "mods/item-model-fix-1.0.3+1.18.jar", - "hashes": { - "murmur2": "1104738622" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3573/935/item-model-fix-1.0.3+1.18.jar" - ] - }, - { - "path": "mods/lambdabettergrass-1.2.2+1.17.jar", - "hashes": { - "murmur2": "2859900242" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3584/355/lambdabettergrass-1.2.2+1.17.jar" - ] - }, - { - "path": "mods/lambdynamiclights-2.1.0+1.17.jar", - "hashes": { - "murmur2": "1361082460" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3541/670/lambdynamiclights-2.1.0+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.18.1-0.7.7.jar", - "hashes": { - "murmur2": "2688647578" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3590/908/lithium-fabric-mc1.18.1-0.7.7.jar" - ] - }, - { - "path": "mods/modmenu-3.0.1.jar", - "hashes": { - "murmur2": "3673623205" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3570/652/modmenu-3.0.1.jar" - ] - }, - { - "path": "mods/morechathistory-1.18-1.1.0.jar", - "hashes": { - "murmur2": "2459987684" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3545/709/morechathistory-1.18-1.1.0.jar" - ] - }, - { - "path": "mods/nofade-1.18-2.0.1.jar", - "hashes": { - "murmur2": "4017265390" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3550/935/nofade-1.18-2.0.1.jar" - ] - }, - { - "path": "mods/no-telemetry-1.3.0.jar", - "hashes": { - "murmur2": "2404469153" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3549/361/no-telemetry-1.3.0.jar" - ] - }, - { - "path": "mods/notenoughcrashes-4.1.3+1.18.1-fabric.jar", - "hashes": { - "murmur2": "1758673091" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3578/934/notenoughcrashes-4.1.3+1.18.1-fabric.jar" - ] - }, - { - "path": "mods/phosphor-fabric-mc1.18.x-0.8.1.jar", - "hashes": { - "murmur2": "535994915" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3573/395/phosphor-fabric-mc1.18.x-0.8.1.jar" - ] - }, - { - "path": "mods/reeses_sodium_options-mc1.18.1-1.2.4.jar", - "hashes": { - "murmur2": "3255020958" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3578/930/reeses_sodium_options-mc1.18.1-1.2.4.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.18-1.7.0.jar", - "hashes": { - "murmur2": "853025149" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3549/723/smoothboot-fabric-1.18-1.7.0.jar" - ] - }, - { - "path": "mods/sodium-extra-mc1.18-0.3.7.jar", - "hashes": { - "murmur2": "38126557" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3542/997/sodium-extra-mc1.18-0.3.7.jar" - ] - }, - { - "path": "mods/sodium-fabric-mc1.18-0.4.0-alpha5+build.9.jar", - "hashes": { - "murmur2": "2315531696" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3542/74/sodium-fabric-mc1.18-0.4.0-alpha5+build.9.jar" - ] - }, - { - "path": "mods/tooltipfix-1.0.4-1.18.jar", - "hashes": { - "murmur2": "4269860137" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3543/273/tooltipfix-1.0.4-1.18.jar" - ] - }, - { - "path": "mods/WI-Zoom-1.3-MC1.18.1.jar", - "hashes": { - "murmur2": "2361468328" - }, - "downloads": [ - "https://edge.forgecdn.net/files/3557/414/WI-Zoom-1.3-MC1.18.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.18.1", - "fabric-loader": "0.12.12" - } -} \ No newline at end of file +{ + "formatVersion": 1, + "game": "minecraft", + "versionId": "3.1.0-alpha.7", + "name": "Fabulously Optimized", + "files": [ + { + "path": "mods/advancementinfo-1.18-fabric0.43.1-1.3.jar", + "hashes": { + "sha1": "2ff0ac3fc5f6a2e274741cfa4f55eea8044161bd" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3543/420/advancementinfo-1.18-fabric0.43.1-1.3.jar" + ] + }, + { + "path": "mods/animatica-0.3+1.18.jar", + "hashes": { + "sha1": "6b384abe9836f17b6287c2bd22fb85189f9101eb" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3594/396/animatica-0.3+1.18.jar" + ] + }, + { + "path": "mods/antighost-1.18-fabric0.43.1-1.1.4.jar", + "hashes": { + "sha1": "619e250c133106bacc3e3b560839bd4b324dfda8" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3543/423/antighost-1.18-fabric0.43.1-1.1.4.jar" + ] + }, + { + "path": "mods/architectury-3.4.9.jar", + "hashes": { + "sha1": "81da7576040fecc1bbe3927ab199a6565e34b386" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3587/337/architectury-3.4.9.jar" + ] + }, + { + "path": "mods/bettermounthud-1.1.3.jar", + "hashes": { + "sha1": "9fcf66bda29872bbd7ccc3ee7acd5c8d17322cad" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3556/489/bettermounthud-1.1.3.jar" + ] + }, + { + "path": "mods/borderless-mining-1.1.1+1.18.jar", + "hashes": { + "sha1": "0fe49bcdb499f7cd68bf5666e5893bfa7edd04ee" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3549/245/borderless-mining-1.1.1+1.18.jar" + ] + }, + { + "path": "mods/Capes-1.2.2+1.18.jar", + "hashes": { + "sha1": "34a9986cc8ee21a50b8ff3d47d4e73c1328f996c" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3543/238/Capes-1.2.2+1.18.jar" + ] + }, + { + "path": "mods/CITResewn-0.8.2+1.18.1.jar", + "hashes": { + "sha1": "a815d37530f35f681f513c3783fadb3dd615dd1c" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3586/968/CITResewn-0.8.2+1.18.1.jar" + ] + }, + { + "path": "mods/cloth-api-2.0.54.jar", + "hashes": { + "sha1": "f537a052c8e4351ec391e8126d106248a1f9336b" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3336/395/cloth-api-2.0.54.jar" + ] + }, + { + "path": "mods/cloth-config-6.1.48-fabric.jar", + "hashes": { + "sha1": "c60956513db9fbb068bcc2bc439479b0e786f341" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3559/638/cloth-config-6.1.48-fabric.jar" + ] + }, + { + "path": "mods/colormatic-3.0.0+mc.1.18.jar", + "hashes": { + "sha1": "13ec95f1a109daf71873357d2691c113da08657c" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3591/953/colormatic-3.0.0+mc.1.18.jar" + ] + }, + { + "path": "mods/completeconfig-lib-1.3.3.jar", + "hashes": { + "sha1": "bdf33e87d89872fd0c2b6992cd467c6777e75e42" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3555/13/completeconfig-lib-1.3.3.jar" + ] + }, + { + "path": "mods/continuity-1.0.3+1.18.jar", + "hashes": { + "sha1": "1d09ae500d2f24112c4c5bc6f00f05bbcc1a0f72" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3549/420/continuity-1.0.3+1.18.jar" + ] + }, + { + "path": "mods/cullleaves-2.3.2.jar", + "hashes": { + "sha1": "9bc9c61f0a7dc6c765118a0527850b91847608cb" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3509/388/cullleaves-2.3.2.jar" + ] + }, + { + "path": "mods/cem-0.7.0.jar", + "hashes": { + "sha1": "91c1a2ad7743118cc44d56a92f358ae09f4f8ba1" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3561/474/cem-0.7.0.jar" + ] + }, + { + "path": "mods/DCCH-1.17.x.jar", + "hashes": { + "sha1": "61d700268df2058411dc414ee3687b5766d7a2d3" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3456/37/DCCH-1.17.x.jar" + ] + }, + { + "path": "mods/dynamic-fps-2.0.6.jar", + "hashes": { + "sha1": "db76cb84fe9abe9301e29a49457c030d6e54d948" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3497/287/dynamic-fps-2.0.6.jar" + ] + }, + { + "path": "mods/enhancedblockentities-0.5+1.18.jar", + "hashes": { + "sha1": "c7111f560caf965c18a13edcfbe789a87cf904f4" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3557/31/enhancedblockentities-0.5+1.18.jar" + ] + }, + { + "path": "mods/EntityCulling-Fabric-1.3.3.jar", + "hashes": { + "sha1": "17e958986004107f980fe17fbe902abffb662a1a" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3523/465/EntityCulling-Fabric-1.3.3.jar" + ] + }, + { + "path": "mods/fabric-api-0.45.2+1.18.jar", + "hashes": { + "sha1": "4101b6e80e42fcf766d0c7a13555ff51593e492c" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3595/229/fabric-api-0.45.2+1.18.jar" + ] + }, + { + "path": "mods/fabric-language-kotlin-1.7.1+kotlin.1.6.10.jar", + "hashes": { + "sha1": "a91c87f016431f684436182b7e993fdfe941b173" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3573/712/fabric-language-kotlin-1.7.1+kotlin.1.6.10.jar" + ] + }, + { + "path": "mods/fabrishot-1.6.0.jar", + "hashes": { + "sha1": "d715dea2c87107167a507bcab05373a099d2dd60" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3542/922/fabrishot-1.6.0.jar" + ] + }, + { + "path": "mods/fastopenlinksandfolders-1.0.1.jar", + "hashes": { + "sha1": "4e4128d2d6c720e448e50cd6feec53d60ae29fb5" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3590/993/fastopenlinksandfolders-1.0.1.jar" + ] + }, + { + "path": "mods/ferritecore-4.0.0-fabric.jar", + "hashes": { + "sha1": "e29e1f3991ea94a161eebd9faf68f9d489d588f3" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3550/48/ferritecore-4.0.0-fabric.jar" + ] + }, + { + "path": "mods/indium-1.0.2-alpha1+mc1.18.jar", + "hashes": { + "sha1": "a5e83255527efd728981718c50772bf41e1c8edb" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3542/434/indium-1.0.2-alpha1+mc1.18.jar" + ] + }, + { + "path": "mods/iris-mc1.18.1-1.1.4.jar", + "hashes": { + "sha1": "5dfe1affa406091301ea6d920b9b365cbc416199" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3596/182/iris-mc1.18.1-1.1.4.jar" + ] + }, + { + "path": "mods/item-model-fix-1.0.3+1.18.jar", + "hashes": { + "sha1": "2aa679f2dc887e2ce45d55fffe67af36250b4841" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3573/935/item-model-fix-1.0.3+1.18.jar" + ] + }, + { + "path": "mods/lambdabettergrass-1.2.2+1.17.jar", + "hashes": { + "sha1": "7fef2f1d2c610b9d49721f3e297206c18f9dd0d0" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3584/355/lambdabettergrass-1.2.2+1.17.jar" + ] + }, + { + "path": "mods/lambdynamiclights-2.1.0+1.17.jar", + "hashes": { + "sha1": "812fdc41518b786f05d72de4017c16c88a3e2ea6" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3541/670/lambdynamiclights-2.1.0+1.17.jar" + ] + }, + { + "path": "mods/language-reload-1.2.jar", + "hashes": { + "sha1": "1590b32c7f611b522098f0dee252ee15e21e74b5" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3510/259/language-reload-1.2.jar" + ] + }, + { + "path": "mods/lazydfu-0.1.2.jar", + "hashes": { + "sha1": "2efec5781f1271bdcdae462eee402ccb97bff6fe" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3209/972/lazydfu-0.1.2.jar" + ] + }, + { + "path": "mods/lithium-fabric-mc1.18.1-0.7.7.jar", + "hashes": { + "sha1": "8eaffcb994e67ac7b3fd2efa526f7721f8327d11" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3590/908/lithium-fabric-mc1.18.1-0.7.7.jar" + ] + }, + { + "path": "mods/modmenu-3.0.1.jar", + "hashes": { + "sha1": "5b7328a666250330b3dd6a7a5190783d618a0307" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3570/652/modmenu-3.0.1.jar" + ] + }, + { + "path": "mods/morechathistory-1.18-1.1.0.jar", + "hashes": { + "sha1": "378a6a5b02f45feff9d55b28be55d36474fca77f" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3545/709/morechathistory-1.18-1.1.0.jar" + ] + }, + { + "path": "mods/nofade-1.18-2.0.1.jar", + "hashes": { + "sha1": "76951fe09b742ba0ca07acc7c54e4c3760157071" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3550/935/nofade-1.18-2.0.1.jar" + ] + }, + { + "path": "mods/no-telemetry-1.3.0.jar", + "hashes": { + "sha1": "0aa4244d3f97006cb4bacbdefbd9ea41e17f1400" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3549/361/no-telemetry-1.3.0.jar" + ] + }, + { + "path": "mods/notenoughcrashes-4.1.3+1.18.1-fabric.jar", + "hashes": { + "sha1": "9d0bffe87dbdf9322c4faedb00698ce3ec791ed3" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3578/934/notenoughcrashes-4.1.3+1.18.1-fabric.jar" + ] + }, + { + "path": "mods/phosphor-fabric-mc1.18.x-0.8.1.jar", + "hashes": { + "sha1": "9b826d21b9cd999853a57c76b0c47ee4d9161dc9" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3573/395/phosphor-fabric-mc1.18.x-0.8.1.jar" + ] + }, + { + "path": "mods/reeses_sodium_options-mc1.18.1-1.3.0.jar", + "hashes": { + "sha1": "79d6546bbae78836c42e3a880597a700d6c403f8" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3596/724/reeses_sodium_options-mc1.18.1-1.3.0.jar" + ] + }, + { + "path": "mods/slight-gui-modifications-2.0.2.jar", + "hashes": { + "sha1": "1e0167bec3b952eaf8dd8b6578c15cf852f6c999" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3512/331/slight-gui-modifications-2.0.2.jar" + ] + }, + { + "path": "mods/smoothboot-fabric-1.18-1.7.0.jar", + "hashes": { + "sha1": "b9747389234b3bc4fa04d7d5b4c05e606e2d1abe" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3549/723/smoothboot-fabric-1.18-1.7.0.jar" + ] + }, + { + "path": "mods/sodium-extra-mc1.18-0.3.7.jar", + "hashes": { + "sha1": "058b2d44f3f34215144c3c7efa306b7cc869ca21" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3542/997/sodium-extra-mc1.18-0.3.7.jar" + ] + }, + { + "path": "mods/sodium-fabric-mc1.18-0.4.0-alpha5+build.9.jar", + "hashes": { + "sha1": "1af975fd055377f419baccd1784a3b2ae252de66" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3542/74/sodium-fabric-mc1.18-0.4.0-alpha5+build.9.jar" + ] + }, + { + "path": "mods/tooltipfix-1.0.4-1.18.jar", + "hashes": { + "sha1": "16b844c45ce0e4f1159ff51739479e8747a64d84" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3543/273/tooltipfix-1.0.4-1.18.jar" + ] + }, + { + "path": "mods/WI-Zoom-1.3-MC1.18.1.jar", + "hashes": { + "sha1": "a669e6e97ba7850b09d10e50ef6a09eff93f8d9e" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/3557/414/WI-Zoom-1.3-MC1.18.1.jar" + ] + }, + { + "path": "mods/yosbr-0.1.1.jar", + "hashes": { + "sha1": "0643830cab952fc96872702e681b863b550c8530" + }, + "env": { + "client": "required", + "server": "required" + }, + "downloads": [ + "https://edge.forgecdn.net/files/2934/596/yosbr-0.1.1.jar" + ] + } + ], + "dependencies": { + "fabric-loader": "0.12.12", + "minecraft": "1.18.1" + } +} diff --git a/MultiMC/Fabulously Optimized x.y.z/instance.cfg b/MultiMC/Fabulously Optimized x.y.z/instance.cfg index 134b421f1..8fbdd2368 100644 --- a/MultiMC/Fabulously Optimized x.y.z/instance.cfg +++ b/MultiMC/Fabulously Optimized x.y.z/instance.cfg @@ -5,5 +5,5 @@ MinMemAlloc=512 OverrideJavaArgs=true OverrideMemory=true iconKey=pack -name=Fabulously Optimized 3.1.0-alpha.6 +name=Fabulously Optimized 3.1.0-alpha.7 notes=https://www.curseforge.com/minecraft/modpacks/fabulously-optimized \ No newline at end of file diff --git a/Packwiz/1.16.5/pack.toml b/Packwiz/1.16.5/pack.toml index 3d2c1bd3b..7ebcf5a92 100644 --- a/Packwiz/1.16.5/pack.toml +++ b/Packwiz/1.16.5/pack.toml @@ -1,5 +1,6 @@ name = "Fabulously Optimized" pack-format = "packwiz:1.0.0" +version = "1.11.2" [index] file = "index.toml" diff --git a/Packwiz/1.17.1/.packwizignore b/Packwiz/1.17.1/.packwizignore deleted file mode 100644 index 210ef2926..000000000 --- a/Packwiz/1.17.1/.packwizignore +++ /dev/null @@ -1,5 +0,0 @@ -packwiz -Readme.md -*.exe -*.bat -*.jar \ No newline at end of file diff --git a/Packwiz/1.17.1/.packwizignore b/Packwiz/1.17.1/.packwizignore new file mode 120000 index 000000000..fdf9acc9c --- /dev/null +++ b/Packwiz/1.17.1/.packwizignore @@ -0,0 +1 @@ +../1.16.5/.packwizignore \ No newline at end of file diff --git a/Packwiz/1.17.1/pack.toml b/Packwiz/1.17.1/pack.toml index dfd6e83f6..582cb229c 100644 --- a/Packwiz/1.17.1/pack.toml +++ b/Packwiz/1.17.1/pack.toml @@ -1,5 +1,6 @@ name = "Fabulously Optimized" pack-format = "packwiz:1.0.0" +version = "2.6.2" [index] file = "index.toml" diff --git a/Packwiz/1.18.1/.packwizignore b/Packwiz/1.18.1/.packwizignore deleted file mode 100644 index 210ef2926..000000000 --- a/Packwiz/1.18.1/.packwizignore +++ /dev/null @@ -1,5 +0,0 @@ -packwiz -Readme.md -*.exe -*.bat -*.jar \ No newline at end of file diff --git a/Packwiz/1.18.1/.packwizignore b/Packwiz/1.18.1/.packwizignore new file mode 120000 index 000000000..fdf9acc9c --- /dev/null +++ b/Packwiz/1.18.1/.packwizignore @@ -0,0 +1 @@ +../1.16.5/.packwizignore \ No newline at end of file diff --git a/Packwiz/1.18.1/config/slightguimodifications/cts.groovy b/Packwiz/1.18.1/config/slightguimodifications/cts.groovy index 7a8ed9dba..7ac12e13c 100644 --- a/Packwiz/1.18.1/config/slightguimodifications/cts.groovy +++ b/Packwiz/1.18.1/config/slightguimodifications/cts.groovy @@ -5,7 +5,7 @@ mainMenu { x { it - 2 } y { it - 20 } } - text = literal("Fabulously Optimized 3.1.0-alpha.6") + text = literal("Fabulously Optimized 3.1.0-alpha.7") align = "right" color = 0xFFFFFF hoveredColor = 0x55FFFF diff --git a/Packwiz/1.18.1/index.toml b/Packwiz/1.18.1/index.toml index c38f67b96..cfc400430 100644 --- a/Packwiz/1.18.1/index.toml +++ b/Packwiz/1.18.1/index.toml @@ -18,7 +18,7 @@ hash = "823e13cceab67ae7856cbfc91fcec40cadb1a7b958993b92f2501928659a0641" [[files]] file = "config/slightguimodifications/cts.groovy" -hash = "9e07d927cace3894dcbd4f8be79a2f64eb4745bf63c37b0cec2064720cdcd202" +hash = "509002f7873214ac503754d99067d778d703c2e227343d1df436aa34533cf0b1" [[files]] file = "config/sodium-mixins.properties" @@ -95,7 +95,7 @@ metafile = true [[files]] file = "mods/animatica.toml" -hash = "509a6b36ee65f458986dd19eb09b4c5f5feda7a976937a3cb6dfe4fee095797c" +hash = "c4cec0badc05f9c2945d03606d482b512abdac912502236dd1f4c3eef48421d6" metafile = true [[files]] @@ -140,7 +140,7 @@ metafile = true [[files]] file = "mods/colormatic.toml" -hash = "c1c4f73e371a2682b1609322a3ba1af39fe8ca7d60e2366f3c07b045cbb1d7ac" +hash = "2c4245d20eeb865f12b185a5f0b165d97d10e5f087192488e4e4a8329b4039f9" metafile = true [[files]] @@ -185,7 +185,7 @@ metafile = true [[files]] file = "mods/fabric-api.toml" -hash = "1cba7ffaf01ed4ca7f2cb06133963ed3d574376d4f03012dfa1c584539d5603d" +hash = "2fdfc03898a5e23b23e9eecbce011c2ea0e0386cff14be61518b342533b6c663" metafile = true [[files]] @@ -215,7 +215,7 @@ metafile = true [[files]] file = "mods/irisshaders.toml" -hash = "16cfbd80478e47ad53d383025c5fa8cb3360f8d186a0dfb44eb2ae6c973f9b2b" +hash = "fd255090b8121a20465cb46482af2b3035507462f5540a90272c8ae8fbc8e08f" metafile = true [[files]] @@ -280,7 +280,7 @@ metafile = true [[files]] file = "mods/reeses-sodium-options.toml" -hash = "a3b39e94523b4e4b0bf40b5bd6d900342d153bec98910f9c174c1cd2e436dd69" +hash = "1c6b6d6958e1fd8d9566e384d1fed58958fdc0a5d8c557e52793f75887148d99" metafile = true [[files]] diff --git a/Packwiz/1.18.1/mods/animatica.toml b/Packwiz/1.18.1/mods/animatica.toml index e7eaf5ad5..2741135cc 100644 --- a/Packwiz/1.18.1/mods/animatica.toml +++ b/Packwiz/1.18.1/mods/animatica.toml @@ -1,13 +1,13 @@ name = "Animatica" -filename = "animatica-0.2+1.18.jar" +filename = "animatica-0.3+1.18.jar" side = "both" [download] -url = "https://edge.forgecdn.net/files/3577/480/animatica-0.2+1.18.jar" +url = "https://edge.forgecdn.net/files/3594/396/animatica-0.3+1.18.jar" hash-format = "murmur2" -hash = "1842450262" +hash = "3836591055" [update] [update.curseforge] -file-id = 3577480 +file-id = 3594396 project-id = 533006 diff --git a/Packwiz/1.18.1/mods/colormatic.toml b/Packwiz/1.18.1/mods/colormatic.toml index baef6d285..199425f8c 100644 --- a/Packwiz/1.18.1/mods/colormatic.toml +++ b/Packwiz/1.18.1/mods/colormatic.toml @@ -1,13 +1,13 @@ name = "Colormatic" -filename = "colormatic-2.4.0+mc.1.18.jar" +filename = "colormatic-3.0.0+mc.1.18.jar" side = "both" [download] -url = "https://edge.forgecdn.net/files/3549/774/colormatic-2.4.0+mc.1.18.jar" +url = "https://edge.forgecdn.net/files/3591/953/colormatic-3.0.0+mc.1.18.jar" hash-format = "murmur2" -hash = "2915827074" +hash = "3053511537" [update] [update.curseforge] -file-id = 3549774 +file-id = 3591953 project-id = 325092 diff --git a/Packwiz/1.18.1/mods/fabric-api.toml b/Packwiz/1.18.1/mods/fabric-api.toml index e08b1e01d..b5d7de7a4 100644 --- a/Packwiz/1.18.1/mods/fabric-api.toml +++ b/Packwiz/1.18.1/mods/fabric-api.toml @@ -1,13 +1,13 @@ name = "Fabric API" -filename = "fabric-api-0.45.0+1.18.jar" +filename = "fabric-api-0.45.2+1.18.jar" side = "both" [download] -url = "https://edge.forgecdn.net/files/3577/46/fabric-api-0.45.0+1.18.jar" +url = "https://edge.forgecdn.net/files/3595/229/fabric-api-0.45.2+1.18.jar" hash-format = "murmur2" -hash = "3382045089" +hash = "2626514222" [update] [update.curseforge] -file-id = 3577046 +file-id = 3595229 project-id = 306612 diff --git a/Packwiz/1.18.1/mods/irisshaders.toml b/Packwiz/1.18.1/mods/irisshaders.toml index 2637f3944..dc84e5560 100644 --- a/Packwiz/1.18.1/mods/irisshaders.toml +++ b/Packwiz/1.18.1/mods/irisshaders.toml @@ -1,13 +1,13 @@ name = "Iris Shaders" -filename = "iris-mc1.18.1-1.1.3.jar" +filename = "iris-mc1.18.1-1.1.4.jar" side = "both" [download] -url = "https://edge.forgecdn.net/files/3558/900/iris-mc1.18.1-1.1.3.jar" +url = "https://edge.forgecdn.net/files/3596/182/iris-mc1.18.1-1.1.4.jar" hash-format = "murmur2" -hash = "3998045195" +hash = "3265639627" [update] [update.curseforge] -file-id = 3558900 +file-id = 3596182 project-id = 455508 diff --git a/Packwiz/1.18.1/mods/reeses-sodium-options.toml b/Packwiz/1.18.1/mods/reeses-sodium-options.toml index 490d925eb..4a416df91 100644 --- a/Packwiz/1.18.1/mods/reeses-sodium-options.toml +++ b/Packwiz/1.18.1/mods/reeses-sodium-options.toml @@ -1,13 +1,13 @@ name = "Reese's Sodium Options" -filename = "reeses_sodium_options-mc1.18.1-1.2.4.jar" +filename = "reeses_sodium_options-mc1.18.1-1.3.0.jar" side = "both" [download] -url = "https://edge.forgecdn.net/files/3578/930/reeses_sodium_options-mc1.18.1-1.2.4.jar" +url = "https://edge.forgecdn.net/files/3596/724/reeses_sodium_options-mc1.18.1-1.3.0.jar" hash-format = "murmur2" -hash = "3255020958" +hash = "2910872584" [update] [update.curseforge] -file-id = 3578930 +file-id = 3596724 project-id = 511319 diff --git a/Packwiz/1.18.1/pack.toml b/Packwiz/1.18.1/pack.toml index 939053a30..0109be4b7 100644 --- a/Packwiz/1.18.1/pack.toml +++ b/Packwiz/1.18.1/pack.toml @@ -1,10 +1,11 @@ name = "Fabulously Optimized" +version = "3.1.0-alpha.7" pack-format = "packwiz:1.0.0" [index] file = "index.toml" hash-format = "sha256" -hash = "63812f3d3fa05c9c2b2a94daf36d8476863a305b03297f11218b59bf90aff46b" +hash = "9ded097d63d29957860e7c6a8ca771de5290c27e34fb0016902aefb9d8ce0b92" [versions] fabric = "0.12.12" diff --git a/Packwiz/1.18/.packwizignore b/Packwiz/1.18/.packwizignore deleted file mode 100644 index 210ef2926..000000000 --- a/Packwiz/1.18/.packwizignore +++ /dev/null @@ -1,5 +0,0 @@ -packwiz -Readme.md -*.exe -*.bat -*.jar \ No newline at end of file diff --git a/Packwiz/1.18/.packwizignore b/Packwiz/1.18/.packwizignore new file mode 120000 index 000000000..fdf9acc9c --- /dev/null +++ b/Packwiz/1.18/.packwizignore @@ -0,0 +1 @@ +../1.16.5/.packwizignore \ No newline at end of file diff --git a/Packwiz/1.18/pack.toml b/Packwiz/1.18/pack.toml index a2456ea1a..f60df0816 100644 --- a/Packwiz/1.18/pack.toml +++ b/Packwiz/1.18/pack.toml @@ -1,5 +1,6 @@ name = "Fabulously Optimized" pack-format = "packwiz:1.0.0" +version = "3.0.0-alpha.4" [index] file = "index.toml" diff --git a/README.md b/README.md index 04b17bd83..d0f56e6ab 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Supports CurseForge Launcher, MultiMC, GDLauncher and vanilla launcher. [Install _These downloads do not yet support the modpack or the mods :(_ -* [Auto-updating](https://github.com/Madis0/fabulously-optimized/wiki/Auto-updating-MultiMC-pack) MultiMC pack: [1.16.5](https://github.com/Fabulously-Optimized/fabulously-optimized/releases/download/v1.11.1/Fabulously.Optimized.MC.1.16.5.auto-update.zip) | [1.17.1](https://github.com/Fabulously-Optimized/fabulously-optimized/releases/download/v2.6.1/Fabulously.Optimized.MC.1.17.1.auto-update.zip) | [1.18](https://github.com/Fabulously-Optimized/fabulously-optimized/releases/download/v3.0.0-alpha.4/Fabulously.Optimized.MC.1.18.auto-update.zip) | [1.18.1](https://github.com/Fabulously-Optimized/fabulously-optimized/releases/download/v3.1.0-alpha.5/Fabulously.Optimized.MC.1.18.1.auto-update.zip) +* [Auto-updating](https://github.com/Madis0/fabulously-optimized/wiki/Auto-updating-MultiMC-pack) MultiMC pack: [1.16.5](https://github.com/Fabulously-Optimized/fabulously-optimized/releases/download/v1.11.1/Fabulously.Optimized.MC.1.16.5.auto-update.zip) | [1.17.1](https://github.com/Fabulously-Optimized/fabulously-optimized/releases/download/v2.6.1/Fabulously.Optimized.MC.1.17.1.auto-update.zip) | _[1.18](https://github.com/Fabulously-Optimized/fabulously-optimized/releases/download/v3.0.0-alpha.4/Fabulously.Optimized.MC.1.18.auto-update.zip)_ (EOL) | [1.18.1](https://github.com/Fabulously-Optimized/fabulously-optimized/releases/download/v3.1.0-alpha.5/Fabulously.Optimized.MC.1.18.1.auto-update.zip) * ~~Vanilla installer~~ [(planned)](https://github.com/Madis0/fabulously-optimized/issues/110) * ~~Modrinth~~ [(planned)](https://github.com/Madis0/fabulously-optimized/issues/63) * [GitHub releases](https://github.com/Fabulously-Optimized/fabulously-optimized/releases)