Skip to content

Commit

Permalink
6.4.2-rc5 (#1179)
Browse files Browse the repository at this point in the history
- Add setting to configure if file transfers should show up in Files App
- Fixed translatability
- Bumped WebRTC lib to version 127
- Translations for appstore descriptions (DE, EN, RO, FR)
  • Loading branch information
tmolitor-stud-tu committed Aug 1, 2024
2 parents d45afe9 + 4a7132d commit 8e71aaf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/beta.build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
# local json="{\"default\": {\"whats_new\": $escaped},"
# # for dir in ./appstore_metadata/*/; do
# # dir="$(basename "$dir")"
# # if [[ -d "./appstore_metadata/$dir" && "$dir" == *-* ]]; then
# # if [[ -d "./appstore_metadata/$dir" ]]; then
# # json="$json\"${dir%/}\": {\"whats_new\": $escaped},"
# # fi
# # done
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
json="$json\"default\": $(build_appinfo_entry),"
for dir in ./appstore_metadata/*/; do
dir="$(basename "$dir")"
if [[ -d "./appstore_metadata/$dir" && "$dir" == *-* ]]; then
if [[ -d "./appstore_metadata/$dir" ]]; then
json="$json\"${dir%/}\": $(build_appinfo_entry "${dir%/}"),"
fi
done
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quicksy.build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
echo -n "$(date +%Y) Thilo Molitor" > "$path_ios/copyright.txt"
for dir in ./appstore_quicksy_metadata/*/; do
dir="$(basename "$dir")"
if [[ -d "./appstore_quicksy_metadata/$dir" && "$dir" == *-* ]]; then
if [[ -d "./appstore_quicksy_metadata/$dir" ]]; then
echo -n "$CHANGELOG_IOS" > "$path_ios/${dir%/}/release_notes.txt"
fi
done
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stable.build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
echo -n "$(date +%Y) Thilo Molitor" > "$path_ios/copyright.txt"
for dir in ./appstore_metadata/*/; do
dir="$(basename "$dir")"
if [[ -d "./appstore_metadata/$dir" && "$dir" == *-* ]]; then
if [[ -d "./appstore_metadata/$dir" ]]; then
echo -n "$CHANGELOG_IOS" > "$path_ios/${dir%/}/release_notes.txt"
fi
done
Expand All @@ -144,7 +144,7 @@ jobs:
echo -n "$(date +%Y) Thilo Molitor" > "$path_macos/copyright.txt"
for dir in ./appstore_metadata/*/; do
dir="$(basename "$dir")"
if [[ -d "./appstore_metadata/$dir" && "$dir" == *-* ]]; then
if [[ -d "./appstore_metadata/$dir" ]]; then
echo -n "$CHANGELOG_MACOS" > "$path_macos/${dir%/}/release_notes.txt"
fi
done
Expand Down

0 comments on commit 8e71aaf

Please sign in to comment.