-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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
Showing
6 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
} | ||
|
@@ -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%,}}" | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.