From 2a6b0dff5df1bee7652fc8f1667b7421f678b0d8 Mon Sep 17 00:00:00 2001 From: Muntashir Al-Islam <muntashirakon@riseup.net> Date: Thu, 4 Aug 2022 16:20:06 +0600 Subject: [PATCH] [fastlane] Prepare for v3.1.0-alpha01 Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net> --- app/src/main/res/raw/changelog.xml | 38 +++++++++++++++++++ .../metadata/android/en-US/changelogs/400.txt | 5 --- .../metadata/android/en-US/changelogs/411.txt | 7 ++++ 3 files changed, 45 insertions(+), 5 deletions(-) delete mode 100644 fastlane/metadata/android/en-US/changelogs/400.txt create mode 100644 fastlane/metadata/android/en-US/changelogs/411.txt diff --git a/app/src/main/res/raw/changelog.xml b/app/src/main/res/raw/changelog.xml index ad8a316a6..dd4635415 100644 --- a/app/src/main/res/raw/changelog.xml +++ b/app/src/main/res/raw/changelog.xml @@ -16,6 +16,44 @@ ]> <changelog> + <release + type="alpha release" + version="v3.1.0-alpha01" + code="411" + date="4 August 2022"> + <new title="Main page">Added option to sort the app list by size</new> + <note subtext="true"> + The loading time has been increased by a few seconds which will be fixed in a later build + </note> + <new title="Main page">Added support for [tt]market://search?q=query[/tt]</new> + <new title="Backup/Restore">Added support for elliptic-curve cryptography (ECC)</new> + <note subtext="true"> + ECC in App Manager uses curve 25519 with ECDH which is wrapped with SHA512withECDSA when storing the key in + the Bouncy Castle KeyStore. + </note> + <new title="Activity Interceptor page">Added option to copy as [tt]am[/tt] command</new> + <note subtext="true"> + [tt]am[/tt] (short for activity manager) or [tt]cmd activity[/tt] (Android 9 and later) can be used to start + an activity from the terminal. This option let user copy the Intent as an [tt]am[/tt] command so that the + same Intent can be invoked in the terminal. But not all extras are supported, only the supported extras are + copied during the operation. + </note> + <new title="Setting"> + Added [a href="app-manager://settings/enabled_features"]option[/a] to disable opening App Info page from the + third-party applications + </new> + <improve title="Security">Removed default signing key</improve> + <note subtext="true"> + Default signing key was publicly available and could have be used by others to distribute malware. Instead, + enabling APK signing before installing an app now requires a signing key to be added (which can be either + generated or imported). + </note> + <fix title="Running Apps page">Fixed double scrollbars</fix> + <note> + [br /][b]Full list of changes:[/b] [a + href="https://github.com/MuntashirAkon/AppManager/compare/v3.0.0...v3.1.0-alpha01"]v3.0.0...v3.1.0-alpha01[/a] + </note> + </release> <release type="stable release" version="v3.0.0" diff --git a/fastlane/metadata/android/en-US/changelogs/400.txt b/fastlane/metadata/android/en-US/changelogs/400.txt deleted file mode 100644 index b8d4493c6..000000000 --- a/fastlane/metadata/android/en-US/changelogs/400.txt +++ /dev/null @@ -1,5 +0,0 @@ -You have to restart your device after updating the app. - -Full list of changes: https://github.com/MuntashirAkon/AppManager/compare/c504b30...9821bc24 - -We're running a funding campaign</b> for App Manager for a limited period. Visit https://opencollective.com/app-manager to learn more. diff --git a/fastlane/metadata/android/en-US/changelogs/411.txt b/fastlane/metadata/android/en-US/changelogs/411.txt new file mode 100644 index 000000000..2c1677d5b --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/411.txt @@ -0,0 +1,7 @@ +- [Main] Added option to sort the app list by size +- [Main] Added support for market://search?q=<query> +- [Backup] Added support for elliptic-curve cryptography (ECC) +- [Interceptor] Added option to copy as `am` command +- [App Info] Added option to disable opening App Info page from the third-party applications +- [Installer] Removed default signing key +- [Running Apps] Fixed double scrollbars -- GitLab