Version 1.6.2

This commit is contained in:
kichikuou
2025-11-04 10:58:17 +09:00
parent a819fafd56
commit 75e99d3fbc
4 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog # 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 ## 1.6.1 - 2025-06-06
- Fixed crash in Rance 4.1 / 4.2 English translations. (#34) - Fixed crash in Rance 4.1 / 4.2 English translations. (#34)
+1 -1
View File
@@ -228,7 +228,7 @@ if(NINTENDO_SWITCH)
nx_generate_nacp(system3.nacp nx_generate_nacp(system3.nacp
NAME "system3" NAME "system3"
AUTHOR "kichikuou" AUTHOR "kichikuou"
VERSION "1.6.1" VERSION "1.6.2"
) )
nx_create_nro(system3 nx_create_nro(system3
+1 -1
View File
@@ -17,7 +17,7 @@ android {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 34 targetSdkVersion 34
versionCode 17 versionCode 17
versionName "1.6.1" + gitRevision() versionName "1.6.2" + gitRevision()
externalNativeBuild { externalNativeBuild {
cmake { cmake {
arguments "-DANDROID_APP_PLATFORM=android-19", "-DANDROID_STL=c++_static" arguments "-DANDROID_APP_PLATFORM=android-19", "-DANDROID_STL=c++_static"
+1 -1
View File
@@ -7,7 +7,7 @@
#ifndef _COMMON_H_ #ifndef _COMMON_H_
#define _COMMON_H_ #define _COMMON_H_
#define SYSTEM3_VERSION "1.6.1" #define SYSTEM3_VERSION "1.6.2"
#include <stdint.h> #include <stdint.h>