Skip to content

Commit c9474c5

Browse files
Prepared release v0.9.28 (#279)
1 parent c0b7016 commit c9474c5

File tree

11 files changed

+133
-53
lines changed

11 files changed

+133
-53
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 (203, "v0.9.28, build 203 (2025-02-09 16:33 UTC)", "v0.9.28.md"),
1617
new (202, "v0.9.27, build 202 (2025-01-21 18:24 UTC)", "v0.9.27.md"),
1718
new (201, "v0.9.26, build 201 (2025-01-13 19:11 UTC)", "v0.9.26.md"),
1819
new (200, "v0.9.25, build 200 (2025-01-04 18:33 UTC)", "v0.9.25.md"),

app/MindWork AI Studio/MindWork AI Studio.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
<ItemGroup>
4848
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="7.1.0" />
4949
<PackageReference Include="HtmlAgilityPack" Version="1.11.72" />
50-
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.0" />
51-
<PackageReference Include="MudBlazor" Version="7.15.0" />
50+
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.1" />
51+
<PackageReference Include="MudBlazor" Version="7.16.0" />
5252
<PackageReference Include="MudBlazor.Markdown" Version="7.14.0" />
5353
<PackageReference Include="ReverseMarkdown" Version="4.6.0" />
5454
</ItemGroup>

app/MindWork AI Studio/build.nu

+17-17
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
def main [] {}
44

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

9-
def "main help" []: nothing -> nothing {
9+
def "main help" [] {
1010
print "Usage: nu build.nu [action]"
1111
print ""
1212
print "Optional Actions:"
@@ -26,7 +26,7 @@ def "main help" []: nothing -> nothing {
2626
print ""
2727
}
2828

29-
def "main prepare" [action: string]: string -> nothing {
29+
def "main prepare" [action: string] {
3030
if (update_app_version $action) {
3131
main fix_web_assets
3232
inc_build_number
@@ -36,7 +36,7 @@ def "main prepare" [action: string]: string -> nothing {
3636
}
3737
}
3838

39-
def "main metadata" []: nothing -> nothing {
39+
def "main metadata" [] {
4040
update_dotnet_version
4141
update_rust_version
4242
update_mudblazor_version
@@ -46,7 +46,7 @@ def "main metadata" []: nothing -> nothing {
4646
update_license_year "Pages/About.razor.cs"
4747
}
4848

49-
def "main fix_web_assets" []: nothing -> nothing {
49+
def "main fix_web_assets" [] {
5050

5151
# Get the matching RIDs for the current OS:
5252
let rids = get_rids
@@ -70,7 +70,7 @@ def "main fix_web_assets" []: nothing -> nothing {
7070
}
7171
}
7272

73-
def "main publish" []: nothing -> nothing {
73+
def "main publish" [] {
7474

7575
main metadata
7676

@@ -139,7 +139,7 @@ def "main publish" []: nothing -> nothing {
139139
print "Building done."
140140
}
141141

142-
def get_rids []: nothing -> list {
142+
def get_rids [] {
143143
# Define the list of RIDs to build for, cf. https://learn.microsoft.com/en-us/dotnet/core/rid-catalog:
144144
let rids = ["win-x64", "win-arm64", "linux-x64", "linux-arm64", "osx-arm64", "osx-x64"]
145145

@@ -163,15 +163,15 @@ def get_rids []: nothing -> list {
163163
$rids
164164
}
165165

166-
def get_os []: nothing -> string {
166+
def get_os [] {
167167
let os = (sys host).name | str downcase
168168
if $os =~ "linux" {
169169
return "linux"
170170
}
171171
$os
172172
}
173173

174-
def update_build_time []: nothing -> nothing {
174+
def update_build_time [] {
175175
mut meta_lines = open --raw ../../metadata.txt | lines
176176
mut build_time = $meta_lines.1
177177

@@ -183,7 +183,7 @@ def update_build_time []: nothing -> nothing {
183183
$meta_lines | save --raw --force ../../metadata.txt
184184
}
185185

186-
def inc_build_number []: nothing -> nothing {
186+
def inc_build_number [] {
187187
mut meta_lines = open --raw ../../metadata.txt | lines
188188
mut build_number = $meta_lines.2 | into int
189189

@@ -195,7 +195,7 @@ def inc_build_number []: nothing -> nothing {
195195
$meta_lines | save --raw --force ../../metadata.txt
196196
}
197197

198-
def update_dotnet_version []: nothing -> nothing {
198+
def update_dotnet_version [] {
199199
mut meta_lines = open --raw ../../metadata.txt | lines
200200
mut dotnet_sdk_version = $meta_lines.3
201201
mut dotnet_version = $meta_lines.4
@@ -215,7 +215,7 @@ def update_dotnet_version []: nothing -> nothing {
215215
$meta_lines | save --raw --force ../../metadata.txt
216216
}
217217

218-
def update_rust_version []: nothing -> nothing {
218+
def update_rust_version [] {
219219
mut meta_lines = open --raw ../../metadata.txt | lines
220220
mut rust_version = $meta_lines.5
221221

@@ -229,7 +229,7 @@ def update_rust_version []: nothing -> nothing {
229229
$meta_lines | save --raw --force ../../metadata.txt
230230
}
231231

232-
def update_mudblazor_version []: nothing -> nothing {
232+
def update_mudblazor_version [] {
233233
mut meta_lines = open --raw ../../metadata.txt | lines
234234
mut mudblazor_version = $meta_lines.6
235235

@@ -242,7 +242,7 @@ def update_mudblazor_version []: nothing -> nothing {
242242
$meta_lines | save --raw --force ../../metadata.txt
243243
}
244244

245-
def update_tauri_version []: nothing -> nothing {
245+
def update_tauri_version [] {
246246
mut meta_lines = open --raw ../../metadata.txt | lines
247247
mut tauri_version = $meta_lines.7
248248

@@ -276,7 +276,7 @@ def update_license_year [licence_file: string] {
276276
$updated_license_text | save --raw --force $licence_file
277277
}
278278

279-
def update_app_version [action: string]: string -> bool {
279+
def update_app_version [action: string] {
280280
mut meta_lines = open --raw ../../metadata.txt | lines
281281
mut app_version = $meta_lines.0
282282

@@ -321,7 +321,7 @@ def update_app_version [action: string]: string -> bool {
321321
return true
322322
}
323323

324-
def update_project_commit_hash []: nothing -> nothing {
324+
def update_project_commit_hash [] {
325325
mut meta_lines = open --raw ../../metadata.txt | lines
326326
mut commit_hash = $meta_lines.8
327327

@@ -356,7 +356,7 @@ def update_project_commit_hash []: nothing -> nothing {
356356
$meta_lines | save --raw --force ../../metadata.txt
357357
}
358358

359-
def update_changelog []: nothing -> nothing {
359+
def update_changelog [] {
360360
# Get all changelog files:
361361
let all_changelog_files = glob wwwroot/changelog/*.md
362362

app/MindWork AI Studio/packages.lock.json

+12-15
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
},
2525
"Microsoft.Extensions.FileProviders.Embedded": {
2626
"type": "Direct",
27-
"requested": "[9.0.0, )",
28-
"resolved": "9.0.0",
29-
"contentHash": "6Ev1goLIvggLF6uCs6oZvdr9JM+2b1Zj+4FLdBWNW5iw3tm2BymVIb0yMsjnQTBWL7YUmqVWH3u45hSqOfvuqg==",
27+
"requested": "[9.0.1, )",
28+
"resolved": "9.0.1",
29+
"contentHash": "Pnw9plviwRguhVxHjthooumWH8yUxfF54tuu/+VoVBOuqBmzu6VUnn4NGf3eVkEO1k5q2nihOIAQL/7UMemSmQ==",
3030
"dependencies": {
31-
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.0"
31+
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.1"
3232
}
3333
},
3434
"Microsoft.NET.ILLink.Tasks": {
@@ -39,9 +39,9 @@
3939
},
4040
"MudBlazor": {
4141
"type": "Direct",
42-
"requested": "[7.15.0, )",
43-
"resolved": "7.15.0",
44-
"contentHash": "b2+hO7ZTGwsGhu9SoowuNe2ETeF1GzExpg/hIYR++rSh+vy4v/QD0iOsrATWv3LdFJXSgk3d1+XIr5srW3jBiA==",
42+
"requested": "[7.16.0, )",
43+
"resolved": "7.16.0",
44+
"contentHash": "68bEFn7MLCyOB4yYxtvZG+AA+bZbxBDcIOhnSVFrHrAg8LLXVw1LxHCp9EyRktlREpnoAO1JxINp+5WeHc9Z4w==",
4545
"dependencies": {
4646
"Microsoft.AspNetCore.Components": "8.0.8",
4747
"Microsoft.AspNetCore.Components.Web": "8.0.8",
@@ -147,10 +147,10 @@
147147
},
148148
"Microsoft.Extensions.FileProviders.Abstractions": {
149149
"type": "Transitive",
150-
"resolved": "9.0.0",
151-
"contentHash": "uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==",
150+
"resolved": "9.0.1",
151+
"contentHash": "DguZYt1DWL05+8QKWL3b6bW7A2pC5kYFMY5iXM6W2M23jhvcNa8v6AU8PvVJBcysxHwr9/jax0agnwoBumsSwg==",
152152
"dependencies": {
153-
"Microsoft.Extensions.Primitives": "9.0.0"
153+
"Microsoft.Extensions.Primitives": "9.0.1"
154154
}
155155
},
156156
"Microsoft.Extensions.Localization": {
@@ -188,8 +188,8 @@
188188
},
189189
"Microsoft.Extensions.Primitives": {
190190
"type": "Transitive",
191-
"resolved": "9.0.0",
192-
"contentHash": "N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg=="
191+
"resolved": "9.0.1",
192+
"contentHash": "bHtTesA4lrSGD1ZUaMIx6frU3wyy0vYtTa/hM6gGQu5QNrydObv8T5COiGUWsisflAfmsaFOe9Xvw5NSO99z0g=="
193193
},
194194
"Microsoft.JSInterop": {
195195
"type": "Transitive",
@@ -205,9 +205,6 @@
205205
"type": "Transitive",
206206
"resolved": "0.16.9",
207207
"contentHash": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ=="
208-
},
209-
"ericlientv1": {
210-
"type": "Project"
211208
}
212209
},
213210
"net8.0/osx-arm64": {}
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# v0.9.28, build 203 (2025-0x-xx xx:xx UTC)
1+
# v0.9.28, build 203 (2025-02-09 16:33 UTC)
22
- Added an information view to all data sources to the data source configuration page. The data source configuration is a preview feature behind the RAG feature flag.
33
- Added a ERI ((E)xternal (R)etrieval (I)nterface) client for communication with any ERI server.
44
- Added the option to select the default app provider in the assistant settings under provider selection. Thank you, Peer (`peerschuett`), for reporting the issue.
55
- Added `donework` as financial supporter. Thank you, Dominic!
66
- Added content contributors to the supporter page. We thank Luc (`DevNullx64`) for his build script contribution as well as Kerstin (`KeSah001`) for creating the Wiki pages.
77
- Improved the resource handling when loading models.
8-
- Improved the build script to support Arch Linux and other Linux distributions, along with Rust nightly environments. Thanks `SolsticeSpectrum` for the contribution.
8+
- Improved the build script to support Arch Linux and other Linux distributions, along with Rust nightly environments. Thanks `SolsticeSpectrum` for the contribution.
9+
- Upgraded the dependencies Rust, .NET, OpenSSL, MudBlazor, `rand`, `rand_chacha`, and others to the latest usable versions.

metadata.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
0.9.27
2-
2025-01-21 18:24:04 UTC
3-
202
4-
8.0.111 (commit f3835a7fb4)
5-
8.0.11 (commit 9cb3b725e3)
6-
1.84.0 (commit 9fc6b4312)
7-
7.15.0
1+
0.9.28
2+
2025-02-09 16:33:40 UTC
3+
203
4+
8.0.112 (commit f7cd007b9d)
5+
8.0.12 (commit 89ef51c5d8)
6+
1.84.1 (commit e71f9a9a9)
7+
7.16.0
88
1.8.1
9-
940459ca467, release
9+
6da4cf1425f, release

0 commit comments

Comments
 (0)