mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-01-11 20:10:26 +00:00
Add - Added a **toggle for Downloaded Mark** in the history Add - Proxy username/password and socks Chg - Changed the folder where the **auto-update** is downloaded to Chg - Changed **Encoding presets FPS** to default to 23.976 FPS Chg - Changed the **FPS input field** in Encoding presets to a text field, allowing formats like `24000/1001` for precise 23.976 FPS Fix - Fixed **Encoding presets** not including all available dubs and subs after encoding Fix - Fixed **Encoding presets additional parameters** with spaces, which now work correctly without needing escaped quotes (`\"`) Fix - Fixed **crash ** when adding episode to queue from history
14 lines
No EOL
326 B
C#
14 lines
No EOL
326 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using CRD.Downloader;
|
|
|
|
namespace CRD.ViewModels;
|
|
|
|
public partial class MainWindowViewModel : ViewModelBase{
|
|
|
|
[ObservableProperty]
|
|
public ProgramManager _programManager;
|
|
|
|
public MainWindowViewModel(ProgramManager manager){
|
|
ProgramManager = manager;
|
|
}
|
|
} |