From e1d95961881b72f40d8c12d2cdcaeee4d9e6b31b Mon Sep 17 00:00:00 2001 From: isXander Date: Tue, 23 Apr 2024 18:07:18 +0100 Subject: Last minute 1.20.5 changes Add changelog Fix the mods.toml Re-add fix from 3.3.3 VCS stonecutter version is now 1.20.5 --- .../java/dev/isxander/yacl3/platform/YACLConfig.java | 18 ------------------ .../textures/gui/sprites/controller/colorpicker.png | Bin 260 -> 0 bytes .../gui/sprites/controller/colorpicker.png.mcmeta | 10 ---------- .../textures/gui/sprites/controller/transparent.png | Bin 115 -> 0 bytes .../gui/sprites/controller/transparent.png.mcmeta | 10 ---------- 5 files changed, 38 deletions(-) delete mode 100644 common/src/main/java/dev/isxander/yacl3/platform/YACLConfig.java delete mode 100644 common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/colorpicker.png delete mode 100644 common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/colorpicker.png.mcmeta delete mode 100644 common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/transparent.png delete mode 100644 common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/transparent.png.mcmeta (limited to 'common/src') diff --git a/common/src/main/java/dev/isxander/yacl3/platform/YACLConfig.java b/common/src/main/java/dev/isxander/yacl3/platform/YACLConfig.java deleted file mode 100644 index 0d14b41..0000000 --- a/common/src/main/java/dev/isxander/yacl3/platform/YACLConfig.java +++ /dev/null @@ -1,18 +0,0 @@ -package dev.isxander.yacl3.platform; - -import dev.isxander.yacl3.config.v2.api.ConfigClassHandler; -import dev.isxander.yacl3.config.v2.api.SerialEntry; -import dev.isxander.yacl3.config.v2.api.serializer.GsonConfigSerializerBuilder; - -public class YACLConfig { - public static final ConfigClassHandler HANDLER = ConfigClassHandler.createBuilder(YACLConfig.class) - .id(YACLPlatform.rl("config")) - .serializer(config -> GsonConfigSerializerBuilder.create(config) - .setPath(YACLPlatform.getConfigDir().resolve("yacl.json5")) - .setJson5(true) - .build()) - .build(); - - @SerialEntry - public boolean showColorPickerIndicator = true; -} diff --git a/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/colorpicker.png b/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/colorpicker.png deleted file mode 100644 index 1d11f72..0000000 Binary files a/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/colorpicker.png and /dev/null differ diff --git a/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/colorpicker.png.mcmeta b/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/colorpicker.png.mcmeta deleted file mode 100644 index 20d1be9..0000000 --- a/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/colorpicker.png.mcmeta +++ /dev/null @@ -1,10 +0,0 @@ -{ - "gui": { - "scaling": { - "type": "nine_slice", - "width": 236, - "height": 34, - "border": 3 - } - } -} diff --git a/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/transparent.png b/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/transparent.png deleted file mode 100644 index 0a803ef..0000000 Binary files a/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/transparent.png and /dev/null differ diff --git a/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/transparent.png.mcmeta b/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/transparent.png.mcmeta deleted file mode 100644 index 9d21305..0000000 --- a/common/src/main/resources/assets/yet_another_config_lib/textures/gui/sprites/controller/transparent.png.mcmeta +++ /dev/null @@ -1,10 +0,0 @@ -{ - "gui": { - "scaling": { - "type": "tile", - "width": 7, - "height": 7, - "border": 3 - } - } -} -- cgit