Upgraded MudBlazor to v8.4.0, which fixes some bugs we were experiencing (#367)
Some checks are pending
Build and Release / Build app (linux-arm64) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Read metadata (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions

This commit is contained in:
Thorsten Sommer 2025-03-17 18:24:18 +01:00 committed by GitHub
parent dd40ca3e5b
commit 820294c14d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 6 additions and 13 deletions

View File

@ -347,7 +347,7 @@ jobs:
cargo tauri build --target ${{ matrix.rust_target }} --bundles ${{ matrix.tauri_bundle }}
- name: Upload artifact (macOS)
if: startsWith(matrix.platform, 'macos') && startsWith(github.ref, 'refs/tags/v')
if: startsWith(matrix.platform, 'macos')
uses: actions/upload-artifact@v4
with:
name: MindWork AI Studio (macOS ${{ matrix.dotnet_runtime }})

View File

@ -49,7 +49,7 @@
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="8.0.0" />
<PackageReference Include="HtmlAgilityPack" Version="1.12.0" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.3" />
<PackageReference Include="MudBlazor" Version="8.3.0" />
<PackageReference Include="MudBlazor" Version="8.4.0" />
<PackageReference Include="MudBlazor.Markdown" Version="8.0.0" />
<PackageReference Include="ReverseMarkdown" Version="4.6.0" />
</ItemGroup>

View File

@ -39,9 +39,9 @@
},
"MudBlazor": {
"type": "Direct",
"requested": "[8.3.0, )",
"resolved": "8.3.0",
"contentHash": "DLc1aK8AgSas82AERWLLefWKadIF7HhYhvgO8Y7jYLZe5v1r4v3rX9pzrzTsQkuPGe6y65tob73kM6gael+WdQ==",
"requested": "[8.4.0, )",
"resolved": "8.4.0",
"contentHash": "JdpJXe13fhPElc4ajoDEr7tbzib+N1SVUaov21lZAVd0DgRWuVTJsfVyrEFCD/oSopRcvub5cpHSJM7MYUVCfQ==",
"dependencies": {
"Microsoft.AspNetCore.Components": "9.0.1",
"Microsoft.AspNetCore.Components.Web": "9.0.1",

View File

@ -76,14 +76,6 @@
display: initial !important;
}
/* Fix for MudBlazor, tooltips and selects inside of popover
See issue https://github.com/MudBlazor/MudBlazor/issues/11015
and https://github.com/MindWorkAI/AI-Studio/issues/346
*/
.mud-popover-provider > .mud-popover-open {
z-index: 1604 !important;
}
/* Context div for inner scrolling component */
.inner-scrolling-context {
display: flex;

View File

@ -1,3 +1,4 @@
# v0.9.38, build 213 (2025-03-17 17:07 UTC)
- Added the "stop generation" button to all assistants.
- Upgraded MudBlazor to v8.4.0, which fixes some bugs we were experiencing.
- Updated the ERI v1 specification for the ERI server assistant & fixed spelling of the `UNKNOWN` role.