Skip to content

Commit

Permalink
publish: 6.22.59
Browse files Browse the repository at this point in the history
  • Loading branch information
caiiiycuk committed Dec 25, 2019
1 parent 0329a66 commit bb200b1
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion dist/docs/api/js-dos-cpp/js-dos-asyncify.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ bool initSyncSleep() {
}
Module.sync_wakeUp = wakeUp;
window.postMessage({ type: "sync_sleep_message", id: Module.sync_id });
window.postMessage({ type: "sync_sleep_message", id: Module.sync_id }, "*");
};
Module.receive = function(ev) {
Expand Down
14 changes: 7 additions & 7 deletions dist/docs/api/js-dos-ts/js-dos-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ gulpfile.js --> generateBuildInfo
```
export const Build = {
version: "6.22.58 (a9107df98f77fd4ca7bd4992c74fdff7)",
jsVersion: "d9155f5d1924730bf09ec6ff9d05d8c72a3740d2",
wasmJsSize: 189747,
wasmVersion: "71fe9ff4a95b096864d85d8faad0ec21",
wasmSize: 1809263,
jsSize: 6656119,
buildSeed: 1576774001420,
version: "6.22.59 (41e421b7818042bda0cd05c85fd24394)",
jsVersion: "0329a6636601ab8227a503d39715874e236caf49",
wasmJsSize: 189751,
wasmVersion: "fb6d6cf569eb6b131117507da32415ce",
wasmSize: 1809269,
jsSize: 6656135,
buildSeed: 1577289108299,
};
Expand Down
2 changes: 1 addition & 1 deletion js-dos-cpp/js-dos-asyncify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ bool initSyncSleep() {
}

Module.sync_wakeUp = wakeUp;
window.postMessage({ type: "sync_sleep_message", id: Module.sync_id });
window.postMessage({ type: "sync_sleep_message", id: Module.sync_id }, "*");
};

Module.receive = function(ev) {
Expand Down
14 changes: 7 additions & 7 deletions js-dos-ts/js-dos-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
// gulpfile.js --> generateBuildInfo

export const Build = {
version: "6.22.58 (a9107df98f77fd4ca7bd4992c74fdff7)",
jsVersion: "d9155f5d1924730bf09ec6ff9d05d8c72a3740d2",
wasmJsSize: 189747,
wasmVersion: "71fe9ff4a95b096864d85d8faad0ec21",
wasmSize: 1809263,
jsSize: 6656119,
buildSeed: 1576774001420,
version: "6.22.59 (41e421b7818042bda0cd05c85fd24394)",
jsVersion: "0329a6636601ab8227a503d39715874e236caf49",
wasmJsSize: 189751,
wasmVersion: "fb6d6cf569eb6b131117507da32415ce",
wasmSize: 1809269,
jsSize: 6656135,
buildSeed: 1577289108299,
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-dos",
"version": "6.22.58",
"version": "6.22.59",
"description": "Easiest API to run dos programs in browser",
"main": "dist/js-dos.js",
"types": "dist/typescript/js-dos.ts",
Expand Down

0 comments on commit bb200b1

Please sign in to comment.