Release Beta 1.9.2

This commit is contained in:
Rafael Caetano 2023-11-14 22:13:26 +00:00
parent cec702e62a
commit e0547c2c2e
4 changed files with 11 additions and 4 deletions

View File

@ -1,2 +1,4 @@
**Changelog:**
* Fix saves states not saving/loading properly
* Fix startup crash on devices running Android 14
* Fix crash on spanish devices when opening the RetroAchievements screen
* Other minor fixes

View File

@ -1 +1,7 @@
Beta 1.9.2
• Fix startup crash on devices running Android 14
• Fix crash on spanish devices when opening the RetroAchievements screen
• Other minor fixes
Beta 1.9.1
• Fix saves states not saving/loading properly

View File

@ -108,7 +108,6 @@ jobs:
releaseFiles: app/build/outputs/apk/playStoreProd/release/app-playStore-prod-release.apk
track: beta
inAppUpdatePriority: 2
status: draft
whatsNewDirectory: ./.github/changelog/playStore
mappingFile: app/build/outputs/mapping/playStoreProdRelease/mapping.txt
debugSymbols: app/build/outputs/native-debug-symbols/playStoreProdRelease/native-debug-symbols.zip

View File

@ -4,6 +4,6 @@ object AppConfig {
const val minSdkVersion = 21
const val ndkVersion = "25.1.8937393"
const val versionCode = 28
const val versionName = "Beta 1.9.1"
const val versionCode = 29
const val versionName = "Beta 1.9.2"
}