Skip to content

Commit

Permalink
Update Avalonia to 11.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Onebeld committed Jul 26, 2023
1 parent 1e1de10 commit 39fb766
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
1 change: 1 addition & 0 deletions RegulSaveCleaner/Core/RegulSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Avalonia.Collections;
using Avalonia.Media;
using PleasantUI;
using PleasantUI.Core;
using PleasantUI.Core.Constants;
using RegulSaveCleaner.Core.Constants;
using RegulSaveCleaner.Structures;
Expand Down
9 changes: 4 additions & 5 deletions RegulSaveCleaner/RegulSaveCleaner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.0" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.0" />
<PackageReference Include="Avalonia" Version="11.0.1" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.1" />
<PackageReference Include="Pfim" Version="0.11.2" />
<PackageReference Include="PleasantUI" Version="3.0.8" />
<PackageReference Include="PleasantUI" Version="3.0.9" />
<PackageReference Condition="'$(TargetFramework)' != 'net461'" Include="SixLabors.ImageSharp" Version="3.0.1" />
<PackageReference Condition="'$(TargetFramework)' == 'net461'" Include="SixLabors.ImageSharp" Version="2.1.4" />
</ItemGroup>
Expand All @@ -40,10 +40,9 @@

<PropertyGroup Condition="'$(Configuration.toUpper())' != 'DEBUG'">
<TrimMode>link</TrimMode>
<TrimmerDefaultAction>link</TrimmerDefaultAction>
<IlcGenerateCompleteTypeMetadata>false</IlcGenerateCompleteTypeMetadata>
<IlcGenerateStackTraceData>false</IlcGenerateStackTraceData>
<IlcDisableUnhandledExceptionExperience>true</IlcDisableUnhandledExceptionExperience>
<IlcFoldIdenticalMethodBodies>true</IlcFoldIdenticalMethodBodies>
<StripSymbols>true</StripSymbols>
<OptimizationPreference>Size</OptimizationPreference>
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
Expand Down
3 changes: 2 additions & 1 deletion RegulSaveCleaner/Resources/ClearCacheInlines.axaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:ClassModifier="internal">
<!--All-->
<InlineCollection x:Key="WorldCacheInline">
<Run Text="{StaticResource All}" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:structures="clr-namespace:RegulSaveCleaner.Structures"
xmlns:core="clr-namespace:RegulSaveCleaner.Core"
xmlns:converters="clr-namespace:RegulSaveCleaner.Core.Converters">
xmlns:converters="clr-namespace:RegulSaveCleaner.Core.Converters"
x:ClassModifier="internal">
<ResourceDictionary.MergedDictionaries>
<MergeResourceInclude Source="../MenuFlyouts.axaml" />
</ResourceDictionary.MergedDictionaries>
Expand Down
3 changes: 2 additions & 1 deletion RegulSaveCleaner/Resources/MenuFlyouts.axaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:views="clr-namespace:RegulSaveCleaner.Views"
xmlns:structures="clr-namespace:RegulSaveCleaner.Structures">
xmlns:structures="clr-namespace:RegulSaveCleaner.Structures"
x:ClassModifier="internal">
<MenuFlyout x:Key="SaveFilesSettingsMenuFlyout" x:DataType="structures:GameSave">
<MenuItem Header="{StaticResource ProhibitedList}"
Command="{CompiledBinding $parent[views:MainWindow].ViewModel.OpenProhibitedList}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@
using RegulSaveCleaner.S3PI.Resources;
using RegulSaveCleaner.Structures;
using RegulSaveCleaner.Views.Windows;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Formats.Png;
using SixLabors.ImageSharp.PixelFormats;
using IImage = Pfim.IImage;

namespace RegulSaveCleaner.ViewModels.Windows;
Expand Down
2 changes: 1 addition & 1 deletion RegulSaveCleaner/Views/Pages/AboutPage.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
HorizontalAlignment="Right"
Foreground="{StaticResource TextFillColorTertiaryBrush}">
<Run Text="{StaticResource Version}" /><Run Text=":" />
&#8203;<Run Text="11.0.0" />
&#8203;<Run Text="11.0.1" />
</TextBlock>
</Panel>
<Separator Background="{StaticResource CardStrokeColorDefaultBrush}" Margin="-12 0" />
Expand Down

0 comments on commit 39fb766

Please sign in to comment.