Version 1.5.1

This commit is contained in:
kichikuou
2025-03-23 14:31:30 +09:00
parent 29770d7091
commit a7e1c5c32e
4 changed files with 9 additions and 3 deletions
+6
View File
@@ -1,5 +1,11 @@
# Changelog
## 1.5.1 - 2025-03-23
- Added quit confirmation dialog
- Android: Back button to exit the game
- Android: Removed 3-finger touch menu
- Bugfixes
## 1.5.0 - 2025-01-20
- Windows: Now system3.exe is a standalone executable. You can just copy it to
the game folder and run it.
+1 -1
View File
@@ -227,7 +227,7 @@ if(NINTENDO_SWITCH)
nx_generate_nacp(system3.nacp
NAME "system3"
AUTHOR "kichikuou"
VERSION "1.5.0"
VERSION "1.5.1"
)
nx_create_nro(system3
+1 -1
View File
@@ -17,7 +17,7 @@ android {
minSdkVersion 21
targetSdkVersion 34
versionCode 16
versionName "1.5.0" + gitRevision()
versionName "1.5.1" + gitRevision()
externalNativeBuild {
cmake {
arguments "-DANDROID_APP_PLATFORM=android-19", "-DANDROID_STL=c++_static"
+1 -1
View File
@@ -7,7 +7,7 @@
#ifndef _COMMON_H_
#define _COMMON_H_
#define SYSTEM3_VERSION "1.5.0"
#define SYSTEM3_VERSION "1.5.1"
#include <SDL.h>
#include <limits.h>