Skip to content

Commit 8ca1315

Browse files
committed
Release 5.4.4
New parameters override by code. New BOOSTED Machine Preset. MSX2++ will be removed in future releases.
1 parent 8fba701 commit 8ca1315

File tree

14 files changed

+56
-38
lines changed

14 files changed

+56
-38
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "WebMSX",
33
"title": "WebMSX - The online MSX emulator",
4-
"version": "5.4.3",
4+
"version": "5.4.4",
55
"devDependencies": {
66
"grunt": "",
77
"grunt-contrib-clean": "",

release/stable/5.4/cbios/embedded/wmsx.js

Lines changed: 10 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/stable/5.4/cbios/standalone/cache.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# Version 5.4.3
2+
# Version 5.4.4
33
# Stable
44

55
CACHE:

release/stable/5.4/cbios/standalone/index.html

Lines changed: 11 additions & 7 deletions
Large diffs are not rendered by default.

release/stable/5.4/embedded/wmsx.js

Lines changed: 10 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/stable/5.4/standalone/cache.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# Version 5.4.3
2+
# Version 5.4.4
33
# Stable
44

55
CACHE:

release/stable/5.4/standalone/index.html

Lines changed: 11 additions & 7 deletions
Large diffs are not rendered by default.

src/main/Launcher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ if (window.applicationCache) {
114114
else window.applicationCache.addEventListener("updateready", onUpdateReady);
115115
}
116116

117-
WMSX.VERSION = "5.4.3";
117+
WMSX.VERSION = "5.4.4";
118118

119119
// Start pre-loading images right away
120120
WMSX.preLoadImagesAndStart();

src/main/WMSX.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// WebMSX version 5.4.3
1+
// WebMSX version 5.4.4
22
// Copyright 2015 by Paulo Augusto Peccin. See license.txt distributed with this file.
33

44
// Main Emulator parameters.
@@ -119,6 +119,7 @@ WMSX = {
119119
};
120120

121121
WMSX.MACHINES_CONFIG = {
122+
// MSX2++ WILL BE REMOVED in future releases
122123
MSX2PP: { DESCX: "MSX2++ Auto Detect", AUTO_TYPE: 4 },
123124
MSX2P: { DESCX: "MSX2+ Auto Detect", AUTO_TYPE: 3 },
124125
MSX2: { DESCX: "MSX2 Auto Detect", AUTO_TYPE: 2 },
@@ -240,7 +241,7 @@ WMSX.PRESETS_CONFIG = {
240241

241242
BOOSTED: { CPU_TURBO_MODE: 3, VDP_TURBO_MODE: 3, BOOT_DURATION_AUTO: 165, _INCLUDE: "HARDDISK" },
242243

243-
// MSX2++ Machine Presets. Do not use directly
244+
// MSX2++ Machine Presets. Do not use directly. WILL BE REMOVED in future releases
244245

245246
_MSX2PPA: {
246247
_INCLUDE: "_MSX2PA, _MSX2PPBASE",

0 commit comments

Comments
 (0)