diff --git a/.github/changelog/gitHub.md b/.github/changelog/gitHub.md index 4095cbbe..cd2b969f 100644 --- a/.github/changelog/gitHub.md +++ b/.github/changelog/gitHub.md @@ -1,16 +1,11 @@ -**IMPORTANT**: This update brings the changes from melonDS 0.9.5, 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:** -* Update to melonDS 0.9.5 -* Implement the DSiWare Manager. This allows you to install DSiWare titles to the NAND directly from the emulator -* Allow DS and DSi firmwares to be launched from home screen shortcuts -* Improve search performance when there are a lot of ROMs -* Add option to quickly view enabled cheats -* Fix selected ROM icon filtering not being applied until the app was restarted -* Add monochrome icon -* Add Bahasa Indonesia translation (thanks @NTHGiT) -* Add French translation (thanks @SombrAbsol) -* Add Spanish translation (thanks @BackpackXl) -* Add Portuguese (Brazil) translation (thanks @Bardock88) +* Add support for RetroAchievements (leaderboards are not yet supported) +* Add support for DSi camera +* Add proper support for Wi-Fi connectivity (huge thanks to @JesseTG from the melonDS team!) +* Fix DS firmware not being able to boot under certain scenarios +* Fix some crashes when JIT was enabled +* Fix some issues on startup when save files could not be created +* Updated French translation (thanks @SombrAbsol) +* Updated Russian translation (thanks @6lackmag3) +* Updated Spanish translation (thanks @BackpackXl) * 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 9e5352b7..b1093ba2 100644 --- a/.github/changelog/playStore/whatsnew-en-GB +++ b/.github/changelog/playStore/whatsnew-en-GB @@ -1,9 +1,8 @@ -IMPORTANT: This update brings the changes from melonDS 0.9.5, 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 it! - -• Update to melonDS 0.9.5 -• You can now install DSiWare titles to the NAND -• Add home shortcuts for DS and DSi firmwares -• Improve search performance -• Add option to quickly view enabled cheats -• Monochrome icon -• Add Indonesian, French, Spanish and Portuguese (Brazil) translations \ No newline at end of file +• Add support for RetroAchievements (leaderboards are not yet supported) +• Add support for DSi camera +• Add proper support for Wi-Fi connectivity (huge thanks to Jesse from the melonDS team!) +• Fix DS firmware not being able to boot under certain scenarios +• Fix some crashes when JIT was enabled +• Fix some issues on startup when save files could not be created +• Updated French, Russian and Spanish translations +• 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 cc65ef4d..7d4db15c 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 = "25.1.8937393" - const val versionCode = 26 - const val versionName = "Beta 1.8.0" + const val versionCode = 27 + const val versionName = "Beta 1.9.0" } \ No newline at end of file