mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-01-11 20:10:26 +00:00
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**
12 lines
No EOL
281 B
C#
12 lines
No EOL
281 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
using CRD.Utils.UI;
|
|
|
|
namespace CRD.Views.Utils;
|
|
|
|
public partial class ContentDialogSonarrMatchEpisodeView : UserControl{
|
|
public ContentDialogSonarrMatchEpisodeView(){
|
|
InitializeComponent();
|
|
}
|
|
} |