diff --git a/CHANGELOG.md b/CHANGELOG.md index 23a64cd..2abdfec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.6.1 - 2025-06-06 +- Fixed crash in Rance 4.1 / 4.2 English translations. (#34) + ## 1.6.0 - 2025-04-26 - Enabled `Y 240` command in System2 games, to support translation of these games. - Android: "Install from ZIP" button is moved to the top-right option menu. diff --git a/CMakeLists.txt b/CMakeLists.txt index ac1bc71..8b9c589 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -227,7 +227,7 @@ if(NINTENDO_SWITCH) nx_generate_nacp(system3.nacp NAME "system3" AUTHOR "kichikuou" - VERSION "1.6.0" + VERSION "1.6.1" ) nx_create_nro(system3 diff --git a/android/app/build.gradle b/android/app/build.gradle index f97c0c3..72846e6 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -16,8 +16,8 @@ android { defaultConfig { minSdkVersion 21 targetSdkVersion 34 - versionCode 16 - versionName "1.6.0" + gitRevision() + versionCode 17 + versionName "1.6.1" + gitRevision() externalNativeBuild { cmake { arguments "-DANDROID_APP_PLATFORM=android-19", "-DANDROID_STL=c++_static" diff --git a/src/common.h b/src/common.h index 07ddcb4..ab7cd62 100644 --- a/src/common.h +++ b/src/common.h @@ -7,7 +7,7 @@ #ifndef _COMMON_H_ #define _COMMON_H_ -#define SYSTEM3_VERSION "1.6.0" +#define SYSTEM3_VERSION "1.6.1" #include #include