Skip to content

Commit 4aeb51c

Browse files
Prepared release v0.9.48 (#501)
1 parent 7c4ddf1 commit 4aeb51c

File tree

5 files changed

+22
-21
lines changed

5 files changed

+22
-21
lines changed

app/MindWork AI Studio/Chat/StringExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public static string RemoveThinkTags(this string input)
66
{
77
const string OPEN_TAG = "<think>";
88
const string CLOSE_TAG = "</think>";
9-
if (string.IsNullOrEmpty(input) || !input.StartsWith(OPEN_TAG))
9+
if (string.IsNullOrWhiteSpace(input) || !input.StartsWith(OPEN_TAG, StringComparison.Ordinal))
1010
return input;
1111

1212
var endIndex = input.IndexOf(CLOSE_TAG, StringComparison.Ordinal);

app/MindWork AI Studio/MindWork AI Studio.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<ItemGroup>
5050
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="8.2.1" />
5151
<PackageReference Include="HtmlAgilityPack" Version="1.12.1" />
52-
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.5" />
52+
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.6" />
5353
<PackageReference Include="MudBlazor" Version="8.6.0" />
5454
<PackageReference Include="MudBlazor.Markdown" Version="8.6.0" />
5555
<PackageReference Include="ReverseMarkdown" Version="4.6.0" />

app/MindWork AI Studio/packages.lock.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@
3030
},
3131
"Microsoft.Extensions.FileProviders.Embedded": {
3232
"type": "Direct",
33-
"requested": "[9.0.5, )",
34-
"resolved": "9.0.5",
35-
"contentHash": "tgYXJtPa72hYrQuw+pqJvvhUOOQtZuk5jhRZINxIgR0cXwe4bLCQhCGffN+Ad4+AIQOlz4YyOc+GX+unsHc9Kg==",
33+
"requested": "[9.0.6, )",
34+
"resolved": "9.0.6",
35+
"contentHash": "KyXroxnOI6ZpCth3pW718Fn4hwtvgjjLCKRJg43UFR/5Wfo0ZKVGUJGnQT3+fTkoyLCElJUKwIHezY6IjOXz/g==",
3636
"dependencies": {
37-
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.5"
37+
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6"
3838
}
3939
},
4040
"Microsoft.NET.ILLink.Tasks": {
4141
"type": "Direct",
42-
"requested": "[9.0.5, )",
43-
"resolved": "9.0.5",
44-
"contentHash": "4L7wbb3Y4BJgIeSnmAf/C6S/qCs9rT1b0dX72uj3qo0qvUH7D0U1tU5ZlC7A3Wb8E/dXK4caOi4JkdLTVJaXhw=="
42+
"requested": "[9.0.6, )",
43+
"resolved": "9.0.6",
44+
"contentHash": "TXy3SbJzGXQbxxIxCjdrp8bwEyTDImyYNpTpd6v7P3JL2Y7dno8EYG7dPezfYTa5SoWKdhbH9cbnwHHs3BR5gA=="
4545
},
4646
"MudBlazor": {
4747
"type": "Direct",
@@ -173,10 +173,10 @@
173173
},
174174
"Microsoft.Extensions.FileProviders.Abstractions": {
175175
"type": "Transitive",
176-
"resolved": "9.0.5",
177-
"contentHash": "LLm+e8lvD+jOI+blHRSxPqywPaohOTNcVzQv548R1UpkEiNB2D+zf3RrqxBdB1LDPicRMTnfiaKJovxF8oX1bQ==",
176+
"resolved": "9.0.6",
177+
"contentHash": "q9FPkSGVA9ipI255p3PBAvWNXas5Tzjyp/DwYSwT+46mIFw9fWZahsF6vHpoxLt5/vtANotH2sAm7HunuFIx9g==",
178178
"dependencies": {
179-
"Microsoft.Extensions.Primitives": "9.0.5"
179+
"Microsoft.Extensions.Primitives": "9.0.6"
180180
}
181181
},
182182
"Microsoft.Extensions.Localization": {
@@ -214,8 +214,8 @@
214214
},
215215
"Microsoft.Extensions.Primitives": {
216216
"type": "Transitive",
217-
"resolved": "9.0.5",
218-
"contentHash": "b4OAv1qE1C9aM+ShWJu3rlo/WjDwa/I30aIPXqDWSKXTtKl1Wwh6BZn+glH5HndGVVn3C6ZAPQj5nv7/7HJNBQ=="
217+
"resolved": "9.0.6",
218+
"contentHash": "BHniU24QV67qp1pJknqYSofAPYGmijGI8D+ci9yfw33iuFdyOeB9lWTg78ThyYLyQwZw3s0vZ36VMb0MqbUuLw=="
219219
},
220220
"Microsoft.JSInterop": {
221221
"type": "Transitive",
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# v0.9.48, build 223 (2025-06-10 13:15 UTC)
1+
# v0.9.48, build 223 (2025-06-11 08:14 UTC)
22
- Improved German translation.
33
- Improved the confirmation dialog for longer texts.
44
- Improved how configurations are applied in organizations and made the process more robust.
5-
- Removed `<think>` tags from streaming and final text output because of reasoning models.
5+
- Removed `<think>` tags from streaming and final text output because of reasoning models.
6+
- Upgraded to .NET 9.0.6.

metadata.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
0.9.48
2-
2025-06-10 13:15:29 UTC
2+
2025-06-11 08:14:42 UTC
33
223
4-
9.0.106 (commit 8cdf6f0897)
5-
9.0.5 (commit e36e4d1a8f)
4+
9.0.107 (commit ef50dc9d27)
5+
9.0.6 (commit 3875b54e7b)
66
1.87.0 (commit 17067e9ac)
77
8.6.0
88
1.8.1
9-
793a9cae0ac, release
10-
win-x64
9+
2616101607a, release
10+
osx-arm64
1111
137.0.7123.0

0 commit comments

Comments
 (0)