ac6502 1.9.2 → 1.9.3

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
@@ -20,7 +20,7 @@ const serialport_1 = require("serialport");
20
20
  const sdl_1 = __importDefault(require("@kmamal/sdl"));
21
21
  const promises_1 = require("fs/promises");
22
22
  const fs_1 = require("fs");
23
- const VERSION = '1.9.1';
23
+ const VERSION = '1.9.3';
24
24
  const WIDTH = 320;
25
25
  const HEIGHT = 240;
26
26
  // Audio constants
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ac6502",
3
- "version": "1.9.2",
3
+ "version": "1.9.3",
4
4
  "description": "Emulator for the A.C. Wright 6502 project",
5
5
  "main": "dist/lib.js",
6
6
  "types": "dist/lib.d.ts",
package/src/index.ts CHANGED
@@ -11,7 +11,7 @@ import sdl from '@kmamal/sdl'
11
11
  import { readFile, writeFile } from 'fs/promises'
12
12
  import { existsSync } from 'fs'
13
13
 
14
- const VERSION = '1.9.2'
14
+ const VERSION = '1.9.3'
15
15
  const WIDTH = 320
16
16
  const HEIGHT = 240
17
17