diff --git a/config/customwindowtitle-client.toml b/config/customwindowtitle-client.toml index e4a1244..2f5fdc2 100644 --- a/config/customwindowtitle-client.toml +++ b/config/customwindowtitle-client.toml @@ -1,3 +1,3 @@ -title = 'Minecraft VMU - {mcversion}' +title = ' VMU 1.2.0 - Minecraft {mcversion}' icon16 = '' icon32 = '' diff --git a/config/slightguimodifications/config.json5 b/config/slightguimodifications/config.json5 new file mode 100644 index 0000000..a92a555 --- /dev/null +++ b/config/slightguimodifications/config.json5 @@ -0,0 +1,65 @@ +{ + "fluidAdvancements": true, + "fluidStatusEffects": false, + // Whether we should unlimit the hard 60 fps limit placed on the title screen. + "unlimitTitleScreenFps": true, + "openingAnimation": { + "fluidChatOpening": true, + "fluidOpenSlideFromBottom": false, + "fluidOpenFade": false, + "fluidAnimationDuration": 400, + "affectsGameMenus": true, + "affectsInventories": true, + "ignoreSlideWhenRedirected": true, + "ignoreFadeWhenRedirected": false + }, + "textFieldModifications": { + // Whether this module is enabled. + "enabled": false, + /* Set to Color to use the Border and Background Color. + Set to Texture to use resource pack: + /assets/minecraft/textures/gui/text_field.png + + More documentations on website. + */ + "backgroundMode": "COLOR", + "borderColor": 10526880, + "backgroundColor": 0, + "selectionMode": "INVERT", + // Whether Text Fields should allow right click actions. + "rightClickActions": false + }, + "sliderModifications": { + // Whether this module is enabled. + "enabled": false, + "grabberWidth": 8, + /* Whether to use custom texture: + /assets/slightguimodifications/textures/gui/slider(_hovered).png + or + /config/slightguimodifications/slider(_hovered).png + */ + "customBackgroundTexture": false + }, + "debugInformation": { + "showFps": false + }, + "customScaling": { + "vanillaScaleSlider": false, + "scale": 1.0 + }, + "slotHighlight": { + // Whether this module is enabled. + "enabled": false, + "color": -2130706433 + }, + "tooltipModifications": { + // Whether this module is enabled. + "enabled": false, + "backgroundColor": -267386864, + "outlineGradientTopColor": 1347420415, + "outlineGradientBottomColor": 1344798847 + }, + // Whether GUI should allow right click actions. + "rightClickActions": true, + "satisfyingScreenshots": true +} \ No newline at end of file diff --git a/config/slightguimodifications/cts.groovy b/config/slightguimodifications/cts.groovy new file mode 100644 index 0000000..ca41f95 --- /dev/null +++ b/config/slightguimodifications/cts.groovy @@ -0,0 +1,29 @@ +mainMenu { + enabled = true + + splashText { + enabled = false + splashesEnabled = true + customSplashes { + enabled = false + applyMode = "append" + defineCustom([ + "h", + ]) + } + } + + label { + position { + x = 2 + y { it - 32 } + } + + text = literal("VMU 1.2.0") + align = "left" + color = 0xffffff + shadow = true + hoveredColor = 0xabcdef + onClicked = url("https://amiro.ivi.pl/repoea/Wroclaw/VMU") + } +} diff --git a/index.toml b/index.toml index 0751cad..189fd40 100644 --- a/index.toml +++ b/index.toml @@ -10,7 +10,7 @@ hash = "66dea440cdcf45bcfad5346d65b17751a36ca64f98b85b96d13f8b2353d42cf8" [[files]] file = "config/customwindowtitle-client.toml" -hash = "103ab2253b65e0a98457fc2f753f3e18a9beefa290ca5e81bd7b1a76b1e870ae" +hash = "e0996b33430d6d0c7f1fb678cfcea50f28b6981180ff33be850b64a09cfd4d12" [[files]] file = "config/enhanced_bes.properties" @@ -52,6 +52,14 @@ hash = "918f7304bfe12dd0c131475348c79759509b133ed1dfc520dffa44d2e412aca8" file = "config/shulkerboxtooltip.json5" hash = "dd2ee59d8f82617617d820329b19ee6dd0ae4200b95fae9ad73ff7a5bb6c3af6" +[[files]] +file = "config/slightguimodifications/config.json5" +hash = "58045fce3fcba01c65506f8aa90edcae5f6c129aeb9a00fd5309b88cf0365926" + +[[files]] +file = "config/slightguimodifications/cts.groovy" +hash = "913b5130ec57d35f0e59e32469b8ed2e8799a6a75f85b2a2bf78b24f5bb576de" + [[files]] file = "config/worldeditcui.config.json" hash = "9221a1c42d4d25101c09ff8980ea8babda5d2d0ed2471f0d2b5ac76bc2c9ea10" @@ -103,6 +111,11 @@ file = "mods/architectury-api.pw.toml" hash = "59a069deb0a7ffee4a62843fe18d8fab2c935863e66534a96751aa1294c6fe3a" metafile = true +[[files]] +file = "mods/cloth-api.pw.toml" +hash = "a24a98749cf572397b9c0ed2a892814b7ce93bb743a73510a348f150ae8745a9" +metafile = true + [[files]] file = "mods/cloth-config.pw.toml" hash = "53fa3438ef9e1e81193f46c36cffa7c410a933de0b6793224e99bad67cbab2e3" @@ -213,6 +226,11 @@ file = "mods/shulkerboxtooltip.pw.toml" hash = "ba4fa4527a3f7beb3e653bb404a817d9878a2f2766439c41c71332a8ec97c459" metafile = true +[[files]] +file = "mods/slight-gui-modifications.pw.toml" +hash = "578dbeb46066efda08472b2f6b30d6c2f43aed1ddcee3786a0d4aaa2f3599dcf" +metafile = true + [[files]] file = "mods/sodium-extra.pw.toml" hash = "8bdc3c1b5079b7fbe89f995d1a100e1df8dcf47e73ef089abf444ecc8e320527" diff --git a/mods/cloth-api.pw.toml b/mods/cloth-api.pw.toml new file mode 100644 index 0000000..b1ef750 --- /dev/null +++ b/mods/cloth-api.pw.toml @@ -0,0 +1,13 @@ +name = "Cloth API (Fabric)" +filename = "cloth-api-4.0.65.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "be86c751c4e8e54c539abd8530f6d84f97c8188c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3853858 +project-id = 317121 diff --git a/mods/slight-gui-modifications.pw.toml b/mods/slight-gui-modifications.pw.toml new file mode 100644 index 0000000..1be7391 --- /dev/null +++ b/mods/slight-gui-modifications.pw.toml @@ -0,0 +1,13 @@ +name = "'Slight' Gui Modifications" +filename = "slight-gui-modifications-2.2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/O7JVMrQX/versions/2.2.0/slight-gui-modifications-2.2.0.jar" +hash-format = "sha1" +hash = "f1e0111effc7b3cacd8531465982b85f7482c473" + +[update] +[update.modrinth] +mod-id = "O7JVMrQX" +version = "ShVdwo1n" diff --git a/pack.toml b/pack.toml index c7f6385..069b561 100644 --- a/pack.toml +++ b/pack.toml @@ -1,12 +1,12 @@ name = "VMU" author = "Wroclaw" -version = "1.1.2+mc1.19" +version = "1.2.0+mc1.19" pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "f0d1c10de83b43ad5e1df4462e6642a9b4ff864c1fdf05c24bcb02ea17990498" +hash = "90da5419557081155a840a91b8cf66f59eaf907fee2a8594b379d90f38dbcfc0" [versions] minecraft = "1.19"