Skip to content

Commit 83f281f

Browse files
committed
Up version to v2.5.3
1 parent 2fb72da commit 83f281f

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Logo](https://raw.githubusercontent.com/webui-dev/webui-logo/main/webui_deno.png)
44

5-
# Deno-WebUI v2.5.2 (Beta)
5+
# Deno-WebUI v2.5.3 (Beta)
66

77
[last-commit]: https://img.shields.io/github/last-commit/webui-dev/webui?style=for-the-badge&logo=github&logoColor=C0CAF5&labelColor=414868
88
[release-version]: https://img.shields.io/github/v/tag/webui-dev/webui?style=for-the-badge&logo=webtrees&logoColor=C0CAF5&labelColor=414868&color=7664C6
@@ -40,14 +40,14 @@ is written in Deno using WebUI as the GUI library.
4040

4141
## Installation
4242

43-
Specific version: `import { WebUI } from "https://deno.land/x/[email protected].2/mod.ts";`
43+
Specific version: `import { WebUI } from "https://deno.land/x/[email protected].3/mod.ts";`
4444

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

4747
## Minimal Example
4848

4949
```js
50-
import { WebUI } from "https://deno.land/x/[email protected].2/mod.ts";
50+
import { WebUI } from "https://deno.land/x/[email protected].3/mod.ts";
5151

5252
const myWindow = new WebUI();
5353
myWindow.show('<html><script src="webui.js"></script> Hello World! </html>');

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/[email protected].2/mod.ts";
8+
import { WebUI } from "https://deno.land/x/[email protected].3/mod.ts";
99

1010
// Return HTTP header + file raw binary content
1111
const getFile = async (contentType: string, filename: string): Promise<Uint8Array> => {

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/[email protected].2/mod.ts";
8+
import { WebUI } from "https://deno.land/x/[email protected].3/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/[email protected].2/mod.ts";
8+
import { WebUI } from "https://deno.land/x/[email protected].3/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/[email protected].2/mod.ts";
19+
* import { WebUI } from "https://deno.land/x/[email protected].3/mod.ts";
2020
*
2121
* const myWindow = new WebUI();
2222
* myWindow.show("<html><script src=\"webui.js\"></script> Hello World! </html>");

src/webui.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
WebUI Deno 2.5.2
2+
WebUI Deno 2.5.3
33
http://webui.me
44
https://github.com/webui-dev/deno-webui
55
Copyright (c) 2020-2025 Hassan Draga.
@@ -1067,7 +1067,7 @@ export class WebUI {
10671067
}
10681068

10691069
static get version() {
1070-
return "2.5.2";
1070+
return "2.5.3";
10711071
}
10721072
}
10731073

0 commit comments

Comments
 (0)