Crunchy-Downloader/CRD/Views/MainWindow.axaml
Elwador aca28a4e17 Add - Added option to **mux fonts into the MKV**
Add - Added **completion sound** when downloads finish, allowing a specified sound to be played
Add - Added **changelog** for easier tracking of changes and updates
Add - Added **Retry button** to reset all failed downloads, allowing "Auto Download" to restart them
Add - Added **dub/sub info** to the Upcoming tab
Chg - Changed **history table view** to include missing features from the poster view
Chg - Changed and **adjusted error messages**
Chg - Changed **chapters formatting** for consistent output across locales
Chg - Changed **Clear Queue** button to icon-only
Chg - Changed **update button** behavior
Chg - Changed some **error messages** for better debugging
Chg - Changed **history series access**, now allowing it to open while others are refreshing
Chg - Changed **device ID reuse** to fix continuous login emails
Chg - Changed **authentication log** to write the full message for better debugging
Chg - Updated **dependencies**
Fix - Temporary fix for **authentication issues**
Fix - Fixed **unable to download movies** [#237](https://github.com/Crunchy-DL/Crunchy-Downloader/issues/237)
Fix - Fixed **buggy queue behavior** during active downloads
Fix - Fixed **duplicate seasons in history** when adding multiple episodes from the calendar
Fix - Fixed crash if  **all** subtitles option is selected
Fix - Fixed "**Cannot set download directory to Drive**" https://github.com/Crunchy-DL/Crunchy-Downloader/issues/220
Fix - Fixed missing **subtitles and none subs** for some series
2025-04-04 20:12:29 +02:00

90 lines
No EOL
4.5 KiB
XML

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:vm="clr-namespace:CRD.ViewModels"
xmlns:ui="using:FluentAvalonia.UI.Controls"
xmlns:views="clr-namespace:CRD.Views"
xmlns:ui1="clr-namespace:CRD.Utils.UI"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="CRD.Views.MainWindow"
x:DataType="vm:MainWindowViewModel"
Icon="/Assets/app_icon.ico"
Title="Crunchy-Downloader">
<Design.DataContext>
<vm:MainWindowViewModel />
</Design.DataContext>
<Grid Name="MainGrid">
<ContentControl x:Name="MainContent">
<Grid RowDefinitions="Auto, *">
<Border Grid.Row="0" Height="32">
<Grid Name="TitleBarHost"
ColumnDefinitions="Auto,Auto,*,Auto"
Background="Transparent">
<Image Margin="12 4"
IsHitTestVisible="False"
Source="../Assets/app_icon.ico"
Width="18" Height="18"
DockPanel.Dock="Left"
Name="WindowIcon"
RenderOptions.BitmapInterpolationMode="HighQuality">
<Image.IsVisible>
<OnPlatform Default="False">
<On Options="Windows" Content="True" />
</OnPlatform>
</Image.IsVisible>
</Image>
<TextBlock Grid.Column="1"
Text="{Binding Title, RelativeSource={RelativeSource FindAncestor, AncestorType=Window}}"
VerticalAlignment="Center">
</TextBlock>
</Grid>
</Border>
<ui:NavigationView Grid.Row="1"
IsPaneOpen="False"
IsPaneToggleButtonVisible="False"
IsEnabled="{Binding !ProgramManager.NavigationLock}"
IsSettingsVisible="False"
CompactPaneLength="72"
Name="NavView"
SelectionChanged="NavView_SelectionChanged">
<ui:NavigationView.MenuItems>
<ui:NavigationViewItem Classes="SampleAppNav" Content="Downloads" Tag="DownloadQueue"
IconSource="Download">
</ui:NavigationViewItem>
<ui:NavigationViewItem Classes="SampleAppNav" Content="Add Download" Tag="AddDownload"
IconSource="Add" />
<ui:NavigationViewItem Classes="SampleAppNav" Content="Calendar" Tag="Calendar"
IconSource="Calendar" />
<ui:NavigationViewItem Classes="SampleAppNav" Content="Seasons" Tag="Seasons"
IconSource="Clock" />
<ui:NavigationViewItem IsEnabled="{Binding ProgramManager.FinishedLoading}" Classes="SampleAppNav" Content="History" Tag="History"
IconSource="Library" />
</ui:NavigationView.MenuItems>
<ui:NavigationView.FooterMenuItems>
<ui:NavigationViewItem Classes="SampleAppNav" Content="Update" Tag="Update" Opacity="{Binding ProgramManager.OpacityButton}"
IconSource="CloudDownload" Focusable="False" />
<ui:NavigationViewItem Classes="SampleAppNav" Content="Account" Tag="Account"
IconSource="Contact" />
<ui:NavigationViewItem Classes="SampleAppNav" Content="Settings" Tag="Settings"
IconSource="Settings" />
</ui:NavigationView.FooterMenuItems>
</ui:NavigationView>
</Grid>
</ContentControl>
<!-- Tost Message -->
<views:ToastNotification x:Name="Toast" IsVisible="False" />
</Grid>
</Window>