Skip to content

Commit 0bb0829

Browse files
authored
Merge pull request #98 from sigmaSd/b2
Update docs
2 parents 4c9113b + daf84ff commit 0bb0829

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
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.8 (Beta)
5+
# Deno-WebUI v2.5.9 (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
@@ -46,9 +46,9 @@ is written in Deno using WebUI as the GUI library.
4646
Specific version:
4747

4848
```js
49-
import { WebUI } from "jsr:@webui/[email protected].8";
49+
import { WebUI } from "jsr:@webui/[email protected].9";
5050
// Or
51-
import { WebUI } from "https://deno.land/x/[email protected].8/mod.ts";
51+
import { WebUI } from "https://deno.land/x/[email protected].9/mod.ts";
5252
```
5353

5454
Latest version:

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 package registry (Production)
8-
import { WebUI } from "jsr:@webui/[email protected].8"; // import {WebUI} from "https://deno.land/x/[email protected].8/mod.ts";
8+
import { WebUI } from "jsr:@webui/[email protected].9"; // import {WebUI} from "https://deno.land/x/[email protected].9/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 package registry (Production)
8-
import { WebUI } from "jsr:@webui/[email protected].8"; // import {WebUI} from "https://deno.land/x/[email protected].8/mod.ts";
8+
import { WebUI } from "jsr:@webui/[email protected].9"; // import {WebUI} from "https://deno.land/x/[email protected].9/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 package registry (Production)
8-
import { WebUI } from "jsr:@webui/[email protected].8"; // import {WebUI} from "https://deno.land/x/[email protected].8/mod.ts";
8+
import { WebUI } from "jsr:@webui/[email protected].9"; // import {WebUI} from "https://deno.land/x/[email protected].9/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 package registry (Production)
8-
import { WebUI } from "jsr:@webui/[email protected].8"; // import {WebUI} from "https://deno.land/x/[email protected].8/mod.ts";
8+
import { WebUI } from "jsr:@webui/[email protected].9"; // import {WebUI} from "https://deno.land/x/[email protected].9/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 "jsr:@webui/[email protected].8";
19+
* import { WebUI } from "jsr:@webui/[email protected].9";
2020
*
2121
* const myWindow = new WebUI();
2222
* await 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.8
2+
WebUI Deno 2.5.9
33
http://webui.me
44
https://github.com/webui-dev/deno-webui
55
Copyright (c) 2020-2025 Hassan Draga.
@@ -1146,7 +1146,7 @@ export class WebUI {
11461146
* @returns The version string (e.g., "2.5.5").
11471147
*/
11481148
static get version(): string {
1149-
return "2.5.8";
1149+
return "2.5.9";
11501150
}
11511151
}
11521152

0 commit comments

Comments
 (0)