Skip to content
This repository was archived by the owner on Aug 9, 2021. It is now read-only.

Commit 43c8a33

Browse files
committed
Add microtask runner
1 parent 8f9ecf7 commit 43c8a33

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

npm/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodegui/qode",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "Qode is a lightly modified fork of Node.js that merges Node's event loop with Qt's event loop. It is designed to be used together with `@nodegui/nodegui`",
55
"main": "index.js",
66
"files": [

src/integration/node_integration.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ void NodeIntegration::UvRunOnce() {
6464
// Deal with uv events.
6565
uv_run(uv_loop_, UV_RUN_NOWAIT);
6666

67+
isolate->RunMicrotasks(); //TODO: fix me
6768
// Tell the worker thread to continue polling.
6869
uv_sem_post(&embed_sem_);
6970
}

src/qode.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "src/integration/node_integration.h"
99
#include "src/helpers/qode_helper.h"
1010

11-
std::string qodeVersion = "2.0.3";
11+
std::string qodeVersion = "2.0.4";
1212

1313
namespace qode {
1414

0 commit comments

Comments
 (0)