Skip to content

Commit

Permalink
6.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Goodwy committed Dec 17, 2024
1 parent f8bed0b commit ce46259
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ class CallActivity : SimpleActivity() {
@SuppressLint("MissingPermission")
@Suppress("DEPRECATION")
override fun onCreate(savedInstanceState: Bundle?) {
addLockScreenFlags()
showTransparentTop = true
updateNavigationBarColor = false
super.onCreate(savedInstanceState)
Expand All @@ -89,7 +90,6 @@ class CallActivity : SimpleActivity() {

initButtons()
audioManager.mode = AudioManager.MODE_IN_CALL
addLockScreenFlags()
CallManager.addListener(callCallback)
updateTextColors(binding.callHolder)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1561,7 +1561,7 @@ class SettingsActivity : SimpleActivity() {
}

private fun setupOptionsMenu() {
val id = 606 //TODO changelog
val id = 607 //TODO changelog
binding.settingsToolbar.menu.apply {
findItem(R.id.whats_new).isVisible = BuildConfig.VERSION_CODE == id
}
Expand All @@ -1578,7 +1578,7 @@ class SettingsActivity : SimpleActivity() {

private fun showWhatsNewDialog(id: Int) {
arrayListOf<Release>().apply {
add(Release(id, R.string.release_606)) //TODO changelog
add(Release(id, R.string.release_607)) //TODO changelog
WhatsNewDialog(this@SettingsActivity, this)
}
}
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/res/values/donottranslate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
<string name="app_name_g">Right Dialer</string>

<!-- Release notes --><!-- TODO changelog -->
<string name="release_607">
Fixed and sped up the call screen
</string>
<string name="release_606">
Bug fixes
</string>
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ app-build-javaVersion = "VERSION_17"
app-build-kotlinJVMTarget = "17"
#versioning
app-version-appId = "com.goodwy.dialer"
app-version-versionCode = "606"
app-version-versionName = "6.0.6"
app-version-versionCode = "607"
app-version-versionName = "6.0.7"
[libraries]
#EventBus
eventbus = { module = "org.greenrobot:eventbus", version.ref = "eventbus" }
Expand Down

0 comments on commit ce46259

Please sign in to comment.