diff options
author | Scott <[email protected]> | 2015-10-16 22:29:31 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2015-10-16 22:30:21 +0100 |
commit | 6ae82c27e75f1eb4bd3c16c07e5b2a2cd120e82c (patch) | |
tree | 04b2b3a81d2c838b9fd5d56568eed275dc3c27b5 /win/CS/HandBrakeWPF/Constants.cs | |
parent | 5eb711545f4b3fbda67f199f7dd68db920381be8 (diff) |
Completely re-factored the preset file storage to use the same format as the Mac and Linux GUI's. You can now copy the file between platforms and it should load correctly.
WARNING: Any current presets will be lost when you install this or any later build as the format is not backwards compatible and there is no upgrade path.
Diffstat (limited to 'win/CS/HandBrakeWPF/Constants.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Constants.cs | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/Constants.cs b/win/CS/HandBrakeWPF/Constants.cs index 735691dc6..1c985ecdb 100644 --- a/win/CS/HandBrakeWPF/Constants.cs +++ b/win/CS/HandBrakeWPF/Constants.cs @@ -69,9 +69,19 @@ namespace HandBrakeWPF /// </summary>
public const string Bitrate = "{bitrate}";
+ /// <summary>
+ /// Preset Major Version
+ /// </summary>
+ public const string PresetVersionMajor = "11";
- public const string PresetVersionMajor = "0";
- public const string PresetVersionMinor = "10";
- public const string PresetVersionMicro = "2";
+ /// <summary>
+ /// Preset Minor Version
+ /// </summary>
+ public const string PresetVersionMinor = "0";
+
+ /// <summary>
+ /// Preset Micro Version
+ /// </summary>
+ public const string PresetVersionMicro = "0";
}
}
|