Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/talk-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xapp/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/call_screenshot.png (renamed from screenshots/call_screenshot.png)bin1306221 -> 1306221 bytes
-rwxr-xr-xapp/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/calls_screenshot.png (renamed from screenshots/calls_screenshot.png)bin117779 -> 117779 bytes
-rwxr-xr-xapp/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/calls_search_screenshot.png (renamed from screenshots/calls_search_screenshot.png)bin100658 -> 100658 bytes
-rwxr-xr-xapp/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/contacts_screenshot.png (renamed from screenshots/contacts_screenshot.png)bin77963 -> 77963 bytes
-rwxr-xr-xapp/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/server_entry_screenshot.png (renamed from screenshots/server_entry_screenshot.png)bin40432 -> 40432 bytes
-rwxr-xr-xapp/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/settings_screenshot.png (renamed from screenshots/settings_screenshot.png)bin91967 -> 91967 bytes
-rw-r--r--scripts/metadata/generate_metadata.py11
7 files changed, 4 insertions, 7 deletions
diff --git a/screenshots/call_screenshot.png b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/call_screenshot.png
index ddd2543ab..ddd2543ab 100755
--- a/screenshots/call_screenshot.png
+++ b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/call_screenshot.png
Binary files differ
diff --git a/screenshots/calls_screenshot.png b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/calls_screenshot.png
index 6ebf29e85..6ebf29e85 100755
--- a/screenshots/calls_screenshot.png
+++ b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/calls_screenshot.png
Binary files differ
diff --git a/screenshots/calls_search_screenshot.png b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/calls_search_screenshot.png
index 167aebcc6..167aebcc6 100755
--- a/screenshots/calls_search_screenshot.png
+++ b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/calls_search_screenshot.png
Binary files differ
diff --git a/screenshots/contacts_screenshot.png b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/contacts_screenshot.png
index 25cc32f80..25cc32f80 100755
--- a/screenshots/contacts_screenshot.png
+++ b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/contacts_screenshot.png
Binary files differ
diff --git a/screenshots/server_entry_screenshot.png b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/server_entry_screenshot.png
index a3554a9b4..a3554a9b4 100755
--- a/screenshots/server_entry_screenshot.png
+++ b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/server_entry_screenshot.png
Binary files differ
diff --git a/screenshots/settings_screenshot.png b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/settings_screenshot.png
index b39f7815f..b39f7815f 100755
--- a/screenshots/settings_screenshot.png
+++ b/app/src/Generic/fastlane/metadata/android/en-US/phoneScreenshots/settings_screenshot.png
Binary files differ
diff --git a/scripts/metadata/generate_metadata.py b/scripts/metadata/generate_metadata.py
index 4e127880a..d7ca62932 100644
--- a/scripts/metadata/generate_metadata.py
+++ b/scripts/metadata/generate_metadata.py
@@ -79,16 +79,13 @@ def main():
short_desc = e.find('.//string[@name="nc_store_short_desc"]')
full_desc = e.find('.//string[@name="nc_store_full_desc"]')
if short_desc is not None:
- save_file(short_desc.text, LANG_MAP[entry], 'short_description.txt', False)
+ save_file(short_desc.text, LANG_MAP[entry], 'short_description.txt')
if full_desc is not None:
- save_file(full_desc.text, LANG_MAP[entry], 'full_description.txt', False)
+ save_file(full_desc.text, LANG_MAP[entry], 'full_description.txt')
-def save_file(text, directory, filename, dev):
- if dev:
- directory_path = os.path.join(PATH, METADATA_DEV_PATH, directory)
- else:
- directory_path = os.path.join(PATH, METADATA_PATH, directory)
+def save_file(text, directory, filename):
+ directory_path = os.path.join(PATH, METADATA_PATH, directory)
if not os.path.exists(directory_path):
os.makedirs(directory_path)