diff --git a/.github/changelog/gitHub.md b/.github/changelog/gitHub.md index b685a492..6d90de99 100644 --- a/.github/changelog/gitHub.md +++ b/.github/changelog/gitHub.md @@ -1,7 +1,15 @@ +**IMPORTANT**: This update brings the changes from melonDS 0.9.3, which has incompatible saves-states with the previous version. If you rely on save-states to keep your +progress, be aware that you will lose your progress! + **Changelog:** -* Remove support for 7z files on devices running Android M or lower -* Fix crash when processing large 7z files -* Fix crash when selecting directories under certain circumstances -* Fix crash when loading a ROM with the "Load GBA ROM" option selected but no save file was selected -* Load ROM icons asynchronously -* Other minor improvements \ No newline at end of file +* Update to melonDS 0.9.3 +* Add support for Rewind. This automatically saves your state periodically allowing you to quickly go back in time when you make a mistake in a game +* Include screenshots in save states +* Allow save states to be deleted +* Add buttons to quickly save and load a state (not present in the default layout) +* Redesign Settings screen. Each category is now grouped into a separate screen +* Add volume setting +* Add audio latency setting +* Prevent ZIP files from being selected as the ROM search directory (only happened on some devices) +* Add Russian translation (thanks @6lackmag3) +* Other minor fixes and improvements \ No newline at end of file diff --git a/.github/changelog/playStore/whatsnew-en-GB b/.github/changelog/playStore/whatsnew-en-GB index c82206eb..1b4306ee 100644 --- a/.github/changelog/playStore/whatsnew-en-GB +++ b/.github/changelog/playStore/whatsnew-en-GB @@ -1,6 +1,13 @@ -• Remove support for 7z files on devices running Android M or lower -• Fix crash when processing large 7z files -• Fix crash when selecting directories under certain circumstances -• Fix crash when loading a ROM with the "Load GBA ROM" option selected but no save file was selected -• Load ROM icons asynchronously -• Other minor improvements \ No newline at end of file +IMPORTANT: This update brings the changes from melonDS 0.9.3, which has incompatible saves-states with the previous version. If you rely on save-states to keep your progress, be aware that you will lose your progress! + +• Update to melonDS 0.9.3 +• Add support for Rewind. This automatically saves your state periodically allowing you to quickly go back in time when you make a mistake in a game +• Include screenshots in save states +• Allow save states to be deleted +• Add buttons to quickly save and load a state (not present in the default layout) +• Redesign Settings screen. Each category is now grouped into a separate screen +• Add volume setting +• Add audio latency setting +• Prevent ZIP files from being selected as the ROM search directory (only happened on some devices) +• Add Russian translation +• Other minor fixes and improvements \ No newline at end of file diff --git a/buildSrc/src/main/kotlin/AppConfig.kt b/buildSrc/src/main/kotlin/AppConfig.kt index 77eb7ac8..938df981 100644 --- a/buildSrc/src/main/kotlin/AppConfig.kt +++ b/buildSrc/src/main/kotlin/AppConfig.kt @@ -4,6 +4,6 @@ object AppConfig { const val minSdkVersion = 21 const val ndkVersion = "21.3.6528147" - const val versionCode = 20 - const val versionName = "Beta 1.6.1" + const val versionCode = 21 + const val versionName = "Beta 1.7.0" } \ No newline at end of file