From 75576129fef82450cfc1c4fb015751ec795ff912 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 7 Sep 2024 16:26:04 +0200 Subject: [PATCH] Fixed external links (#126) --- .../Components/Changelog.Logs.cs | 1 + .../wwwroot/changelog/v0.9.5.md | 2 ++ metadata.txt | 8 ++++---- runtime/Cargo.lock | 2 +- runtime/Cargo.toml | 4 ++-- runtime/tauri.conf.json | 19 ++++++++++++++++++- 6 files changed, 28 insertions(+), 8 deletions(-) create mode 100644 app/MindWork AI Studio/wwwroot/changelog/v0.9.5.md diff --git a/app/MindWork AI Studio/Components/Changelog.Logs.cs b/app/MindWork AI Studio/Components/Changelog.Logs.cs index e527508..67cf57b 100644 --- a/app/MindWork AI Studio/Components/Changelog.Logs.cs +++ b/app/MindWork AI Studio/Components/Changelog.Logs.cs @@ -13,6 +13,7 @@ public partial class Changelog public static readonly Log[] LOGS = [ + new (180, "v0.9.5, build 180 (2024-09-07 14:18 UTC)", "v0.9.5.md"), new (179, "v0.9.4, build 179 (2024-09-06 20:11 UTC)", "v0.9.4.md"), new (178, "v0.9.3, build 178 (2024-09-06 11:06 UTC)", "v0.9.3.md"), new (177, "v0.9.2, build 177 (2024-09-05 09:19 UTC)", "v0.9.2.md"), diff --git a/app/MindWork AI Studio/wwwroot/changelog/v0.9.5.md b/app/MindWork AI Studio/wwwroot/changelog/v0.9.5.md new file mode 100644 index 0000000..c1166e7 --- /dev/null +++ b/app/MindWork AI Studio/wwwroot/changelog/v0.9.5.md @@ -0,0 +1,2 @@ +# v0.9.5, build 180 (2024-09-07 14:18 UTC) +- Fixed opening links in the default browser. This issue was introduced by the IPC refactoring in v0.9.0. \ No newline at end of file diff --git a/metadata.txt b/metadata.txt index 77b76f6..8c0a74e 100644 --- a/metadata.txt +++ b/metadata.txt @@ -1,9 +1,9 @@ -0.9.4 -2024-09-06 20:11:08 UTC -179 +0.9.5 +2024-09-07 14:18:01 UTC +180 8.0.108 (commit 665a05cea7) 8.0.8 (commit 08338fcaa5) 1.81.0 (commit eeb90cda1) 7.8.0 1.7.1 -e8a0cf6dd90, release +ec4b9e146b1, release diff --git a/runtime/Cargo.lock b/runtime/Cargo.lock index 5b13ce7..9d54aa3 100644 --- a/runtime/Cargo.lock +++ b/runtime/Cargo.lock @@ -2130,7 +2130,7 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "mindwork-ai-studio" -version = "0.9.4" +version = "0.9.5" dependencies = [ "aes", "arboard", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index e4cfb6e..868b64f 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mindwork-ai-studio" -version = "0.9.4" +version = "0.9.5" edition = "2021" description = "MindWork AI Studio" authors = ["Thorsten Sommer"] @@ -9,7 +9,7 @@ authors = ["Thorsten Sommer"] tauri-build = { version = "1.5", features = [] } [dependencies] -tauri = { version = "1.7.1", features = [ "updater", "shell-sidecar", "shell-open"] } +tauri = { version = "1.7.1", features = [ "http-all", "updater", "shell-sidecar", "shell-open"] } tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/runtime/tauri.conf.json b/runtime/tauri.conf.json index 2405c15..4390a84 100644 --- a/runtime/tauri.conf.json +++ b/runtime/tauri.conf.json @@ -6,7 +6,7 @@ }, "package": { "productName": "MindWork AI Studio", - "version": "0.9.4" + "version": "0.9.5" }, "tauri": { "allowlist": { @@ -22,6 +22,13 @@ "args": true } ] + }, + "http" : { + "all": true, + "request": true, + "scope": [ + "http://localhost" + ] } }, "windows": [ @@ -33,6 +40,16 @@ "height": 1080 } ], + "security": { + "csp": null, + "dangerousRemoteDomainIpcAccess": [ + { + "domain": "localhost", + "windows": ["main"], + "enableTauriAPI": false + } + ] + }, "bundle": { "active": true, "targets": "all",