Skip to content

Commit

Permalink
Add changelog / version bump to 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gasman committed Aug 16, 2021
1 parent f135994 commit be8eafb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
Expand Down

0 comments on commit be8eafb

Please sign in to comment.