Skip to content

Commit

Permalink
6.4.2-rc5 (#1178)
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 authored Aug 1, 2024
2 parents 516e5e0 + d5d2bc8 commit d45afe9
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/beta.build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,10 @@ jobs:
id: appinfo
run: |
build_appinfo_entry() {
local escaped_marketing_url=$(cat ./appstore_metadata/en-US/marketing_url.txt | jq -sRr @json)
local escaped_privacy_policy_url=$(cat ./appstore_metadata/en-US/privacy_url.txt | jq -sRr @json)
local json="{\"feedback_email\": \"[email protected]\", \"marketing_url\": $escaped_marketing_url, \"privacy_policy_url\": $escaped_privacy_policy_url, \"description\": \"\"}"
local escaped_marketing_url=$(cat ./appstore_metadata/$1/marketing_url.txt | jq -sRr @json)
local escaped_privacy_policy_url=$(cat ./appstore_metadata/$1/privacy_url.txt | jq -sRr @json)
local escaped_description=$(cat ./appstore_metadata/$1/description.txt | jq -sRr @json)
local json="{\"feedback_email\": \"[email protected]\", \"marketing_url\": $escaped_marketing_url, \"privacy_policy_url\": $escaped_privacy_policy_url, \"description\": $escaped_description}"
echo "$json"
}
Expand All @@ -166,7 +167,7 @@ jobs:
for dir in ./appstore_metadata/*/; do
dir="$(basename "$dir")"
if [[ -d "./appstore_metadata/$dir" && "$dir" == *-* ]]; then
json="$json\"${dir%/}\": $(build_appinfo_entry),"
json="$json\"${dir%/}\": $(build_appinfo_entry "${dir%/}"),"
fi
done
json="${json%,}}"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d45afe9

Please sign in to comment.