summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Constants.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-07-20 13:29:01 +0000
committersr55 <[email protected]>2013-07-20 13:29:01 +0000
commitc28c8dd123d13e08b85a29745f440cf024b1c5ba (patch)
treea03b3f03d9a82a4c76c028ea79b60fea4819aa33 /win/CS/HandBrakeWPF/Constants.cs
parent5aeff5b7f02a26fa3d20c124322c61c34b0e3b8c (diff)
WinGui: Misc fixes and improvements
- Added "Open This Directory" right click context menu on the destination box. - Fixed the av_mp4/mkv file extension bug. - Add new autoname options {time} {bitrate} {quality} git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5653 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Constants.cs')
-rw-r--r--win/CS/HandBrakeWPF/Constants.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Constants.cs b/win/CS/HandBrakeWPF/Constants.cs
index 1d279427a..36732611d 100644
--- a/win/CS/HandBrakeWPF/Constants.cs
+++ b/win/CS/HandBrakeWPF/Constants.cs
@@ -38,5 +38,25 @@ namespace HandBrakeWPF
/// The title.
/// </summary>
public const string Title = "{title}";
+
+ /// <summary>
+ /// The quality.
+ /// </summary>
+ public const string Quality = "{quality}";
+
+ /// <summary>
+ /// The quality.
+ /// </summary>
+ public const string Date = "{date}";
+
+ /// <summary>
+ /// The quality.
+ /// </summary>
+ public const string Time = "{time}";
+
+ /// <summary>
+ /// The bitrate.
+ /// </summary>
+ public const string Bitrate = "{bitrate}";
}
}