Skip to content

Commit e1fa10d

Browse files
committed
add keyboard api
1 parent 864525a commit e1fa10d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "emulators",
3-
"version": "8.3.3-dosasm2",
3+
"version": "8.3.3-dosasm3",
44
"description": "Emulators (dos) with standartized API",
55
"main": "dist/out/emulators.js",
66
"types": "dist/out/emulators.d.ts",

src/build.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// gulpfile.ts/wasm.ts --> generateBuildInfo
66

77
export const Build = {
8-
version: "8.3.3-dosasm1 (58531736a08ff69e3fde6f868d171413)",
9-
buildSeed: 1735270038116,
8+
version: "8.3.3-dosasm3 (a0aa412d00b107b09cb42977e823b64a)",
9+
buildSeed: 1735270484798,
1010
"wdosbox-x.wasm": {
1111
"size": 6307498,
1212
"gzSize": 2296656

src/emulators.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ if (typeof window !== "undefined") {
169169
(global as any).emulators = emulatorsImpl;
170170
}
171171

172-
import {String2jsdosCode} from "./string2jsdoskey";
172+
import {String2jsdosCode,HtmlKeyCode2jsdos} from "./string2jsdoskey";
173173
import {Build} from "./build";
174174
import {Keys} from "./keys";
175175

@@ -179,6 +179,7 @@ export function get_emulators():Emulators{
179179

180180
export const utils = {
181181
String2jsdosCode,
182+
HtmlKeyCode2jsdos,
182183
Build,
183184
Keys,
184185
}

0 commit comments

Comments
 (0)