diff options
author | Scott <[email protected]> | 2015-08-29 14:51:45 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2015-08-29 14:51:45 +0100 |
commit | 32f442e8da91b8766333abc9ba6b69946701d8db (patch) | |
tree | 74094a9b0c32d30b2e3292c4084e8aae95fff31b /win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs | |
parent | 4fb5fbdced7faceaf4b24bd1b1f08cc127200ed8 (diff) |
WinGui: Update the GUI to handle the version information correctly after the git move.
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs b/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs index 8230e6620..0c231cbac 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs @@ -58,6 +58,16 @@ namespace HandBrake.ApplicationServices.Interop.Interfaces /// </summary>
JsonScanObject Titles { get; }
+ /// <summary>
+ /// Gets the HandBrake version string.
+ /// </summary>
+ string Version { get; }
+
+ /// <summary>
+ /// Gets the HandBrake build number.
+ /// </summary>
+ int Build { get; }
+
#endregion
#region Public Methods
|