├── .github └── workflows │ ├── ci.yaml │ ├── push-main.yaml │ └── stale-bot.yaml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle ├── libs.versions.toml ├── mc-1.16.5 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.17.1 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.18.2 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.19.0 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.19.3 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.19.4 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.20.0 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.20.2 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.20.5 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.21.1 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.21.3 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.21.8 │ ├── gradle.properties │ └── mc.versions.toml ├── mc-1.21.9 │ ├── gradle.properties │ └── mc.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── logo.svg └── logo_large.png ├── settings.gradle.kts └── src ├── main ├── java │ └── de │ │ └── siphalor │ │ └── amecs │ │ ├── Amecs.java │ │ ├── compat │ │ └── NMUKProxy.java │ │ ├── gui │ │ └── SearchFieldControlsListWidget.java │ │ ├── keybinding │ │ ├── SkinLayerKeyBinding.java │ │ └── ToggleAutoJumpKeyBinding.java │ │ └── mixin │ │ ├── ControlsListWidgetKeyBindingEntryAccessor.java │ │ ├── MixinEntryListWidget.java │ │ └── MixinKeyboard.java └── resources │ ├── amecs.accesswidener │ ├── amecs.mixins.json │ ├── assets │ └── amecs │ │ ├── lang │ │ ├── de_de.json │ │ ├── en_us.json │ │ ├── es_mx.json │ │ ├── et_ee.json │ │ ├── fi_fi.json │ │ ├── he_il.json │ │ ├── it_it.json │ │ ├── ko_kr.json │ │ ├── pl_pl.json │ │ ├── pt_br.json │ │ ├── pt_pt.json │ │ ├── ru_ru.json │ │ ├── tr_tr.json │ │ ├── uk_ua.json │ │ ├── zh_cn.json │ │ └── zh_tw.json │ │ └── logo.png │ └── fabric.mod.json └── testmod ├── java └── de │ └── siphalor │ └── amecstestmod │ └── AmecsTestMod.java └── resources └── fabric.mod.json /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/push-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/.github/workflows/push-main.yaml -------------------------------------------------------------------------------- /.github/workflows/stale-bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/.github/workflows/stale-bot.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.16.5/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.16.5/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.16.5/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.16.5/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.17.1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.17.1/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.17.1/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.17.1/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.18.2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.18.2/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.18.2/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.18.2/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.19.0/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.19.0/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.19.0/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.19.0/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.19.3/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.19.3/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.19.3/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.19.3/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.19.4/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.19.4/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.19.4/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.19.4/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.20.0/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.20.0/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.20.0/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.20.0/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.20.2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.20.2/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.20.2/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.20.2/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.20.5/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.20.5/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.20.5/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.20.5/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.21.1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.21.1/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.21.1/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.21.1/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.21.3/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.21.3/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.21.3/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.21.3/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.21.8/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.21.8/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.21.8/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.21.8/mc.versions.toml -------------------------------------------------------------------------------- /gradle/mc-1.21.9/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.21.9/gradle.properties -------------------------------------------------------------------------------- /gradle/mc-1.21.9/mc.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/mc-1.21.9/mc.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/images/logo_large.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/java/de/siphalor/amecs/Amecs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/java/de/siphalor/amecs/Amecs.java -------------------------------------------------------------------------------- /src/main/java/de/siphalor/amecs/compat/NMUKProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/java/de/siphalor/amecs/compat/NMUKProxy.java -------------------------------------------------------------------------------- /src/main/java/de/siphalor/amecs/gui/SearchFieldControlsListWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/java/de/siphalor/amecs/gui/SearchFieldControlsListWidget.java -------------------------------------------------------------------------------- /src/main/java/de/siphalor/amecs/keybinding/SkinLayerKeyBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/java/de/siphalor/amecs/keybinding/SkinLayerKeyBinding.java -------------------------------------------------------------------------------- /src/main/java/de/siphalor/amecs/keybinding/ToggleAutoJumpKeyBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/java/de/siphalor/amecs/keybinding/ToggleAutoJumpKeyBinding.java -------------------------------------------------------------------------------- /src/main/java/de/siphalor/amecs/mixin/ControlsListWidgetKeyBindingEntryAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/java/de/siphalor/amecs/mixin/ControlsListWidgetKeyBindingEntryAccessor.java -------------------------------------------------------------------------------- /src/main/java/de/siphalor/amecs/mixin/MixinEntryListWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/java/de/siphalor/amecs/mixin/MixinEntryListWidget.java -------------------------------------------------------------------------------- /src/main/java/de/siphalor/amecs/mixin/MixinKeyboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/java/de/siphalor/amecs/mixin/MixinKeyboard.java -------------------------------------------------------------------------------- /src/main/resources/amecs.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/amecs.accesswidener -------------------------------------------------------------------------------- /src/main/resources/amecs.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/amecs.mixins.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/de_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/de_de.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/es_mx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/es_mx.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/et_ee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/et_ee.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/fi_fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/fi_fi.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/he_il.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/he_il.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/it_it.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/ko_kr.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/pl_pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/pl_pl.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/pt_br.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/pt_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/pt_pt.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/ru_ru.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/tr_tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/tr_tr.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/uk_ua.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/zh_cn.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/lang/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/lang/zh_tw.json -------------------------------------------------------------------------------- /src/main/resources/assets/amecs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/assets/amecs/logo.png -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/testmod/java/de/siphalor/amecstestmod/AmecsTestMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/testmod/java/de/siphalor/amecstestmod/AmecsTestMod.java -------------------------------------------------------------------------------- /src/testmod/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siphalor/amecs/HEAD/src/testmod/resources/fabric.mod.json --------------------------------------------------------------------------------