Skip to content

Commit

Permalink
chore: release 0.4.3 version
Browse files Browse the repository at this point in the history
  • Loading branch information
Qu4k committed Jul 17, 2020
1 parent c1803ab commit 066d536
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webview_deno"
version = "0.4.2"
version = "0.4.3"
authors = ["Elias Sj枚green", "Filippo Rossi"]
edition = "2018"

Expand Down
8 changes: 4 additions & 4 deletions plugin.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { prepare, deferred } from "./deps.ts";

const VERSION = "0.4.2";
const VERSION = "0.4.3";

export const PLUGIN_URL_BASE = Deno.env.get("WEBVIEW_DENO_PLUGIN_BASE") ||
`https://github.com/webview/webview_deno/releases/download/${VERSION}`;
Expand Down Expand Up @@ -101,9 +101,9 @@ export async function load(cache = true, verbose = false) {
checkCache: cache,
printLog: verbose,
urls: {
darwin: PLUGIN_URL || `${PLUGIN_URL_BASE}/libdeno_webview.dylib`,
windows: PLUGIN_URL || `${PLUGIN_URL_BASE}/deno_webview.dll`,
linux: PLUGIN_URL || `${PLUGIN_URL_BASE}/libdeno_webview.so`,
darwin: PLUGIN_URL || `${PLUGIN_URL_BASE}/libwebview_deno.dylib`,
windows: PLUGIN_URL || `${PLUGIN_URL_BASE}/webview_deno.dll`,
linux: PLUGIN_URL || `${PLUGIN_URL_BASE}/libwebview_deno.so`,
},
});
}
Expand Down

0 comments on commit 066d536

Please sign in to comment.