Skip to content

Commit

Permalink
[fastlane] Prepare for v2.6.4
Browse files Browse the repository at this point in the history
Signed-off-by: Muntashir Al-Islam <[email protected]>
  • Loading branch information
MuntashirAkon committed Sep 17, 2021
1 parent f49effc commit 1751bb0
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 19 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId 'io.github.muntashirakon.AppManager'
minSdkVersion rootProject.ext.minSdk
targetSdkVersion rootProject.ext.targetSdk
versionCode 392
versionName "2.6.3"
versionCode 394
versionName "2.6.4"
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
Expand Down
26 changes: 26 additions & 0 deletions app/src/main/assets/changelog.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
<!-- SPDX-License-Identifier: GPL-3.0-or-later -->

<h5>v2.6.4 (394) stable release:</h5>
This patch release contains bug fixes and feature improvements for the app installer and activity interceptor. This also fixes the caching issues where the files were erroneously cached in the “files” directory instead of the “cache” directory.
<br/>
&#x2022; <b>[1-Click Ops]</b> Added “trim caches from all apps” option<br/>
&#x2022; <b>[Activity
Interceptor]</b> Added options to copy/paste intents, added fields to insert identifier (Android Q+), class and package name, allowed opening intent via root, added two new extra types: Array of URI and List of URI
<br/>
&#x2022; <b>[App
Details]</b> Enabled opening non-exported activity via Activity Interceptor (via root), included “View in Settings” as a horizontal button if root/ADB is not available, improved “running apps” dialog
<br/>
&#x2022; <b>[Docs]</b> Open docs URL if Android WebView is unavailable<br/>
&#x2022;
<b>[Installer]</b> Added support for installing multiple apps at the same time via the share option in any file manager, added option to block trackers after installing an app, enabled downgrading in no-root mode, improved loading dialog, displays app info icon when installation is completed
<br/>
&#x2022; <b>[Log Viewer]</b> Fixed log recording widget and other crashes<br/>
&#x2022; <b>[Locale]</b> Fixed punctuation issues in French<br/>
&#x2022; <b>[Main]</b> Enabled running apps filter in non-root mode, fixed freezing issue, <br/>
&#x2022; <b>[Running Apps]</b> Fixed detecting running apps<br/>
&#x2022;
<b>[Scanner]</b> Prevent deleting APK files which aren't cached in the scanner page, display a footnote for second degree trackers in tracker details dialog
<br/>
&#x2022;
<b>[Settings]</b> Sorted app list by the app label (or app name) in the app installer selection dialog, added option to run installer always in the background, added the option to limit the number of parallel operations (useful for low-end devices)
<br/>
<br/>

<h5>v2.6.3 (392) stable release:</h5>
This patch release contains bug fixes for ADB mode and back up/restore.<br/>
&#x2022; <b>[1-Click Ops]</b> Fixed missing applications<br/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,8 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {
AlertDialog ksDialog;
// Handle KeyStore
if (KeyStoreManager.hasKeyStorePassword()) {
if (Utils.isAppInstalled() || Utils.isAppUpdated()) {
// We already have a working keystore password
try {
char[] password = KeyStoreManager.getInstance().getAmKeyStorePassword();
ksDialog = KeyStoreManager.displayKeyStorePassword(this, password, waitForKS::countDown);
} catch (Exception e) {
Log.e(TAG, e);
ksDialog = null;
}
} else ksDialog = null;
// Do nothing
ksDialog = null;
} else if (KeyStoreManager.hasKeyStore()) {
// We have a keystore but not a working password, input a password (probably due to system restore)
ksDialog = KeyStoreManager.inputKeyStorePassword(this, waitForKS::countDown);
Expand Down
7 changes: 0 additions & 7 deletions fastlane/metadata/android/en-US/changelogs/379.txt

This file was deleted.

3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/394.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This patch release contains bug fixes and feature improvements for the app installer and activity interceptor.
This also fixes the caching issues where the files were erroneously cached in the “files” directory instead of the “cache” directory.
F-Droid doesn't support extended changelog. View in-app changelog for a more helpful and detailed changelog.

0 comments on commit 1751bb0

Please sign in to comment.