Skip to content

Commit

Permalink
Version 4.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanaobrien committed Mar 26, 2024
1 parent cafd80d commit 62c0424
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
14 changes: 13 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Changes

# 4.0.11
# 4.0.12
- Fix scroll bar css (Thanks to [@allancoding](https://github.com/allancoding))
- Flip the context menu instead of going off the page
- Add hooks for save files (Thanks to [@gantoine](https://github.com/gantoine))
- Add class for each virtual gamepad button
- Add `EJS_forceLegacyCores` option
- Add `EJS_noAutoFocus` (this is only for advanced developers, not likely an option you will use)
- Added supported Amiga file extensions (Thanks to [@michael-j-green](https://github.com/michael-j-green))
- Display the file name of the ROM/disk when using M3U lists (Thanks to [@michael-j-green](https://github.com/michael-j-green))
- Added vsync option
- Added advanced shader configuration support (Thanks to [@n-at](https://github.com/n-at))

# 4.0.11 [View Tree](https://github.com/EmulatorJS/EmulatorJS/tree/cafd80d023afa9562c7054e89a4240f3381d64ff)
- Added the ability to disable localstorage using `EJS_disableLocalStorage`. (Thanks to [@n-at](https://github.com/n-at))
- Added the ability to trigger `EJS_emulator.displayMessage` with a duration. (Thanks to [@allancoding](https://github.com/allancoding))
- `EJS_emulator.gameManager.getState` now returns a Uint8Array instead of a promise.
Expand Down
6 changes: 3 additions & 3 deletions data/emulator.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class EmulatorJS {
version = 12; //Increase by 1 when cores are updated
version = 13; //Increase by 1 when cores are updated
getCore(generic) {
const core = this.config.system;
/*todo:
Expand Down Expand Up @@ -269,8 +269,8 @@ class EmulatorJS {
})
}
constructor(element, config) {
this.ejs_version = "4.0.11";
this.ejs_num_version = 401.1;
this.ejs_version = "4.0.12";
this.ejs_num_version = 401.2;
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);
Expand Down
2 changes: 1 addition & 1 deletion data/version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "current_version": 401.1 }
{ "current_version": 401.2 }

0 comments on commit 62c0424

Please sign in to comment.