Add - Added Sorting to history tab Add - Added next air date to history posters Add - Added scale slider to history tab for posters Chg - Auto download always starts new downloads even when you are not on the download queue tab Chg - Small size adjustment for the text in the calendar tab Fix - Simultaneous downloads set to 1 and auto download didn't work together Fix - Finished downloads didn't resume correctly
13 lines
265 B
C#
13 lines
265 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using CRD.Downloader;
|
|
using CRD.ViewModels;
|
|
|
|
namespace CRD.Views;
|
|
|
|
public partial class DownloadsPageView : UserControl{
|
|
public DownloadsPageView(){
|
|
InitializeComponent();
|
|
}
|
|
} |