diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b348f93 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +3.0.1 (2021-08-16) +------------------ + +* Fix relative jump instructions to not treat +0x7f as -0x81 (which broke the Protracker 3 player) + + +3.0 (2021-08-14) +---------------- + +Initial release of JSSpeccy 3. + +* Web Worker and WebAssembly emulation core +* 48K, 128K, Pentagon emulaton +* Accurate multicolour +* AY and beeper audio +* TAP, TZX, Z80, SNA, SZX, ZIP loading +* Fullscreen mode +* Browsing games from Internet Archive diff --git a/package.json b/package.json index 4c4726f..ca3f1b5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jsspeccy", - "version": "3.0.0", + "version": "3.0.1", "description": "a ZX Spectrum emulator in the browser", "main": "jsspeccy.js", "type": "module", @@ -10,7 +10,7 @@ "build:wasm:debug": "asc build/core.ts --target debug", "build:wasm:release": "asc build/core.ts --target release", "build:js": "mkdir -p dist/jsspeccy && webpack", - "build:static": "mkdir -p dist/jsspeccy && cp static/index.html dist/ && cp static/favicon.ico dist/ && cp README.md dist/ && cp COPYING dist/ && cp -r static/roms dist/jsspeccy && cp -r static/tapeloaders dist/jsspeccy", + "build:static": "mkdir -p dist/jsspeccy && cp static/index.html dist/ && cp static/favicon.ico dist/ && cp README.md dist/ && cp COPYING dist/ && cp CHANGELOG.md dist/ && cp -r static/roms dist/jsspeccy && cp -r static/tapeloaders dist/jsspeccy", "build": "npm run build:core && npm run build:wasm:debug && npm run build:js && npm run build:static", "build:release": "npm run build:core && npm run build:wasm:release && npm run build:js && npm run build:static", "watch": "npm-watch"