Skip to content

Commit 429e2cc

Browse files
committed
8.1.1
1 parent ad4ecdd commit 429e2cc

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
CHANGELOG
22
=========
3+
8.1.1 (07.08.2022) +65 Commits
4+
------------------
5+
- Fix: Sheets scrolling
6+
- Fix: Clumsy updates button on devices with low dpi
7+
- Fix: Restrict process pausing detection
8+
- Fix: Cleaning search bar on close
9+
- Update: Revamp Prefs (based on Compose)
10+
- Update: Revamp export/import tool
11+
- Update: Backups retention limit to 100
12+
- Update: Dynamic theme
13+
314
8.1.0 (23.07.2022) +300 Commits
415
------------------
516
- Add: Dynamic color support (aka Material You)

app/build.gradle.kts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ android {
3939
applicationId = "com.machiav3lli.backup"
4040
minSdk = 26
4141
targetSdk = 32
42-
versionCode = 8103
42+
versionCode = 8104
4343
versionName = "8.1.1"
4444
buildConfigField("int", "MAJOR", "8")
4545
buildConfigField("int", "MINOR", "1")
@@ -66,21 +66,18 @@ android {
6666
getDefaultProguardFile("proguard-android-optimize.txt"),
6767
"proguard-rules.pro"
6868
)
69-
versionNameSuffix = "-rc1"
7069
isMinifyEnabled = true
7170
manifestPlaceholders["appIcon"] = "@mipmap/ic_launcher"
7271
manifestPlaceholders["appIconRound"] = "@mipmap/ic_launcher_round"
7372
}
7473
named("debug") {
7574
applicationIdSuffix = ".debug"
76-
versionNameSuffix = "-rc1"
7775
isMinifyEnabled = false
7876
manifestPlaceholders["appIcon"] = "@mipmap/ic_launcher_vv"
7977
manifestPlaceholders["appIconRound"] = "@mipmap/ic_launcher_round_vv"
8078
}
8179
create("neo") {
8280
applicationIdSuffix = ".neo"
83-
versionNameSuffix = "-rc1"
8481
isMinifyEnabled = false
8582
proguardFiles(
8683
getDefaultProguardFile("proguard-android-optimize.txt"),
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Fix: Sheets scrolling
2+
Fix: Clumsy updates button on devices with low dpi
3+
Fix: Restrict process pausing detection
4+
Fix: Cleaning search bar on close
5+
Update: Revamp Prefs (based on Compose)
6+
Update: Revamp export/import tool
7+
Update: Backups retention limit to 100
8+
Update: Dynamic theme

0 commit comments

Comments
 (0)