Enhance speech frame behavior and settings

This commit is contained in:
Roman Jaroš 2025-03-04 07:49:19 +01:00
parent e37886072f
commit 8b53a5247c
12 changed files with 65 additions and 43 deletions

View file

@ -62,13 +62,18 @@ make_zip() {
files_to_zip+=("$line")
done < <(find . -name "*.lua" -path "./Addon/Frames/*")
# includes frames
# includes code
while IFS= read -r line; do
files_to_zip+=("$line")
done < <(find . -name "*.ttf" -path "./Assets/*")
done < <(find . -name "*.lua" -path "./Addon/Code/*")
# includes assets
while IFS= read -r line; do
files_to_zip+=("$line")
done < <(find . -name "*" -path "./Assets/*")
# includes other files
files_to_zip+=("./Addon/Data/other.lua" "./Addon/Addon.lua" "./Addon/Translation.lua" "./Addon/Utils.lua" "./CzechQuests.lua")
files_to_zip+=("./Addon/Data/other.lua" "./Addon/Addon.lua" "./CzechQuests.lua")
# prepare output directory
for file in "${files_to_zip[@]}"; do