Skip to content

Commit

Permalink
add monthly expedition filter (fixes #519)
Browse files Browse the repository at this point in the history
  • Loading branch information
myangelkamikaze committed Dec 17, 2024
1 parent b37c65a commit 2bbd240
Show file tree
Hide file tree
Showing 18 changed files with 151 additions and 51 deletions.
2 changes: 1 addition & 1 deletion Browser/Browser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="CefSharp.WinForms.NETCore" Version="124.3.50" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0-preview2" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Grpc" Version="2.46.6" />
<PackageReference Include="Grpc.Core" Version="2.46.6" />
<PackageReference Include="Grpc.Core.Api" Version="2.67.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

<ItemGroup>
<PackageReference Condition="$(DefineConstants.Contains(ENABLE_XAML_HOT_RELOAD))" Include="Avalonia.Markup.Xaml.Loader" Version="11.2.1" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Condition="$(DefineConstants.Contains(ENABLE_XAML_HOT_RELOAD))" Include="HotAvalonia" Version="1.1.1" />
<PackageReference Include="HotAvalonia.Extensions" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>

Expand All @@ -28,7 +29,7 @@
<PackageReference Include="Avalonia.Desktop" Version="11.2.1" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.1" />
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="11.2.0.1" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0-preview2" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ public class Expedition
public required int Id { get; init; }
public required string DisplayId { get; init; }
public required GreatSuccessType GreatSuccessType { get; init; }
public required bool IsMonthly { get; init; }

public required TimeSpan Duration { get; init; }

Expand Down
Loading

0 comments on commit 2bbd240

Please sign in to comment.