Prepared v0.6.0

This commit is contained in:
Thorsten Sommer 2024-06-30 15:19:51 +02:00
parent dab121a721
commit cecc378b3a
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
6 changed files with 17 additions and 7 deletions

View File

@ -13,6 +13,8 @@ public partial class Changelog
public static readonly Log[] LOGS = public static readonly Log[] LOGS =
[ [
new (156, "v0.6.0, build 156 (2024-06-30 12:49 UTC)", "v0.6.0.md"),
new (155, "v0.5.2, build 155 (2024-06-25 18:07 UTC)", "v0.5.2.md"),
new (154, "v0.5.1, build 154 (2024-06-25 15:35 UTC)", "v0.5.1.md"), new (154, "v0.5.1, build 154 (2024-06-25 15:35 UTC)", "v0.5.1.md"),
new (149, "v0.5.0, build 149 (2024-06-02 18:51 UTC)", "v0.5.0.md"), new (149, "v0.5.0, build 149 (2024-06-02 18:51 UTC)", "v0.5.0.md"),
new (138, "v0.4.0, build 138 (2024-05-26 13:26 UTC)", "v0.4.0.md"), new (138, "v0.4.0, build 138 (2024-05-26 13:26 UTC)", "v0.4.0.md"),

View File

@ -0,0 +1,8 @@
# v0.6.0, build 156 (2024-06-30 12:49 UTC)
- Added a setting to determine whether and how often to check for updates
- Added a bidirectional message bus for inter-component communication
- Added an update dialog for the app
- Added an update banner to show when a new version is available
- Added an option to manually check for updates to the about page
- Fixed an issue with previous automatic updates on Windows, where background processes were not terminated
- Disabled Tauri's built-in update dialog

View File

@ -1,9 +1,9 @@
0.5.2 0.6.0
2024-06-25 18:07:06 UTC 2024-06-30 12:49:38 UTC
155 156
8.0.206 (commit bb12410699) 8.0.206 (commit bb12410699)
8.0.6 (commit 3b8b000a0e) 8.0.6 (commit 3b8b000a0e)
1.79.0 (commit 129f3b996) 1.79.0 (commit 129f3b996)
6.20.0 6.20.0
1.6.1 1.6.1
2818aa93411, release dab121a7217, release

2
runtime/Cargo.lock generated
View File

@ -2313,7 +2313,7 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
[[package]] [[package]]
name = "mindwork-ai-studio" name = "mindwork-ai-studio"
version = "0.5.2" version = "0.6.0"
dependencies = [ dependencies = [
"arboard", "arboard",
"flexi_logger", "flexi_logger",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "mindwork-ai-studio" name = "mindwork-ai-studio"
version = "0.5.2" version = "0.6.0"
edition = "2021" edition = "2021"
description = "MindWork AI Studio" description = "MindWork AI Studio"
authors = ["Thorsten Sommer"] authors = ["Thorsten Sommer"]

View File

@ -6,7 +6,7 @@
}, },
"package": { "package": {
"productName": "MindWork AI Studio", "productName": "MindWork AI Studio",
"version": "0.5.2" "version": "0.6.0"
}, },
"tauri": { "tauri": {
"allowlist": { "allowlist": {