diff --git a/CHANGELOG.md b/CHANGELOG.md index e796595..f6a29bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.17.0 - 2025-11-09 +- Added "Streamer Mode" to mosaic specified (NSFW) images. This is enabled via the `-censor ` command-line option. +- Windows: Fixed an issue where Rance 5D could not save files if the `Save` directory did not exist. + ## 2.16.1 - 2025-08-28 - Fixed text rendering issue in SACT log (#71) - Windows: The 32-bit version no longer supports the portmidi MIDI backend diff --git a/CMakeLists.txt b/CMakeLists.txt index 9eb72f5..bf646f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ set(CMAKE_C_STANDARD 99) enable_testing() set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE) -set(XSYSTEM35_VERSION "2.16.1") +set(XSYSTEM35_VERSION "2.17.0") include(CheckSymbolExists) include(FetchContent) diff --git a/android/app/build.gradle b/android/app/build.gradle index 986bf7e..91e1e1a 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -17,7 +17,7 @@ android { minSdkVersion 21 targetSdkVersion 34 versionCode 36 - versionName "2.16.1" + gitRevision() + versionName "2.17.0" + gitRevision() externalNativeBuild { cmake { arguments "-DANDROID_APP_PLATFORM=android-19", "-DANDROID_STL=c++_static"