From 7f88ddf36ba7804211e8aae6b3723bd8f37c82c5 Mon Sep 17 00:00:00 2001 From: xander Date: Fri, 2 Sep 2022 22:04:35 +0100 Subject: implement keyboard-operation for all controllers fix crash when focusing on option list with tab add tooltip to groups check that pending values actually applied on save, if not, error in log and the save button displays an error when trying to escape with unsaved changes, save button text goes green and bold YACLConstants file to change certain behaviours, could evolve into its own settings! update icon --- .../assets/yet-another-config-lib/lang/en_us.json | 3 ++- src/main/resources/fabric.mod.json | 2 +- src/main/resources/icon.png | Bin 17130 -> 0 bytes src/main/resources/yacl-128x.png | Bin 0 -> 13813 bytes 4 files changed, 3 insertions(+), 2 deletions(-) delete mode 100644 src/main/resources/icon.png create mode 100644 src/main/resources/yacl-128x.png (limited to 'src/main/resources') diff --git a/src/main/resources/assets/yet-another-config-lib/lang/en_us.json b/src/main/resources/assets/yet-another-config-lib/lang/en_us.json index 7f609d3..78945de 100644 --- a/src/main/resources/assets/yet-another-config-lib/lang/en_us.json +++ b/src/main/resources/assets/yet-another-config-lib/lang/en_us.json @@ -12,5 +12,6 @@ "yacl.gui.finished": "Finished", "yacl.gui.cancel": "Cancel", "yacl.gui.reset": "Reset", - "yacl.gui.undo": "Undo" + "yacl.gui.undo": "Undo", + "yocl.gui.fail_apply": "Failed to apply" } diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 6c28f3c..b40f7eb 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -12,7 +12,7 @@ "issues": "https://github.com/${github}/issues", "sources": "https://github.com/${github}" }, - "icon": "icon.png", + "icon": "yacl-128x.png", "license": "LGPL-3.0-or-later", "environment": "client", "entrypoints": { diff --git a/src/main/resources/icon.png b/src/main/resources/icon.png deleted file mode 100644 index 3f6dae4..0000000 Binary files a/src/main/resources/icon.png and /dev/null differ diff --git a/src/main/resources/yacl-128x.png b/src/main/resources/yacl-128x.png new file mode 100644 index 0000000..c86981c Binary files /dev/null and b/src/main/resources/yacl-128x.png differ -- cgit