Skip to content

Commit 48fc090

Browse files
authored
Merge pull request #4509 from EmmanuelMess/emmanuelmess/fix/long_fastlane_changes
2 parents 85423c6 + 255044f commit 48fc090

File tree

9 files changed

+39
-106
lines changed

9 files changed

+39
-106
lines changed

.github/workflows/fastlane.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Fastlane checks
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- 'master'
7+
- 'release/*'
8+
- 'hotfix/*'
9+
10+
jobs:
11+
check_description_length:
12+
name: Check Fastlane description is at most 500 chars
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Print all file sizes for debugging
17+
run: wc -m fastlane/metadata/android/*/full_description.txt
18+
- name: Check all files have at most 500 characters
19+
run: |
20+
for s in fastlane/metadata/android/*/full_description.txt; do
21+
size=($(wc -m "$s"));
22+
if [ ${size[0]} -gt 500 ];
23+
then
24+
echo "File ${size[1]} is longer than 500 characters (is ${size[0]})";
25+
exit 1;
26+
fi
27+
done
28+
29+

fastlane/metadata/android/de/full_description.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.

fastlane/metadata/android/el/full_description.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
Light and smooth file manager following the Material Design guidelines.
1+
Light and smooth file manager following the Material Design guidelines
22

33
Features:
44

55
- Basic features like cut, copy, delete, compress, extract
6-
- Multiple tabs for enhancing productivity
6+
- Multiple tabs
77
- Support for multiple themes
8-
- Navigation drawer for quick navigation
98
- App Manager to open, backup, or directly uninstall any app
10-
- Quickly access history, access bookmarks or search for any file
11-
- Root explorer for advanced users
12-
- AES Encryption and Decryption of files for security (Jellybean v4.3+)
13-
- Cloud services support namely SMB, SSH, FTP & SFTP (Jellybean v4.3+ / requires additional plug-in)
14-
- Inbuilt Database Reader, ZIP/RAR Reader, APK Reader and Text Editor
15-
- FTP client support
9+
- Show recent files, access bookmarks or search for files
10+
- Root explorer
11+
- AES Encryption and Decryption of files for security
12+
- Cloud services support namely SMB, SSH, FTP & SFTP
13+
- Inbuilt Database Reader
14+
- ZIP/RAR Reader
15+
- APK Reader
16+
- FTP client

fastlane/metadata/android/eu/full_description.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.

fastlane/metadata/android/hu-rHU/full_description.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.

fastlane/metadata/android/it-rIT/full_description.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.

fastlane/metadata/android/ru/full_description.txt

Lines changed: 0 additions & 11 deletions
This file was deleted.

fastlane/metadata/android/zh-CN/full_description.txt

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)