Skip to content

Commit

Permalink
Merge branch 'master' of github.com:abner/flutter_js
Browse files Browse the repository at this point in the history
  • Loading branch information
Abner Oliveira committed May 5, 2021
2 parents 18a3aef + 1c41654 commit 0dbf413
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.4.0+6

- Fix executePendingJobs (wasn't dispatching in the most current version)
# 0.4.0+5

- Removed console.log from fetch.js
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.4.0+5"
version: "0.4.0+6"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down
2 changes: 1 addition & 1 deletion lib/quickjs/quickjs_runtime2.dart
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ class QuickJsRuntime2 extends JavascriptRuntime {

@override
int executePendingJob() {
_executePendingJob();
this.dispatch();
return 0;
}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: flutter_js
description: A Javascript engine to use with flutter.
It uses Quickjs on Android and JavascriptCore on IOS
version: 0.4.0+5
version: 0.4.0+6
homepage: https://github.com/abner/flutter_js
repository: https://github.com/abner/flutter_js

Expand Down

0 comments on commit 0dbf413

Please sign in to comment.