diff --git a/CHANGELOG.md b/CHANGELOG.md index 2abdfec..e661392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.6.2 - 2025-11-04 +- Added support for advancing messages by scrolling the mouse wheel down. +- Windows: The debugger is no longer available in the 32-bit release. Please use the 64-bit version if you need it. +- Fixed memory corruption bug in Prostudent G (FD edition) and Super D.P.S. + ## 1.6.1 - 2025-06-06 - Fixed crash in Rance 4.1 / 4.2 English translations. (#34) diff --git a/CMakeLists.txt b/CMakeLists.txt index 02fb256..b3844a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -228,7 +228,7 @@ if(NINTENDO_SWITCH) nx_generate_nacp(system3.nacp NAME "system3" AUTHOR "kichikuou" - VERSION "1.6.1" + VERSION "1.6.2" ) nx_create_nro(system3 diff --git a/android/app/build.gradle b/android/app/build.gradle index 72846e6..b9dace9 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -17,7 +17,7 @@ android { minSdkVersion 21 targetSdkVersion 34 versionCode 17 - versionName "1.6.1" + gitRevision() + versionName "1.6.2" + gitRevision() externalNativeBuild { cmake { arguments "-DANDROID_APP_PLATFORM=android-19", "-DANDROID_STL=c++_static" diff --git a/src/common.h b/src/common.h index 661e4da..456ca46 100644 --- a/src/common.h +++ b/src/common.h @@ -7,7 +7,7 @@ #ifndef _COMMON_H_ #define _COMMON_H_ -#define SYSTEM3_VERSION "1.6.1" +#define SYSTEM3_VERSION "1.6.2" #include