Skip to content

Commit

Permalink
Prepared release v0.9.20 (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
SommerEngineering authored Nov 15, 2024
1 parent ceac9ce commit c4d2574
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 10 deletions.
1 change: 1 addition & 0 deletions app/MindWork AI Studio/Components/Changelog.Logs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public readonly record struct Log(int Build, string Display, string Filename)

public static readonly Log[] LOGS =
[
new (195, "v0.9.20, build 195 (2024-11-16 20:44 UTC)", "v0.9.20.md"),
new (194, "v0.9.19, build 194 (2024-11-14 05:58 UTC)", "v0.9.19.md"),
new (193, "v0.9.18, build 193 (2024-11-09 21:10 UTC)", "v0.9.18.md"),
new (192, "v0.9.17, build 192 (2024-11-03 11:11 UTC)", "v0.9.17.md"),
Expand Down
7 changes: 5 additions & 2 deletions app/MindWork AI Studio/build.nu
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,11 @@ def "main fix_web_assets" []: nothing -> nothing {
mkdir wwwroot/system

# Copy the web assets from the first RID to the source project:
let source_path: glob = $"bin/release/net8.0/($rid)/publish/wwwroot/_content/*"
cp --recursive --force --update $source_path wwwroot/system/
let source_paths = glob --depth 99 bin/release/net8.0/($rid)/publish/wwwroot/_content/*

for source_path in $source_paths {
cp --recursive --force --update $source_path wwwroot/system/
}
}

def "main publish" []: nothing -> nothing {
Expand Down
2 changes: 1 addition & 1 deletion app/MindWork AI Studio/wwwroot/changelog/v0.9.20.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# v0.9.20, build 195 (2024-11-16 xx:xx UTC)
# v0.9.20, build 195 (2024-11-16 20:44 UTC)
- Fixed bugs related to storing and loading chats when the workspaces were docked to the left and were collapsed.
8 changes: 4 additions & 4 deletions metadata.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
0.9.19
2024-11-14 05:58:02 UTC
194
0.9.20
2024-11-15 20:44:07 UTC
195
8.0.111 (commit f3835a7fb4)
8.0.11 (commit 9cb3b725e3)
1.82.0 (commit f6e511eec)
7.15.0
1.8.1
9c0dea99271, release
ca46dde69c0, release
2 changes: 1 addition & 1 deletion runtime/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mindwork-ai-studio"
version = "0.9.19"
version = "0.9.20"
edition = "2021"
description = "MindWork AI Studio"
authors = ["Thorsten Sommer"]
Expand Down
2 changes: 1 addition & 1 deletion runtime/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
"package": {
"productName": "MindWork AI Studio",
"version": "0.9.19"
"version": "0.9.20"
},
"tauri": {
"allowlist": {
Expand Down

0 comments on commit c4d2574

Please sign in to comment.