Skip to content

Commit 0dbf413

Browse files
author
Abner Oliveira
committed
Merge branch 'master' of github.com:abner/flutter_js
2 parents 18a3aef + 1c41654 commit 0dbf413

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 0.4.0+6
2+
3+
- Fix executePendingJobs (wasn't dispatching in the most current version)
14
# 0.4.0+5
25

36
- Removed console.log from fetch.js

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ packages:
7575
path: ".."
7676
relative: true
7777
source: path
78-
version: "0.4.0+5"
78+
version: "0.4.0+6"
7979
flutter_test:
8080
dependency: "direct dev"
8181
description: flutter

lib/quickjs/quickjs_runtime2.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ class QuickJsRuntime2 extends JavascriptRuntime {
214214

215215
@override
216216
int executePendingJob() {
217-
_executePendingJob();
217+
this.dispatch();
218218
return 0;
219219
}
220220

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_js
22
description: A Javascript engine to use with flutter.
33
It uses Quickjs on Android and JavascriptCore on IOS
4-
version: 0.4.0+5
4+
version: 0.4.0+6
55
homepage: https://github.com/abner/flutter_js
66
repository: https://github.com/abner/flutter_js
77

0 commit comments

Comments
 (0)