Skip to content

Commit

Permalink
Version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kichikuou committed Jan 20, 2025
1 parent 8399846 commit 206ba0c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 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.
- Windows: Changed the app icon.

## 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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ if(NINTENDO_SWITCH)
nx_generate_nacp(system3.nacp
NAME "system3"
AUTHOR "kichikuou"
VERSION "1.4.0"
VERSION "1.5.0"
)

nx_create_nro(system3
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
minSdkVersion 19
targetSdkVersion 34
versionCode 16
versionName "1.4.0" + gitRevision()
versionName "1.5.0" + gitRevision()
externalNativeBuild {
cmake {
arguments "-DANDROID_APP_PLATFORM=android-19", "-DANDROID_STL=c++_static"
Expand Down
2 changes: 1 addition & 1 deletion src/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _COMMON_H_
#define _COMMON_H_

#define SYSTEM3_VERSION "1.4.0"
#define SYSTEM3_VERSION "1.5.0"

#include <SDL.h>
#include <limits.h>
Expand Down

0 comments on commit 206ba0c

Please sign in to comment.