Skip to content

Commit

Permalink
8.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
machiav3lli committed Aug 7, 2022
1 parent ad4ecdd commit 429e2cc
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
CHANGELOG
=========
8.1.1 (07.08.2022) +65 Commits
------------------
- Fix: Sheets scrolling
- Fix: Clumsy updates button on devices with low dpi
- Fix: Restrict process pausing detection
- Fix: Cleaning search bar on close
- Update: Revamp Prefs (based on Compose)
- Update: Revamp export/import tool
- Update: Backups retention limit to 100
- Update: Dynamic theme

8.1.0 (23.07.2022) +300 Commits
------------------
- Add: Dynamic color support (aka Material You)
Expand Down
5 changes: 1 addition & 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 = 8103
versionCode = 8104
versionName = "8.1.1"
buildConfigField("int", "MAJOR", "8")
buildConfigField("int", "MINOR", "1")
Expand All @@ -66,21 +66,18 @@ android {
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
versionNameSuffix = "-rc1"
isMinifyEnabled = true
manifestPlaceholders["appIcon"] = "@mipmap/ic_launcher"
manifestPlaceholders["appIconRound"] = "@mipmap/ic_launcher_round"
}
named("debug") {
applicationIdSuffix = ".debug"
versionNameSuffix = "-rc1"
isMinifyEnabled = false
manifestPlaceholders["appIcon"] = "@mipmap/ic_launcher_vv"
manifestPlaceholders["appIconRound"] = "@mipmap/ic_launcher_round_vv"
}
create("neo") {
applicationIdSuffix = ".neo"
versionNameSuffix = "-rc1"
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
Expand Down
8 changes: 8 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/8103.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Fix: Sheets scrolling
Fix: Clumsy updates button on devices with low dpi
Fix: Restrict process pausing detection
Fix: Cleaning search bar on close
Update: Revamp Prefs (based on Compose)
Update: Revamp export/import tool
Update: Backups retention limit to 100
Update: Dynamic theme

0 comments on commit 429e2cc

Please sign in to comment.