Crunchy-Downloader/CRD/Views/SettingsPageView.axaml.cs
Elwador 272d59a03b Add - Added fields to add mkvmerge & ffmpeg parameters to settings
Add - Added a new way to check the premium status of an account
Add - Added default audio and sub to muxing settings
Add - Added option to keep subtitles as files and not merge them
Add - Added option to download videos for all dubs selected

Chg - FFmpeg now also adds chapters to the files
Chg - Shows error if decryption files are missing
2024-06-19 02:16:02 +02:00

23 lines
534 B
C#

using Avalonia;
using Avalonia.Controls;
using Avalonia.Input;
using Avalonia.Interactivity;
using Avalonia.Markup.Xaml;
using CRD.Downloader;
using CRD.Utils.Sonarr;
using CRD.ViewModels;
namespace CRD.Views;
public partial class SettingsPageView : UserControl{
public SettingsPageView(){
InitializeComponent();
}
private void OnUnloaded(object? sender, RoutedEventArgs e){
if (DataContext is SettingsPageViewModel viewModel){
Crunchyroll.Instance.RefreshSonarr();
}
}
}