// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Application Constants // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF { /// /// Application Constants /// public class Constants { /// /// The appcast 64. /// public const string Appcast64 = "https://handbrake.fr/appcast.x86_64.xml"; /// /// The appcast 32. /// public const string AppcastUnstable64 = "https://handbrake.fr/appcast_unstable.x86_64.xml"; /// /// The any. /// public const string Any = "(Any)"; /// /// Undefined Language /// public const string Undefined = "und"; /// /// The chapters. /// public const string Chapters = "{chapters}"; /// /// The title. /// public const string Title = "{title}"; /// /// The quality. /// public const string Quality = "{quality}"; /// /// The creation date of the new output file. /// public const string Date = "{date}"; /// /// The creation time of the new output file. /// public const string Time = "{time}"; /// /// The source creation date. /// public const string CretaionDate = "{creation-date}"; /// /// The source creation time. /// public const string CreationTime = "{creation-time}"; /// /// The bitrate. /// public const string Bitrate = "{bitrate}"; /// /// The preset. /// public const string Preset = "{preset}"; /// /// Preset Major Version /// public const string PresetVersionMajor = "11"; /// /// Preset Minor Version /// public const string PresetVersionMinor = "0"; /// /// Preset Micro Version /// public const string PresetVersionMicro = "0"; public const string FileScanMru = "FileScanMru"; public const string FileSaveMru = "FileSaveMru"; } }