Skip to content

Commit

Permalink
Introduce Update
Browse files Browse the repository at this point in the history
  • Loading branch information
DHD2280 committed Apr 23, 2024
1 parent bd7a33e commit aabf98f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
8 changes: 7 additions & 1 deletion StableChangelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
**1.1.0**
- Bring back fp icon scaling
- Added Lockscreen Weather Margins
- Added Russian Translations
- Added Updater

**1.0.2**
- Removed fp icon causing issues
- Removed fp icon scaling causing issues

**1.0.1**
- Added some Credits
Expand Down
7 changes: 3 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ android {
minSdk = 33
targetSdk = 34
versionCode = 4
versionName = "beta-4"
setProperty("archivesBaseName", "OxygenCustomizer.apk")
versionName = "1.1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down Expand Up @@ -124,7 +123,7 @@ dependencies {

// Preference
implementation("androidx.preference:preference:1.2.1")
implementation("org.apache.commons:commons-text:${rootProject.extra["commonsTextVersion"]}")
implementation("org.apache.commons:commons-text:1.11.0")
// SwipeRefreshLayout
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01")
// ColorPicker
Expand Down Expand Up @@ -162,5 +161,5 @@ dependencies {
}

tasks.register("printVersionName") {
println(android.defaultConfig.versionName)
println(android.defaultConfig.versionName?.replace("-(Stable|Beta)".toRegex(), ""))
}

0 comments on commit aabf98f

Please sign in to comment.