From 7224f9fd23c6543cb5677e36e6baa0a9413856e6 Mon Sep 17 00:00:00 2001 From: Roms1383 Date: Wed, 10 Apr 2024 15:13:21 +0700 Subject: [PATCH 1/2] :bento: add empty info.json for redmod --- audioware/info.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 audioware/info.json diff --git a/audioware/info.json b/audioware/info.json new file mode 100644 index 00000000..f973d9f4 --- /dev/null +++ b/audioware/info.json @@ -0,0 +1,5 @@ +{ + "name": "Addicted", + "version": "1.0.0", + "customSounds": [] +} \ No newline at end of file From 8eecf4d426bb260f71ae50b00cd115ccb1797342 Mon Sep 17 00:00:00 2001 From: Roms1383 Date: Wed, 10 Apr 2024 15:13:43 +0700 Subject: [PATCH 2/2] :hammer: update audioware install to copy fake info.json --- recipes/audioware/justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/audioware/justfile b/recipes/audioware/justfile index 69fcd121..98ddb7f5 100644 --- a/recipes/audioware/justfile +++ b/recipes/audioware/justfile @@ -13,6 +13,7 @@ tree := 'mods' just dcopy '{{ join(source, LOCALE) }}' '{{ join(TO, tree, mod) }}' just dcopy '{{ join(source, "vanilla", LOCALE) }}' '{{ join(TO, tree, mod, "vanilla") }}' just copy '{{ join(source, "voices." + LOCALE + ".yml") }}' '{{ join(TO, tree, mod, "voices.yml") }}' + just copy '{{ join(source, "info.json") }}' '{{ join(TO, tree, mod, "info.json") }}' @uninstall FROM: just trash '{{ join(FROM, tree, mod) }}'