Version 1.3.0

This commit is contained in:
kichikuou
2024-12-28 16:27:21 +09:00
parent ff530981ff
commit 320f790fb3
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog
## 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.
- Fixed crash at startup of D.P.S. All.
## 1.2.1 - 2024-12-21
- Fixed an issue where post-load messages were not displayed in some games
- Fixed a graphic issue in the underground passage in Intruder (#31)
+2 -2
View File
@@ -16,8 +16,8 @@ android {
defaultConfig {
minSdkVersion 19
targetSdkVersion 34
versionCode 14
versionName "1.2.1" + gitRevision()
versionCode 15
versionName "1.3.0" + 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.2.1"
#define SYSTEM3_VERSION "1.3.0"
#include <SDL.h>
#include <assert.h>