diff options
author | sr55 <[email protected]> | 2016-04-23 17:33:38 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2016-04-23 17:33:38 +0100 |
commit | 59853dd5e1f2b504167340fa11c79febe18b8f34 (patch) | |
tree | 598875905e7065207bebefde6860bd76c9b101c4 /win/CS/HandBrakeWPF/Startup | |
parent | 4d23e1dff4bb63575e586a8da8793891fa67bad4 (diff) |
WinGui: If you invoke HandBrake.exe with "--auto-start-queue" it will automatically start the queue and not prompt to recover the queue.
Behaviour Change: When reloading the queue, any job that is "In progress" will be marked as "Error" now. We don't know if HandBrake crashed or the system restarted. This avoids any crash -> restart loops that may occur. This allows HandBrake to get on with the rest of the queue until the user can action the failed encode.
Diffstat (limited to 'win/CS/HandBrakeWPF/Startup')
-rw-r--r-- | win/CS/HandBrakeWPF/Startup/StartupOptions.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Startup/StartupOptions.cs b/win/CS/HandBrakeWPF/Startup/StartupOptions.cs new file mode 100644 index 000000000..634d2ecac --- /dev/null +++ b/win/CS/HandBrakeWPF/Startup/StartupOptions.cs @@ -0,0 +1,16 @@ +// -------------------------------------------------------------------------------------------------------------------- +// <copyright file="AppBootstrapper.cs" company="HandBrake Project (http://handbrake.fr)"> +// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. +// </copyright> +// <summary> +// The Castle Bootstrapper +// </summary> +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrakeWPF.Startup +{ + public class StartupOptions + { + public static bool AutoRestartQueue { get; set; } + } +} |