diff options
author | Scott <[email protected]> | 2015-11-10 23:21:57 +0000 |
---|---|---|
committer | Scott <[email protected]> | 2015-11-10 23:21:57 +0000 |
commit | 6b713adaa58a127a65a5e69a6507d894a4760884 (patch) | |
tree | 56a37c568826e3ab1503e6523b6ad1ebc5bacce9 /win/CS/HandBrakeWPF/UserSettingConstants.cs | |
parent | 6fd35381a879def5e76f99cded43a2a3c265c333 (diff) |
WinGui: Add warning dialog on Destination Browse Button if disk space is low. Added new Advanced Option in preferences that will force the queue to check for low disk space before starting each job and pause if necessary.
Low Disk Space level is currently set at 10GB. Will add a preference to adjust this at a later point
Diffstat (limited to 'win/CS/HandBrakeWPF/UserSettingConstants.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/UserSettingConstants.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/UserSettingConstants.cs b/win/CS/HandBrakeWPF/UserSettingConstants.cs index 408f4061c..3956827bd 100644 --- a/win/CS/HandBrakeWPF/UserSettingConstants.cs +++ b/win/CS/HandBrakeWPF/UserSettingConstants.cs @@ -132,6 +132,16 @@ namespace HandBrakeWPF public const string PreventSleep = "PreventSleep";
/// <summary>
+ /// Pause Queue on Low Disk Space
+ /// </summary>
+ public const string PauseOnLowDiskspace = "PauseOnLowDiskspace";
+
+ /// <summary>
+ /// Low Disk Space Warning Level in Bytes.
+ /// </summary>
+ public const string PauseOnLowDiskspaceLevel = "LowDiskSpaceWarningLevelInBytes";
+
+ /// <summary>
/// The remove punctuation.
/// </summary>
public const string RemovePunctuation = "RemovePunctuation";
|