summaryrefslogtreecommitdiffstats
path: root/win/C#/HandBrake.ApplicationServices/Init.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-01-29 22:25:36 +0000
committersr55 <[email protected]>2011-01-29 22:25:36 +0000
commitd7a70498c42ef73540589c36963b1a4ff57bf238 (patch)
treea7ad00ed5439196d18c86987946d2fa7867e588f /win/C#/HandBrake.ApplicationServices/Init.cs
parentc9c50d62e5ea118f68b9079b514b58bd5016e2c5 (diff)
WinGui:
- Moved the plist and query parsing code into new Utility classes in the app services. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3775 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Init.cs')
-rw-r--r--win/C#/HandBrake.ApplicationServices/Init.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Init.cs b/win/C#/HandBrake.ApplicationServices/Init.cs
index 999b4555e..e51683ab8 100644
--- a/win/C#/HandBrake.ApplicationServices/Init.cs
+++ b/win/C#/HandBrake.ApplicationServices/Init.cs
@@ -17,7 +17,6 @@ namespace HandBrake.ApplicationServices
* I really dislike this, Need to replace this sooner rather than later.
**/
-
/// <summary>
/// Setup the Settings used by the applicaiton with this library
/// </summary>
@@ -57,13 +56,14 @@ namespace HandBrake.ApplicationServices
/// <param name="preventSleep">
/// Prevent the system from sleeping
/// </param>
- public static void SetupSettings(string versionString, string version, int instanceId, string completionOption, bool disableDvdNav,
+ public static void SetupSettings(string versionString, string version, int build, int instanceId, string completionOption, bool disableDvdNav,
bool growlEncode, bool growlQueue, string processPriority, string saveLogPath, bool saveLogToSpecifiedPath,
bool saveLogWithVideo, bool showCliForInGuiEncodeStatus, bool preventSleep)
{
InstanceId = instanceId;
HandBrakeGuiVersionString = versionString;
Version = version;
+ Build = build;
CompletionOption = completionOption;
DisableDvdNav = disableDvdNav;
GrowlEncode = growlEncode;
@@ -103,6 +103,11 @@ namespace HandBrake.ApplicationServices
public static string Version;
/// <summary>
+ /// Handbrakes Build number
+ /// </summary>
+ public static int Build;
+
+ /// <summary>
/// What to do when the encode completes.
/// </summary>
public static string CompletionOption;