feat: Update assets, bump version, update changelogs, minor visual improvements

This commit is contained in:
Anton Stubenbord
2023-12-20 00:47:10 +01:00
parent 9680054b35
commit 9451907423
24 changed files with 98 additions and 64 deletions

View File

@@ -9,7 +9,7 @@ function mergeChangelogs () {
__target_file=$__target_dir/changelogs_$1.md
rm -f $__target_file
touch $__target_file
ls $__script_dir/../android/fastlane/metadata/android/$1/changelogs/[0-9]*.txt | tac | while read f; do
ls -1v $__script_dir/../android/fastlane/metadata/android/$1/changelogs/[0-9]*.txt | tac | while read f; do
__build_number="${f%.*}"
echo "# $(basename -- $__build_number)" >> $__target_file
cat $f >> $__target_file