Skip to content

Commit 9e888a4

Browse files
committed
up version from 2.5.3 to 2.5.4
1 parent 6fa2914 commit 9e888a4

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ is written in Deno using WebUI as the GUI library.
4444
## Installation
4545

4646
Specific version:
47-
`import { WebUI } from "https://deno.land/x/webui@2.5.3/mod.ts";`
47+
`import { WebUI } from "https://deno.land/x/webui@2.5.4/mod.ts";`
4848

4949
Latest version: `import { WebUI } from "https://deno.land/x/webui/mod.ts";`
5050

examples/custom_file_handler/custom_file_handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// import { WebUI } from "../../mod.ts";
66

77
// To import from online `https://deno.land` (Production)
8-
import { WebUI } from "https://deno.land/x/webui@2.5.3/mod.ts";
8+
import { WebUI } from "https://deno.land/x/webui@2.5.4/mod.ts";
99

1010
// Return HTTP header + file raw binary content
1111
const getFile = async (

examples/custom_web_server/custom_web_server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// import { WebUI } from "../../mod.ts";
66

77
// To import from online `https://deno.land` (Production)
8-
import { WebUI } from "https://deno.land/x/webui@2.5.3/mod.ts";
8+
import { WebUI } from "https://deno.land/x/webui@2.5.4/mod.ts";
99

1010
function allEvents(e: WebUI.Event) {
1111
/*

examples/hello_world/hello_world.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// import { WebUI } from "../../mod.ts";
66

77
// To import from online `https://deno.land` (Production)
8-
import { WebUI } from "https://deno.land/x/webui@2.5.3/mod.ts";
8+
import { WebUI } from "https://deno.land/x/webui@2.5.4/mod.ts";
99

1010
const myHtml = `<!DOCTYPE html>
1111
<html>

examples/send_raw_binary/send_raw_binary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// import { WebUI } from "../../mod.ts";
66

77
// To import from online `https://deno.land` (Production)
8-
import { WebUI } from "https://deno.land/x/webui@2.5.3/mod.ts";
8+
import { WebUI } from "https://deno.land/x/webui@2.5.4/mod.ts";
99

1010
const myHtml = `<!DOCTYPE html>
1111
<html>

mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* ## Minimal Example
1717
*
1818
* ```ts
19-
* import { WebUI } from "https://deno.land/x/webui@2.5.3/mod.ts";
19+
* import { WebUI } from "https://deno.land/x/webui@2.5.4/mod.ts";
2020
*
2121
* const myWindow = new WebUI();
2222
* myWindow.show("<html><script src=\"webui.js\"></script> Hello World! </html>");

0 commit comments

Comments
 (0)