Merge branch 'SimpleMobileTools:master' into master

This commit is contained in:
FunkyMuse
2023-08-23 09:29:05 +02:00
committed by GitHub
6 changed files with 10 additions and 10 deletions

View File

@@ -167,7 +167,7 @@ class MainActivity : SimpleActivity(), Calculator {
private fun showHistory() { private fun showHistory() {
HistoryHelper(this).getHistory { HistoryHelper(this).getHistory {
if (it.isEmpty()) { if (it.isEmpty()) {
toast(com.simplemobiletools.calculator.R.string.history_empty) toast(R.string.history_empty)
} else { } else {
HistoryDialog(this, it, calc) HistoryDialog(this, it, calc)
} }
@@ -220,8 +220,8 @@ class MainActivity : SimpleActivity(), Calculator {
private fun checkWhatsNewDialog() { private fun checkWhatsNewDialog() {
arrayListOf<Release>().apply { arrayListOf<Release>().apply {
add(Release(18, com.simplemobiletools.calculator.R.string.release_18)) add(Release(18, R.string.release_18))
add(Release(28, com.simplemobiletools.calculator.R.string.release_28)) add(Release(28, R.string.release_28))
checkWhatsNew(this, BuildConfig.VERSION_CODE) checkWhatsNew(this, BuildConfig.VERSION_CODE)
} }
} }

View File

@@ -8,7 +8,7 @@
<!-- History --> <!-- History -->
<string name="history">Verlauf</string> <string name="history">Verlauf</string>
<string name="history_empty">Verlauf ist leer</string> <string name="history_empty">Verlauf ist leer</string>
<string name="clear_history">Löschen</string> <string name="clear_history">Leeren</string>
<string name="history_cleared">Verlauf ist gelöscht worden</string> <string name="history_cleared">Verlauf ist gelöscht worden</string>
<!-- Settings --> <!-- Settings -->
<string name="vibrate_on_button_press">Bei Tastendruck vibrieren</string> <string name="vibrate_on_button_press">Bei Tastendruck vibrieren</string>

View File

@@ -1 +1 @@
Kalkulačka pre vaše rýchle výpočty s pekným užívateľským rozhraním a bez reklám. Kalkulačka pre vaše rýchle výpočty s pekným užívateľským rozhraním a bez reklám

View File

@@ -20,12 +20,12 @@ exp4j = "0.4.8"
#Room #Room
room = "2.5.2" room = "2.5.2"
#Simple tools #Simple tools
simple-commons = "53ad279f5e" simple-commons = "b80b717ad3"
#Gradle #Gradle
gradlePlugins-agp = "8.1.0" gradlePlugins-agp = "8.1.0"
#build #build
app-build-compileSDKVersion = "34" app-build-compileSDKVersion = "34"
app-build-targetSDK = "33" app-build-targetSDK = "34"
app-build-minimumSDK = "23" app-build-minimumSDK = "23"
app-build-javaVersion = "VERSION_17" app-build-javaVersion = "VERSION_17"
app-build-kotlinJVMTarget = "17" app-build-kotlinJVMTarget = "17"