Release Beta 1.6.1

This commit is contained in:
Rafael Caetano 2021-08-25 20:38:43 +01:00
parent 13ccc839be
commit 933e5bfc49
4 changed files with 15 additions and 15 deletions

View File

@ -1,11 +1,7 @@
**Changelog:**
* melonDS Android is now available on the [Play Store](https://play.google.com/store/apps/details?id=me.magnum.melonds)! This exact version will become available there in a few hours
* Support for additional video filters (feel free to suggest more)
* In-app update check feature
* Support for 7z files
* Allow haptic feedback strength to be adjusted
* Allow layouts to have a fixed orientation
* Allow ROM cache size to be adjustable
* Fix crash when changing the theme while a game is running (#429)
* Fix audio stopping when changing output device (#320)
* Other minor fixes and improvements
* 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

View File

@ -1,2 +1,6 @@
• Fix crash when entering the "Custom BIOS and firmware" screen
• Fix audio stopping when changing output device
• 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

View File

@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions
name: melonDS Android Build
name: melonDS Android Nightly Build
# Controls when the action will run.
on:

View File

@ -4,6 +4,6 @@ object AppConfig {
const val minSdkVersion = 21
const val ndkVersion = "21.3.6528147"
const val versionCode = 19
const val versionName = "Beta 1.6.0"
const val versionCode = 20
const val versionName = "Beta 1.6.1"
}