Skip to content

Releases: webview/webview_deno

deno 1.0.5 support and fixed ci!

12 Jun 14:50
Compare
Choose a tag to compare

Some new examples have been added along with fixing the unload issue when running in a worker.

Fix plugin caching

16 May 12:21
Compare
Choose a tag to compare

This release fixes cache checking for the plugin when not using the DEV environment variable.

Deno 1.0.0 support!

15 May 21:08
Compare
Choose a tag to compare

This release adds support for deno 1.0.0 and a close method for closing the plugin resource.

Deno 0.41.0 support

16 Apr 15:41
Compare
Choose a tag to compare

This release bumps the dependencies and adds 0.41.0 support

Bumped dependencies

15 Apr 07:32
Compare
Choose a tag to compare

This release bumps the rust dependencies to support the latest version of deno.

The run method now returns

03 Apr 10:44
Compare
Choose a tag to compare

I forgot breaking out of the run loop but it now does it which makes makes deno exit after finishing.

The run method no longer blocks deno

21 Mar 23:40
Compare
Choose a tag to compare

This release fixes improves #5 and no longer blocks deno execution by making a custom rust op for WebView.run() and making it async. WebView.run() is no longer a sync method but returns a Promise which may break some existing code.

Edge support

17 Mar 15:15
Compare
Choose a tag to compare

This release adds edge support (#3) and fixes caching (#4).

Better errors and rust responses

16 Mar 18:46
Compare
Choose a tag to compare
  • Improves the errors thrown when for example using an incorrect instance id
  • All responses from the rust code is now json instead of single numbers
  • Build and dev scripts
  • Removed injectCss
  • Updated webview-sys to 0.5.0

Multi-instance and frameless support

14 Mar 00:44
Compare
Choose a tag to compare

Added multi-instance (window) support and updated dependencies enabling frameless support. This release also removes the WebView.dispose() method.