diff options
author | sr55 <[email protected]> | 2019-07-05 23:11:04 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-07-05 23:11:22 +0100 |
commit | cfb4a33b6eb05db67406010299dfb883de9b60ed (patch) | |
tree | d1eae10d1b0ee12b1b4970376a4d068832eb6300 /win/CS/HandBrakeWPF/UserSettingConstants.cs | |
parent | faf10b6ae3683e7361c0907255ddb3066b651bb0 (diff) |
WinGui: Build out code for active monitoring of storage and battery power on the system. (Similar to what the LinUI does)
- Automatic pause on "Low" or "Critical" battery alarms. The % level is set in Windows power settings. Automatic Resume when AC returns, if it was paused by an alarm.
- Automatic encode pause when destination drive drops below 2GB. (May make this a preference set later)
- Behaviour of pause queue on low disk space with a user defined level in preferences is unchanged.
#2109 #2181
Diffstat (limited to 'win/CS/HandBrakeWPF/UserSettingConstants.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/UserSettingConstants.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/UserSettingConstants.cs b/win/CS/HandBrakeWPF/UserSettingConstants.cs index 1f6ed72db..c5c9d5ad7 100644 --- a/win/CS/HandBrakeWPF/UserSettingConstants.cs +++ b/win/CS/HandBrakeWPF/UserSettingConstants.cs @@ -36,7 +36,8 @@ namespace HandBrakeWPF public const string SendFileToArgs = "SendFileToArgs";
public const string PreventSleep = "PreventSleep";
public const string PauseOnLowDiskspace = "PauseOnLowDiskspace";
- public const string PauseOnLowDiskspaceLevel = "LowDiskSpaceWarningLevelInBytes";
+ public const string PauseQueueOnLowDiskspaceLevel = "LowDiskSpaceWarningLevelInBytes";
+ public const string PauseEncodeOnLowDiskspaceLevel = "LowDiskSpaceEncodePauseLevelInBytes";
public const string RemovePunctuation = "RemovePunctuation";
public const string ShowPresetPanel = "ShowPresetPanelOption";
public const string ResetWhenDoneAction = "ResetWhenDoneAction";
|