ac6502 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ const Machine_1 = require("./components/Machine");
18
18
  const commander_1 = require("commander");
19
19
  const serialport_1 = require("serialport");
20
20
  const sdl_1 = __importDefault(require("@kmamal/sdl"));
21
- const VERSION = '1.0.0';
21
+ const VERSION = '1.1.1';
22
22
  const WIDTH = 320;
23
23
  const HEIGHT = 240;
24
24
  // Audio constants
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ac6502",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Emulator for the A.C. Wright 6502 project",
5
5
  "main": "index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -9,7 +9,7 @@ import { StorageCard } from './components/IO/StorageCard'
9
9
  import { SoundCard } from './components/IO/SoundCard'
10
10
  import sdl from '@kmamal/sdl'
11
11
 
12
- const VERSION = '1.1.0'
12
+ const VERSION = '1.1.1'
13
13
  const WIDTH = 320
14
14
  const HEIGHT = 240
15
15