Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Aug 8, 2024
1 parent 1b11df7 commit de79aaa
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build/props/Avalonia.Browser.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="Avalonia.Browser" Version="11.1.0"/>
<PackageReference Include="Avalonia.Browser" Version="11.1.2"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion build/props/Avalonia.Controls.ColorPicker.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="Avalonia.Controls.ColorPicker" Version="11.1.0"/>
<PackageReference Include="Avalonia.Controls.ColorPicker" Version="11.1.2"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion build/props/Avalonia.Controls.DataGrid.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.1.0"/>
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.1.2"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion build/props/Avalonia.Desktop.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" Version="11.1.0"/>
<PackageReference Include="Avalonia.Desktop" Version="11.1.2"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion build/props/Avalonia.Diagnostics.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="Avalonia.Diagnostics" Version="11.1.0" Condition="'$(Configuration)' == 'Debug'"/>
<PackageReference Include="Avalonia.Diagnostics" Version="11.1.2" Condition="'$(Configuration)' == 'Debug'"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion build/props/Avalonia.Fonts.Inter.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.1.0"/>
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.1.2"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion build/props/Avalonia.ReactiveUI.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="Avalonia.ReactiveUI" Version="11.1.0"/>
<PackageReference Include="Avalonia.ReactiveUI" Version="11.1.2"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion build/props/Avalonia.Themes.Simple.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="Avalonia.Themes.Simple" Version="11.1.0"/>
<PackageReference Include="Avalonia.Themes.Simple" Version="11.1.2"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion build/props/Avalonia.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.1.0"/>
<PackageReference Include="Avalonia" Version="11.1.2"/>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using Avalonia;
using Avalonia.Controls;
using CommunityToolkit.Mvvm.ComponentModel;
using DynamicData;
using OneWare.Essentials.Models;
using OneWare.Essentials.Services;
using Prism.Ioc;
Expand Down Expand Up @@ -39,7 +40,13 @@ public PackageManagerViewModel(IPackageService packageService, ILogger logger)
Application.Current!.GetResourceObservable("Material.Pulse")));
PackageCategories[0].SubCategories
.Add(new PackageCategoryViewModel("Misc", Application.Current!.GetResourceObservable("Module")));
PackageCategories.Add(new PackageCategoryViewModel("Hardware", Application.Current!.GetResourceObservable("NiosIcon")));

var hardwareCategory =
new PackageCategoryViewModel("Hardware", Application.Current!.GetResourceObservable("NiosIcon"));
hardwareCategory.SubCategories.Add(new PackageCategoryViewModel("FPGA Boards"));
hardwareCategory.SubCategories.Add(new PackageCategoryViewModel("Extensions"));

PackageCategories.Add(hardwareCategory);
PackageCategories.Add(new PackageCategoryViewModel("Libraries",
Application.Current!.GetResourceObservable("BoxIcons.RegularLibrary")));
PackageCategories.Add(new PackageCategoryViewModel("Binaries",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<Grid RowDefinitions="Auto, *">
<DockPanel DockPanel.Dock="Top">
<StackPanel DockPanel.Dock="Left" Orientation="Horizontal" Spacing="5" Margin="0 0 5 0">
<TextBlock Text="FPGA:" VerticalAlignment="Center" />
<TextBlock Text="Board:" VerticalAlignment="Center" />

<controls:SearchComboBox IsInteractive="False" ItemsSource="{Binding FpgaPackages}"
MinWidth="150"
Expand Down
2 changes: 1 addition & 1 deletion src/VtNetCore.Avalonia

0 comments on commit de79aaa

Please sign in to comment.