Crunchy-Downloader/CRD/App.axaml
Elwador 5b33d2336c Add - Added **retry** for license key requests
Add - Added **Sonarr season/episode numbers** to the history view
Add - Added option to **match episodes to Sonarr episodes** to correct mismatches
Add - Added **button to rematch all Sonarr episodes**
Add - Added an **optional secondary endpoint**
Chg - Changed **changelog heading sizes**
Chg - Changed Sonarr matching to only process **new or unmatched episodes**
Chg - Changed logic to **request audio license keys only when needed**
Fix - Fixed **Sonarr series manual matching dialog**
2025-06-17 18:56:24 +02:00

26 lines
No EOL
1.2 KiB
XML

<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:crd="clr-namespace:CRD"
xmlns:sty="clr-namespace:FluentAvalonia.Styling;assembly=FluentAvalonia"
x:Class="CRD.App"
RequestedThemeVariant="Dark">
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
<Application.DataTemplates>
<crd:ViewLocator />
</Application.DataTemplates>
<Application.Resources>
<x:Double x:Key="ContentDialogMinWidth">500</x:Double>
<x:Double x:Key="ContentDialogMaxWidth">1500</x:Double>
<x:Double x:Key="ContentDialogMinHeight">150</x:Double>
<x:Double x:Key="ContentDialogMaxHeight">700</x:Double>
</Application.Resources>
<Application.Styles>
<sty:FluentAvaloniaTheme PreferSystemTheme="True" PreferUserAccentColor="True"/>
<StyleInclude Source="avares://CRD/Styling/ControlsGalleryStyles.axaml" />
<StyleInclude Source="avares://CRD/Styling/ContentDialogCustomStyle.axaml" />
<StyleInclude Source="avares://CRD/Assets/Icons.axaml"></StyleInclude>
</Application.Styles>
</Application>