diff options
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/assets/note2input/icon.png | bin | 0 -> 280 bytes | |||
| -rw-r--r-- | src/main/resources/assets/note2input/lang/en_us.json | 21 | ||||
| -rw-r--r-- | src/main/resources/banner.png | bin | 0 -> 13460 bytes | |||
| -rw-r--r-- | src/main/resources/fabric.mod.json | 34 | ||||
| -rw-r--r-- | src/main/resources/note2input.mixins.json | 16 |
5 files changed, 71 insertions, 0 deletions
diff --git a/src/main/resources/assets/note2input/icon.png b/src/main/resources/assets/note2input/icon.png Binary files differnew file mode 100644 index 0000000..3b4b0ca --- /dev/null +++ b/src/main/resources/assets/note2input/icon.png diff --git a/src/main/resources/assets/note2input/lang/en_us.json b/src/main/resources/assets/note2input/lang/en_us.json new file mode 100644 index 0000000..54ca3c5 --- /dev/null +++ b/src/main/resources/assets/note2input/lang/en_us.json @@ -0,0 +1,21 @@ +{ + "key.look_left": "Look Left", + "key.look_right": "Look Right", + "key.look_up": "Look Up", + "key.look_down": "Look Down", + + "config.note2input.title": "Note2Input Settings", + + "config.note2input.category.general": "General", + "config.note2input.category.keys": "Keybindings", + + "config.note2input.enable": "Enable Mod", + "config.note2input.input_threshold": "Input Threshold", + "config.note2input.feedback_threshold": "Feedback Threshold", + "config.note2input.gain": "Gain", + + "config.note2input.input_device": "Input Device", + "config.note2input.output_device": "Feedback Output Device", + + "config.note2input.note_to_key": "Bind for %s" +}
\ No newline at end of file diff --git a/src/main/resources/banner.png b/src/main/resources/banner.png Binary files differnew file mode 100644 index 0000000..e4a3881 --- /dev/null +++ b/src/main/resources/banner.png diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..a52933d --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,34 @@ +{ + "schemaVersion": 1, + "id": "note2input", + "version": "${version}", + "name": "Note2Input", + "description": "Turns notes from your microphone into input", + "authors": [], + "contact": {}, + "license": "MIT", + "icon": "assets/note2input/icon.png", + "environment": "client", + "entrypoints": { + "fabric-datagen": [ + "eu.projnull.spelis.note2input.client.DataGenerator" + ], + "client": [ + "eu.projnull.spelis.note2input.client.Client" + ], + "main": [ + "eu.projnull.spelis.note2input.Main" + ], + "modmenu": [ + "eu.projnull.spelis.note2input.config.ConfigScreen" + ] + }, + "mixins": [ + "note2input.mixins.json" + ], + "depends": { + "fabricloader": ">=${loader_version}", + "fabric-api": "*", + "minecraft": "${minecraft_version}" + } +} diff --git a/src/main/resources/note2input.mixins.json b/src/main/resources/note2input.mixins.json new file mode 100644 index 0000000..38e4c5b --- /dev/null +++ b/src/main/resources/note2input.mixins.json @@ -0,0 +1,16 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "eu.projnull.spelis.note2input.mixin", + "compatibilityLevel": "JAVA_21", + "mixins": [ + ], + "client": [ + ], + "injectors": { + "defaultRequire": 1 + }, + "overwrites": { + "requireAnnotations": true + } +} |
