Skip to content

Commit

Permalink
Release Version with Name 2.4.0 and Code 9
Browse files Browse the repository at this point in the history
  • Loading branch information
theAkito committed Nov 7, 2021
1 parent 5cea554 commit 5498a93
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 2.4.0 [Code 9] (2021/11/06)
- Fix: Ensure only one Notification per event is dispatched.
- Fix: Periodic Background Check reliability.
- Improve: Various Code Details.
- Add: Advanced Settings Area to Settings Page.
- Add: Advanced Setting: Delete All Website Entries.

# 2.3.0 [Code 8] (2021/11/05)
- Fix: Not resolving AAAA records correctly.
- Improve: DNS Resolution efficiency.
Expand Down
10 changes: 6 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ android {
applicationId = "ooo.akito.webmon"
minSdk = 19
targetSdk = defaultSdkVersion
versionCode = 8
versionName = "2.3.0"
versionCode = 9
versionName = "2.4.0"

multiDexEnabled = true

Expand Down Expand Up @@ -93,7 +93,7 @@ dependencies {
implementation("com.google.android.material:material:1.4.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.1")

// Retrofit and relevant converters
// Retrofit and Relevant Converters
val retrofit_version = "2.9.0"
api("com.squareup.retrofit2:retrofit:$retrofit_version")
api("com.squareup.retrofit2:converter-gson:$retrofit_version")
Expand All @@ -115,7 +115,7 @@ dependencies {

implementation("androidx.work:work-runtime-ktx:2.7.0")

// Swipe refresh
// Swipe Refresh
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")

// Glide
Expand All @@ -140,5 +140,7 @@ dependencies {
//testImplementation("junit:junit:4.13.2")
//androidTestImplementation("androidx.test.ext:junit:1.1.3")
androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0")
/* https://stackoverflow.com/a/61586889/7061105 */
androidTestImplementation("androidx.work:work-testing:2.7.0")

}
5 changes: 5 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- Fix: Ensure only one Notification per event is dispatched.
- Fix: Periodic Background Check reliability.
- Improve: Various Code Details.
- Add: Advanced Settings Area to Settings Page.
- Add: Advanced Setting: Delete All Website Entries.

0 comments on commit 5498a93

Please sign in to comment.