Skip to content

Commit

Permalink
8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
machiav3lli committed Oct 22, 2022
1 parent 0b8d39d commit 49203ea
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 4 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
CHANGELOG
=========
8.2.0 (22.10.2022) +150 Commits
------------------
- Add: Support for themed icon on A13
- Add: Option to backup no_backup files
- Add: Option for multiline InfoChips Pref
- Add: Option to Squeeze NavItems' text instead of ellipsis
- Add: Note about downgrading being only supported by debuggable packages
- Add: Selectable Home items with context menu (needs heavy testing)
- Update: New icons (Phosphor icons)
- Update: Allow to backup the app
- Update: TopBar layout
- Update: Set better fitting view composition strategy for Sheets
- Update: Make progress bars global
- Update: Migrate SplashActivity to compose
- Update: BackupItem's layout to better fit low dpi and huge fonts
- Update: Improve error messages to include a log
- Update: Revamp password dialog
- Update: Show error message when passwords don't match
- Fix: Handling when apk is not called base.apk
- Fix: Auto updating AppSheet after uninstall/enable/disable/restore
- Fix: Crash on recreating app with a Sheet initiated
- Fix: Crash on prefs having wrong data
- Fix: Forwarding to Main directly from Intro
- Fix: Tonal surface follows set accent color
- Fix: Not respecting default Backup prefs
- Fix: StringPref value not shown
- Fix: Password field not being marked as password
- Fix: Device/biometric lock prompt throwing exception
- Fix: SeekBar's layout
- Fix: TopBar title for Exports & Logs
- Fix: Version name alignment in HelpSheet
- Remove: Tint for Prefs' icons
- Remove: Xml-based unused resources (replaced with compose-based)

8.1.3 (20.09.2022) +50 Commits
------------------
- Update: Migrate navigation fully to Compose
Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
applicationId = "com.machiav3lli.backup"
minSdk = 26
targetSdk = 32
versionCode = 8200
versionCode = 8201
versionName = "8.2.0"
buildConfigField("int", "MAJOR", "8")
buildConfigField("int", "MINOR", "2")
Expand All @@ -66,21 +66,21 @@ android {
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
versionNameSuffix = "-alpha01"
//versionNameSuffix = "-alpha01"
isMinifyEnabled = true
manifestPlaceholders["appIcon"] = "@mipmap/ic_launcher"
manifestPlaceholders["appIconRound"] = "@mipmap/ic_launcher_round"
}
named("debug") {
applicationIdSuffix = ".debug"
versionNameSuffix = "-alpha01"
//versionNameSuffix = "-alpha01"
isMinifyEnabled = false
manifestPlaceholders["appIcon"] = "@mipmap/ic_launcher_vv"
manifestPlaceholders["appIconRound"] = "@mipmap/ic_launcher_round_vv"
}
create("neo") {
applicationIdSuffix = ".neo"
versionNameSuffix = "-alpha01"
//versionNameSuffix = "-alpha01"
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
Expand Down
9 changes: 9 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/8201.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Add: Support for themed icon on A13
Add: Selectable Home items with context menu (still needs testing)
Update: New icons (Phosphor icons)
Update: Allow to backup itself
Update: Revamp password dialog
Fix: Handling when apk is not called base.apk
Fix: Auto updating AppSheet after uninstall/enable/disable/restore
Fix: Crash on recreating app with a Sheet initiated
among others…

0 comments on commit 49203ea

Please sign in to comment.