Skip to content

Commit

Permalink
feat: Update release information
Browse files Browse the repository at this point in the history
  • Loading branch information
hanjoongcho committed Jun 20, 2024
1 parent 8890692 commit 7f1e9e5
Show file tree
Hide file tree
Showing 19 changed files with 35 additions and 32 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ android {
applicationId "me.blog.korn123.easydiary"
minSdkVersion 21
targetSdkVersion versions.compileSdk
versionCode 311
versionName '1.4.311.202406190'
versionCode 312
versionName '1.4.312.202406200'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
multiDexEnabled true
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/assets/RELEASE_en
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

---------------------------------------------------

# Changes in 1.4.310.202406190 (date: 2024.06.19)
# Changes in 1.4.312.202406200 (date: 2024.06.20)
* Applied Android 12 Splash API

# Changes in 1.4.309.202406100 (date: 2024.06.10)
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/assets/RELEASE_ja
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

---------------------------------------------------

# Changes in 1.4.310.202406190 (date: 2024.06.19)
# Changes in 1.4.312.202406200 (date: 2024.06.20)
* Android 12 スプラッシュ API を適用

# Changes in 1.4.309.202406100 (date: 2024.06.10)
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/assets/RELEASE_ko
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

---------------------------------------------------

# Changes in 1.4.310.202406190 (date: 2024.06.19)
# Changes in 1.4.312.202406200 (date: 2024.06.20)
* 안드로이드12 Splash API 적용

# Changes in 1.4.309.202406100 (date: 2024.06.10)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ import kotlinx.coroutines.withContext
import me.blog.korn123.commons.utils.BiometricUtils.Companion.startListeningBiometric
import me.blog.korn123.commons.utils.BiometricUtils.Companion.startListeningFingerprint
import me.blog.korn123.commons.utils.EasyDiaryUtils
import me.blog.korn123.easydiary.BuildConfig
import me.blog.korn123.easydiary.R
import me.blog.korn123.easydiary.api.models.Contents
import me.blog.korn123.easydiary.api.services.GitHubRepos
Expand Down Expand Up @@ -123,6 +124,7 @@ import retrofit2.converter.scalars.ScalarsConverterFactory
import java.io.File
import java.net.HttpURLConnection
import java.net.URL
import java.util.Locale


open class BaseDevActivity : EasyDiaryActivity() {
Expand Down Expand Up @@ -181,6 +183,7 @@ open class BaseDevActivity : EasyDiaryActivity() {
setSupportActionBar(mBinding.partialAppbarLayout.toolbar)
supportActionBar?.run {
title = "Easy-Diary Dev Mode"
subtitle = String.format(Locale.getDefault(), "v%s_%s_%s (%d)", BuildConfig.VERSION_NAME, BuildConfig.FLAVOR, BuildConfig.BUILD_TYPE, BuildConfig.VERSION_CODE)
setDisplayHomeAsUpEnabled(true)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ open class EasyDiaryActivity : BaseSimpleActivity(), ShakeDetector.Listener {
***************************************************************************************************/
fun checkWhatsNewDialog(applyFilter: Boolean = true) {
arrayListOf<Release>().apply {
add(Release(310, R.string.release_310))
add(Release(312, R.string.release_312))
add(Release(309, R.string.release_309))
add(Release(308, R.string.release_308))
add(Release(307, R.string.release_307))
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-de/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-en/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-fr/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-hi/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-it/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-ja/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Android 14 Foreground Service権限問題が修正されました
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Android 12 スプラッシュ API を適用
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-ko/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
안드로이드14 Foreground Service 권한이슈가 수정됨
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
안드로이드12 Splash API 적용
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-ru/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-sat/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-zh-rCN/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-zh-rTW/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_310">
v1.4.310.202406190 / 2024.06.19\n
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>

Expand Down

0 comments on commit 7f1e9e5

Please sign in to comment.