summaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorElis Eriksson <Spelis@duck.com>2026-03-04 13:43:21 +0100
committerElis Eriksson <Spelis@duck.com>2026-03-04 13:43:21 +0100
commitb8f18d9da8f2023af37d5302b9bf0cbc6f83e95f (patch)
tree30cf5444509f97fadfd343b2f379cc3df06bc424 /src/main/resources
downloadnote2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar
note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar.gz
note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar.bz2
note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar.lz
note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar.xz
note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.tar.zst
note2input-b8f18d9da8f2023af37d5302b9bf0cbc6f83e95f.zip
Initial Commit
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/assets/note2input/icon.pngbin0 -> 280 bytes
-rw-r--r--src/main/resources/assets/note2input/lang/en_us.json21
-rw-r--r--src/main/resources/banner.pngbin0 -> 13460 bytes
-rw-r--r--src/main/resources/fabric.mod.json34
-rw-r--r--src/main/resources/note2input.mixins.json16
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
new file mode 100644
index 0000000..3b4b0ca
--- /dev/null
+++ b/src/main/resources/assets/note2input/icon.png
Binary files differ
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
new file mode 100644
index 0000000..e4a3881
--- /dev/null
+++ b/src/main/resources/banner.png
Binary files differ
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
+ }
+}