2024-08-21 11:46:47 +02:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
|
|
|
output_directory="CzechQuests"
|
|
|
|
|
|
|
|
wow_versions=(
|
|
|
|
"Classic ERA" # 1 - classic_era
|
|
|
|
"Retail" # 2 - retail
|
|
|
|
)
|
|
|
|
|
|
|
|
toc_files=(
|
|
|
|
"CzechQuests_Vanilla.toc"
|
|
|
|
"CzechQuests_Mainline.toc"
|
2024-08-05 18:32:54 +02:00
|
|
|
)
|
|
|
|
|
2024-08-21 11:46:47 +02:00
|
|
|
|
|
|
|
read_toc_version() {
|
|
|
|
local wow_version=$1
|
|
|
|
local toc_file=${toc_files[$wow_version]}
|
|
|
|
local current_version=0
|
|
|
|
if [[ -f "$toc_file" ]]; then
|
|
|
|
current_version=$(grep "## Version:" "$toc_file" | cut -d ' ' -f 3)
|
|
|
|
fi
|
|
|
|
echo "$current_version"
|
|
|
|
}
|
|
|
|
|
|
|
|
write_toc_version() {
|
|
|
|
local wow_version=$1
|
|
|
|
local next_version=$2
|
|
|
|
local toc_file=${toc_files[$wow_version]}
|
|
|
|
if [[ -f "$toc_file" ]]; then
|
|
|
|
sed -i '' "s/## Version: $current_version/## Version: $next_version/" "$toc_file"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
make_zip() {
|
|
|
|
local wow_version=$1
|
|
|
|
local current_version=$2
|
|
|
|
|
|
|
|
local zip_filename=""
|
|
|
|
local files_to_zip=()
|
|
|
|
|
|
|
|
# prepare output directory
|
|
|
|
mkdir -p $output_directory
|
2025-03-01 21:46:55 +01:00
|
|
|
mkdir -p "${output_directory}/Addon/Data/"
|
2024-08-21 11:46:47 +02:00
|
|
|
|
|
|
|
# Includes classic era continents
|
|
|
|
if [ "$wow_version" = "1" ]; then
|
2025-03-01 21:46:55 +01:00
|
|
|
cp -r "./Addon/Data/classic_era/" "${output_directory}/Addon/Data/"
|
2024-08-21 11:46:47 +02:00
|
|
|
cp "./CzechQuests_Vanilla.toc" "${output_directory}"
|
|
|
|
zip_filename="czech-quests-classic_era-v$current_version.zip"
|
2024-08-07 11:26:42 +02:00
|
|
|
fi
|
2024-08-05 18:32:54 +02:00
|
|
|
|
2024-08-21 11:46:47 +02:00
|
|
|
# Includes retail continents
|
|
|
|
if [ "$wow_version" = "2" ]; then
|
2025-03-01 21:46:55 +01:00
|
|
|
cp -r "./Addon/Data/retail/" "${output_directory}/Addon/Data/"
|
2024-08-21 11:46:47 +02:00
|
|
|
cp "./CzechQuests_Mainline.toc" "${output_directory}"
|
|
|
|
zip_filename="czech-quests-retail-v$current_version.zip"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# includes frames
|
|
|
|
while IFS= read -r line; do
|
|
|
|
files_to_zip+=("$line")
|
2025-03-01 21:46:55 +01:00
|
|
|
done < <(find . -name "*.lua" -path "./Addon/Frames/*")
|
2024-08-21 11:46:47 +02:00
|
|
|
|
2024-08-25 12:22:10 +02:00
|
|
|
# includes frames
|
|
|
|
while IFS= read -r line; do
|
|
|
|
files_to_zip+=("$line")
|
2025-03-01 21:46:55 +01:00
|
|
|
done < <(find . -name "*.ttf" -path "./Assets/*")
|
2024-08-25 12:22:10 +02:00
|
|
|
|
2024-08-21 11:46:47 +02:00
|
|
|
# includes other files
|
2025-03-01 21:46:55 +01:00
|
|
|
files_to_zip+=("./Addon/Data/other.lua" "./Addon/Addon.lua" "./Addon/Translation.lua" "./Addon/Utils.lua" "./CzechQuests.lua")
|
2024-08-21 11:46:47 +02:00
|
|
|
|
|
|
|
# prepare output directory
|
|
|
|
for file in "${files_to_zip[@]}"; do
|
2024-11-24 10:22:37 +01:00
|
|
|
rsync -R "$file" "$output_directory"
|
2024-08-21 11:46:47 +02:00
|
|
|
done
|
|
|
|
|
2024-11-24 10:22:37 +01:00
|
|
|
# Remove invalid files
|
|
|
|
find "$output_directory" -name ".DS_Store" -type f -delete
|
|
|
|
|
2024-08-21 11:46:47 +02:00
|
|
|
# create zip file
|
|
|
|
zip -r "$zip_filename" $output_directory
|
|
|
|
|
|
|
|
# remove output directory
|
|
|
|
rm -r $output_directory
|
|
|
|
}
|
|
|
|
|
|
|
|
release_wow() {
|
|
|
|
local wow_version=$1
|
|
|
|
|
|
|
|
# Read current version from file for wow version
|
|
|
|
current_version=$(read_toc_version "$wow_version")
|
|
|
|
|
|
|
|
# Increase version
|
|
|
|
new_version="$current_version"
|
|
|
|
vared -p "Choose version: " new_version
|
|
|
|
|
|
|
|
# Write to file
|
|
|
|
write_toc_version "$wow_version" "$new_version"
|
|
|
|
|
|
|
|
# Generate zip
|
2024-08-22 16:12:40 +02:00
|
|
|
make_zip $wow_version $new_version
|
2024-08-21 11:46:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
init() {
|
|
|
|
echo "Choose Wow:"
|
|
|
|
select opt in "${wow_versions[@]}"
|
|
|
|
do
|
|
|
|
case $opt in
|
|
|
|
"Classic ERA")
|
|
|
|
echo "You chose Classic ERA"
|
|
|
|
release_wow 1
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
"Retail")
|
|
|
|
echo "You chose Retail"
|
|
|
|
release_wow 2
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
2024-08-07 11:26:42 +02:00
|
|
|
|
2024-08-21 11:46:47 +02:00
|
|
|
init
|