diff --git a/app/build.gradle b/app/build.gradle index c15f91c3740eef808ac3bb4df7b291216b475108..1cf6b0b2df6b11351fc1ff50e2b044a87ea55aff 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -13,8 +13,8 @@ android { applicationId 'io.github.muntashirakon.AppManager' minSdk min_sdk targetSdk target_sdk - versionCode 418 - versionName "3.1.0-beta01" + versionCode 419 + versionName "3.1.0-beta02" javaCompileOptions { annotationProcessorOptions { arguments = ["room.schemaLocation": "$projectDir/schemas".toString()] diff --git a/app/src/main/res/raw/changelog.xml b/app/src/main/res/raw/changelog.xml index ec02afc5a9e5b4ba6e3889ae96cad2a78a0fc5a8..548b1492bae453254f933b689c1f05ab18309999 100644 --- a/app/src/main/res/raw/changelog.xml +++ b/app/src/main/res/raw/changelog.xml @@ -16,6 +16,47 @@ ]> <changelog> + <release + type="beta release" + version="v3.1.0-beta02" + code="419" + date="22 February 2023"> + <new>Target Android 13</new> + <new>Added monochrome icon for Android 13</new> + + <improve>Ensured forward-compatibility in app ops</improve> + <note subtext="true"> + App Manager now handles vendor-specific app ops, newly added app ops in the AOSP, etc. automatically to + prevent random crashes. + </note> + <improve>Prevented backing up the [tt]android[/tt] package</improve> + <note subtext="true"> + This particular package is the heart of Android and shouldn't be backed up or restored. + </note> + <improve>Improved the loading time of the App Info tab</improve> + <note subtext="true"> + At startup, App Manager attempts to invalidate backup data which can take more than half a minute if there + are a lot of backups. Hence, during this period, if one tries to browse the app info tab, the whole tab will + not be loaded as it is waiting for the previous process to complete. This issue is fixed by using the cached + backup data stored in a previous attempt. This cached data is also validated to ensure that they actually + exist. + </note> + + <fix>Fixed issues with bottom sheet dialogs</fix> + <fix>Fixed restoring backups for other users</fix> + <fix>Fixed scrolling issues in backup/restore dialog</fix> + <fix>Fixed various theming issues</fix> + <fix>Use [tt]/data/media[/tt] instead of [tt]/storage/emulated[/tt] for other users</fix> + <note subtext="true"> + In the newer versions of Android, [tt]/storage/emulated[/tt] directories belonging to another user (say, a + work profile) cannot be accessed even with root. However, [tt]/data/media[/tt] is only accessible with root. + Therefore, the later directory is used instead. + </note> + <note> + [br /][b]Full list of changes:[/b] [a + href="https://github.com/MuntashirAkon/AppManager/compare/v3.1.0-beta01...v3.1.0-beta02"]v3.1.0-beta01...v3.1.0-beta02[/a] + </note> + </release> <release type="beta release" version="v3.1.0-beta01" diff --git a/fastlane/metadata/android/en-US/changelogs/404.txt b/fastlane/metadata/android/en-US/changelogs/404.txt deleted file mode 100644 index e68a1df6e853b02edf9abb6226a6dcab8f6b92d2..0000000000000000000000000000000000000000 --- a/fastlane/metadata/android/en-US/changelogs/404.txt +++ /dev/null @@ -1,3 +0,0 @@ -You have to restart your device and/or clear cache after updating the app if you are not updating from v3.0.0-rc01. - -Full list of changes: https://github.com/MuntashirAkon/AppManager/compare/v3.0.0-rc01...v3.0.0-rc02 diff --git a/fastlane/metadata/android/en-US/changelogs/419.txt b/fastlane/metadata/android/en-US/changelogs/419.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7b4957181da72aa2413151779516dfef8209b1b --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/419.txt @@ -0,0 +1,9 @@ +- Target Android 13 +- Added monochrome icon for Android 13 +- Ensured forward-compatibility in app ops +- Fixed restoring backups for other users +- Improved the loading time of the App Info tab +- Prevented backing up the `android` package +- Fixed scrolling issues in backup/restore dialog +- Fixed various theming issues +- Use `/data/media` instead of `/storage/emulated` for other users