Enhance speech frame behavior and settings
This commit is contained in:
parent
e37886072f
commit
8b53a5247c
12 changed files with 65 additions and 43 deletions
11
release.sh
11
release.sh
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue