Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LM-Kit version update #31

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions LM-Kit-Maestro/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
public App(AppShellViewModel appShellViewModel)
{
InitializeComponent();
LMKit.Global.Runtime.Initialize();

BlazorWebViewHandler.BlazorWebViewMapper.AppendToMapping("CustomBlazorWebView", (handler, view) =>
{
Expand All @@ -32,7 +33,7 @@
});

_appShellViewModel = appShellViewModel;
MainPage = new AppShell(appShellViewModel);

Check warning on line 36 in LM-Kit-Maestro/App.xaml.cs

View workflow job for this annotation

GitHub Actions / build

'Application.MainPage.set' is obsolete: 'This property is deprecated. Initialize your application by overriding Application.CreateWindow rather than setting MainPage. To modify the root page in an active application, use Windows[0].Page for applications with a single window. For applications with multiple windows, use Application.Windows to identify and update the root page on the correct window. Additionally, each element features a Window property, accessible when it's part of the current window.'

Check warning on line 36 in LM-Kit-Maestro/App.xaml.cs

View workflow job for this annotation

GitHub Actions / build

'Application.MainPage.set' is obsolete: 'This property is deprecated. Initialize your application by overriding Application.CreateWindow rather than setting MainPage. To modify the root page in an active application, use Windows[0].Page for applications with a single window. For applications with multiple windows, use Application.Windows to identify and update the root page on the correct window. Additionally, each element features a Window property, accessible when it's part of the current window.'

Check warning on line 36 in LM-Kit-Maestro/App.xaml.cs

View workflow job for this annotation

GitHub Actions / build

'Application.MainPage.set' is obsolete: 'This property is deprecated. Initialize your application by overriding Application.CreateWindow rather than setting MainPage. To modify the root page in an active application, use Windows[0].Page for applications with a single window. For applications with multiple windows, use Application.Windows to identify and update the root page on the correct window. Additionally, each element features a Window property, accessible when it's part of the current window.'
}

protected override async void OnStart()
Expand Down
4 changes: 2 additions & 2 deletions LM-Kit-Maestro/LM-Kit-Maestro.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="LM-Kit.NET" Version="2024.11.5" />
<PackageReference Include="LM-Kit.NET.Backend.Cuda12.Windows" Version="2024.11.5" />
<PackageReference Include="LM-Kit.NET" Version="2024.11.6" />
<PackageReference Include="LM-Kit.NET.Backend.Cuda12.Windows" Version="2024.11.6" />
<PackageReference Include="Majorsoft.Blazor.Components.Common.JsInterop" Version="1.5.0" />
<PackageReference Include="Markdig" Version="0.38.0" />
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.10" />
Expand Down
Loading