diff --git a/CHANGELOG.md b/CHANGELOG.md index 63dcf23..4c1ac42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.4.0 - 2025-01-04 +- New supported game: Rance 2 Hint Disk (#33) +- Added `trace` option that logs executed NACT commands on the console +- Improved messages for startup errors + ## 1.3.0 - 2024-12-28 - Added debugger support that can be used from Visual Studio Code. See [vscode-system3x](https://github.com/kichikuou/vscode-system3x) for details. diff --git a/CMakeLists.txt b/CMakeLists.txt index d0718f8..105143c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -207,7 +207,7 @@ if(NINTENDO_SWITCH) nx_generate_nacp(system3.nacp NAME "system3" AUTHOR "kichikuou" - VERSION "0.8.0" + VERSION "1.4.0" ) nx_create_nro(system3 diff --git a/android/app/build.gradle b/android/app/build.gradle index 639eed9..8af2d85 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -16,8 +16,8 @@ android { defaultConfig { minSdkVersion 19 targetSdkVersion 34 - versionCode 15 - versionName "1.3.0" + gitRevision() + versionCode 16 + versionName "1.4.0" + gitRevision() externalNativeBuild { cmake { arguments "-DANDROID_APP_PLATFORM=android-19", "-DANDROID_STL=c++_static" diff --git a/src/common.h b/src/common.h index 195cfd7..70e2409 100644 --- a/src/common.h +++ b/src/common.h @@ -7,7 +7,7 @@ #ifndef _COMMON_H_ #define _COMMON_H_ -#define SYSTEM3_VERSION "1.3.0" +#define SYSTEM3_VERSION "1.4.0" #include #include