From dcec70a0ef07b65d8cb3287e289f294d5f1712cd Mon Sep 17 00:00:00 2001 From: Ethan O'Brien <77750390+ethanaobrien@users.noreply.github.com> Date: Mon, 2 Oct 2023 19:48:55 -0500 Subject: [PATCH] Update to 4.0.7 --- CHANGES.md | 15 +++++++++++++-- data/emulator.js | 6 +++--- data/version.json | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 72a7820..893e3aa 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,10 +1,21 @@ # Changes # 4.0.7 +- Fixed typo in virtual gamepad dpad. +- Added updated desmume core. +- Fixed key mapping (Thanks to [@allancoding](https://github.com/allancoding)) +- Fixed adblock message (Thanks to [@allancoding](https://github.com/allancoding)) +- Added `EJS_startButtonName` option. +- Re-Added ability to drag and drop save states. +- Fixed cheats menu. +- Added popup message for Safari mobile users if game is not running. +- Added `EJS_softLoad` option. + +# 4.0.7 [View Tree](https://github.com/EmulatorJS/EmulatorJS/tree/f579eb4c080f612723fd6a119b02173cafb37503) - Added rewind (Thanks to [@n-at](https://github.com/n-at)) - Added slowdown (Thanks to [@n-at](https://github.com/n-at)) -- Fixes "zone" object in front of settings menu. -- Fixes virtual gamepad alignment. +- Fixed "zone" object in front of settings menu. +- Fixed virtual gamepad alignment. - Add `EJS_fullscreenOnLoaded` option. - Add virtual gamepad toggle to the control menu (for touchscreen devices) - Fix gamepad ID showing as "undefined". diff --git a/data/emulator.js b/data/emulator.js index e90becf..2b961bf 100644 --- a/data/emulator.js +++ b/data/emulator.js @@ -1,5 +1,5 @@ class EmulatorJS { - version = 10; //Increase by 1 when cores are updated + version = 11; //Increase by 1 when cores are updated getCore(generic) { const core = this.config.system; /*todo: @@ -251,8 +251,8 @@ class EmulatorJS { }) } constructor(element, config) { - this.ejs_version = "4.0.7"; - this.ejs_num_version = 40.7; + this.ejs_version = "4.0.8"; + this.ejs_num_version = 40.8; this.debug = (window.EJS_DEBUG_XX === true); if (this.debug || (window.location && ['localhost', '127.0.0.1'].includes(location.hostname))) this.checkForUpdates(); this.netplayEnabled = (window.EJS_DEBUG_XX === true) && (window.EJS_EXPERIMENTAL_NETPLAY === true); diff --git a/data/version.json b/data/version.json index e151119..911687e 100644 --- a/data/version.json +++ b/data/version.json @@ -1 +1 @@ -{ "current_version": 40.7 } +{ "current_version": 40.8 }