Skip to content

Commit ee61425

Browse files
Prepared release v0.9.35 (#334)
1 parent ce8d84a commit ee61425

File tree

8 files changed

+13
-12
lines changed

8 files changed

+13
-12
lines changed

app/MindWork AI Studio/Components/Changelog.Logs.cs

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public readonly record struct Log(int Build, string Display, string Filename)
1313

1414
public static readonly Log[] LOGS =
1515
[
16+
new (210, "v0.9.35, build 210 (2025-03-12 18:22 UTC)", "v0.9.35.md"),
1617
new (209, "v0.9.34, build 209 (2025-03-11 13:02 UTC)", "v0.9.34.md"),
1718
new (208, "v0.9.33, build 208 (2025-03-11 08:14 UTC)", "v0.9.33.md"),
1819
new (207, "v0.9.32, build 207 (2025-03-08 20:15 UTC)", "v0.9.32.md"),

app/MindWork AI Studio/build.nu

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
def main [] {}
44

55
def are_assets_exist [rid: string] {
6-
$"bin/release/net8.0/($rid)/publish/wwwroot/_content/MudBlazor/MudBlazor.min.css" | path exists
6+
$"bin/release/net9.0/($rid)/publish/wwwroot/_content/MudBlazor/MudBlazor.min.css" | path exists
77
}
88

99
def "main help" [] {
@@ -63,7 +63,7 @@ def "main fix_web_assets" [] {
6363
mkdir wwwroot/system
6464

6565
# Copy the web assets from the first RID to the source project:
66-
let source_paths = glob --depth 99 bin/release/net8.0/($rid)/publish/wwwroot/_content/*
66+
let source_paths = glob --depth 99 bin/release/net9.0/($rid)/publish/wwwroot/_content/*
6767

6868
for source_path in $source_paths {
6969
cp --recursive --force --update $source_path wwwroot/system/
@@ -112,7 +112,7 @@ def "main publish" [] {
112112
}
113113
}
114114

115-
let published_path = $"bin/release/net8.0/($rid)/publish/($published_filename_dotnet)"
115+
let published_path = $"bin/release/net9.0/($rid)/publish/($published_filename_dotnet)"
116116
let final_path = $"bin/dist/($final_filename)"
117117

118118
if ($published_path | path exists) {

app/MindWork AI Studio/wwwroot/changelog/v0.9.35.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.9.35, build 210 (2025-03-xx xx:xx UTC)
1+
# v0.9.35, build 210 (2025-03-12 18:22 UTC)
22
- 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.
33
- Migrated to .NET 9.0.3
44
- Migrated to MudBlazor 8.3.0

documentation/Build.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
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.
33

44
## Prerequisites
5-
1. Install the [.NET 8 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/8.0).
5+
1. Install the [.NET 9 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/9.0).
66
2. [Install the Rust compiler](https://www.rust-lang.org/tools/install) in the latest version.
77
3. Met the prerequisites for building [Tauri](https://tauri.app/v1/guides/getting-started/prerequisites/). Node.js is **not** required, though.
88
4. Install the Tauri CLI by running `cargo install --version 1.6.2 tauri-cli`.

metadata.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
0.9.34
2-
2025-03-11 13:02:01 UTC
3-
209
1+
0.9.35
2+
2025-03-12 18:22:04 UTC
3+
210
44
9.0.104 (commit 2750432faa)
55
9.0.3 (commit 831d23e561)
66
1.85.0 (commit 4d91de4e4)
77
8.3.0
88
1.8.1
9-
4b3b80dc9d7, release
9+
ce8d84a12a2, release

runtime/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mindwork-ai-studio"
3-
version = "0.9.34"
3+
version = "0.9.35"
44
edition = "2021"
55
description = "MindWork AI Studio"
66
authors = ["Thorsten Sommer"]

runtime/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"package": {
88
"productName": "MindWork AI Studio",
9-
"version": "0.9.34"
9+
"version": "0.9.35"
1010
},
1111
"tauri": {
1212
"allowlist": {

0 commit comments

Comments
 (0)