diff --git a/app/MindWork AI Studio/Components/Changelog.Logs.cs b/app/MindWork AI Studio/Components/Changelog.Logs.cs index a1ac8d3..d0fbaa8 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 (210, "v0.9.35, build 210 (2025-03-12 18:22 UTC)", "v0.9.35.md"), new (209, "v0.9.34, build 209 (2025-03-11 13:02 UTC)", "v0.9.34.md"), new (208, "v0.9.33, build 208 (2025-03-11 08:14 UTC)", "v0.9.33.md"), new (207, "v0.9.32, build 207 (2025-03-08 20:15 UTC)", "v0.9.32.md"), diff --git a/app/MindWork AI Studio/build.nu b/app/MindWork AI Studio/build.nu index cf69e3e..3c9c2e4 100755 --- a/app/MindWork AI Studio/build.nu +++ b/app/MindWork AI Studio/build.nu @@ -3,7 +3,7 @@ def main [] {} def are_assets_exist [rid: string] { - $"bin/release/net8.0/($rid)/publish/wwwroot/_content/MudBlazor/MudBlazor.min.css" | path exists + $"bin/release/net9.0/($rid)/publish/wwwroot/_content/MudBlazor/MudBlazor.min.css" | path exists } def "main help" [] { @@ -63,7 +63,7 @@ def "main fix_web_assets" [] { mkdir wwwroot/system # Copy the web assets from the first RID to the source project: - let source_paths = glob --depth 99 bin/release/net8.0/($rid)/publish/wwwroot/_content/* + let source_paths = glob --depth 99 bin/release/net9.0/($rid)/publish/wwwroot/_content/* for source_path in $source_paths { cp --recursive --force --update $source_path wwwroot/system/ @@ -112,7 +112,7 @@ def "main publish" [] { } } - let published_path = $"bin/release/net8.0/($rid)/publish/($published_filename_dotnet)" + let published_path = $"bin/release/net9.0/($rid)/publish/($published_filename_dotnet)" let final_path = $"bin/dist/($final_filename)" if ($published_path | path exists) { diff --git a/app/MindWork AI Studio/wwwroot/changelog/v0.9.35.md b/app/MindWork AI Studio/wwwroot/changelog/v0.9.35.md index 7b1b711..6aa6a72 100644 --- a/app/MindWork AI Studio/wwwroot/changelog/v0.9.35.md +++ b/app/MindWork AI Studio/wwwroot/changelog/v0.9.35.md @@ -1,4 +1,4 @@ -# v0.9.35, build 210 (2025-03-xx xx:xx UTC) +# v0.9.35, build 210 (2025-03-12 18:22 UTC) - A settings icon was added to all assistants and the assistants overview. The icon opens a dialog that displays all settings that can be changed. The settings aren't shown on the settings overview page anymore for a better overview. - Migrated to .NET 9.0.3 - Migrated to MudBlazor 8.3.0 diff --git a/documentation/Build.md b/documentation/Build.md index 795c65b..2f620ea 100644 --- a/documentation/Build.md +++ b/documentation/Build.md @@ -2,7 +2,7 @@ You just want to use the app? Then simply [download the appropriate setup for your operating system](Setup.md). This chapter is intended for developers who want to modify and customize the code. ## Prerequisites -1. Install the [.NET 8 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/8.0). +1. Install the [.NET 9 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/9.0). 2. [Install the Rust compiler](https://www.rust-lang.org/tools/install) in the latest version. 3. Met the prerequisites for building [Tauri](https://tauri.app/v1/guides/getting-started/prerequisites/). Node.js is **not** required, though. 4. Install the Tauri CLI by running `cargo install --version 1.6.2 tauri-cli`. diff --git a/metadata.txt b/metadata.txt index 9d7fe80..ea74055 100644 --- a/metadata.txt +++ b/metadata.txt @@ -1,9 +1,9 @@ -0.9.34 -2025-03-11 13:02:01 UTC -209 +0.9.35 +2025-03-12 18:22:04 UTC +210 9.0.104 (commit 2750432faa) 9.0.3 (commit 831d23e561) 1.85.0 (commit 4d91de4e4) 8.3.0 1.8.1 -4b3b80dc9d7, release +ce8d84a12a2, release diff --git a/runtime/Cargo.lock b/runtime/Cargo.lock index 5c30b66..025fa77 100644 --- a/runtime/Cargo.lock +++ b/runtime/Cargo.lock @@ -2350,7 +2350,7 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "mindwork-ai-studio" -version = "0.9.34" +version = "0.9.35" dependencies = [ "aes", "arboard", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 112b8d9..d6835ac 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mindwork-ai-studio" -version = "0.9.34" +version = "0.9.35" edition = "2021" description = "MindWork AI Studio" authors = ["Thorsten Sommer"] diff --git a/runtime/tauri.conf.json b/runtime/tauri.conf.json index 5835c47..a0b3688 100644 --- a/runtime/tauri.conf.json +++ b/runtime/tauri.conf.json @@ -6,7 +6,7 @@ }, "package": { "productName": "MindWork AI Studio", - "version": "0.9.34" + "version": "0.9.35" }, "tauri": { "allowlist": {