Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/fastlane.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Fastlane checks

on:
pull_request:
branches:
- 'master'
- 'release/*'
- 'hotfix/*'

jobs:
check_description_length:
name: Check Fastlane description is at most 500 chars
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Print all file sizes for debugging
run: wc -m fastlane/metadata/android/*/full_description.txt
- name: Check all files have at most 500 characters
run: |
for s in fastlane/metadata/android/*/full_description.txt; do
size=($(wc -m "$s"));
if [ ${size[0]} -gt 500 ];
then
echo "File ${size[1]} is longer than 500 characters (is ${size[0]})";
exit 1;
fi
done


15 changes: 0 additions & 15 deletions fastlane/metadata/android/de/full_description.txt

This file was deleted.

15 changes: 0 additions & 15 deletions fastlane/metadata/android/el/full_description.txt

This file was deleted.

19 changes: 10 additions & 9 deletions fastlane/metadata/android/en-US/full_description.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
Light and smooth file manager following the Material Design guidelines.
Light and smooth file manager following the Material Design guidelines

Features:

- Basic features like cut, copy, delete, compress, extract
- Multiple tabs for enhancing productivity
- Multiple tabs
- Support for multiple themes
- Navigation drawer for quick navigation
- App Manager to open, backup, or directly uninstall any app
- Quickly access history, access bookmarks or search for any file
- Root explorer for advanced users
- AES Encryption and Decryption of files for security (Jellybean v4.3+)
- Cloud services support namely SMB, SSH, FTP & SFTP (Jellybean v4.3+ / requires additional plug-in)
- Inbuilt Database Reader, ZIP/RAR Reader, APK Reader and Text Editor
- FTP client support
- Show recent files, access bookmarks or search for files
- Root explorer
- AES Encryption and Decryption of files for security
- Cloud services support namely SMB, SSH, FTP & SFTP
- Inbuilt Database Reader
- ZIP/RAR Reader
- APK Reader
- FTP client
15 changes: 0 additions & 15 deletions fastlane/metadata/android/eu/full_description.txt

This file was deleted.

15 changes: 0 additions & 15 deletions fastlane/metadata/android/hu-rHU/full_description.txt

This file was deleted.

15 changes: 0 additions & 15 deletions fastlane/metadata/android/it-rIT/full_description.txt

This file was deleted.

11 changes: 0 additions & 11 deletions fastlane/metadata/android/ru/full_description.txt

This file was deleted.

11 changes: 0 additions & 11 deletions fastlane/metadata/android/zh-CN/full_description.txt

This file was deleted.

Loading