summaryrefslogtreecommitdiffstats
path: root/win/C#/frmAbout.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-06-12 11:31:02 +0000
committersr55 <[email protected]>2010-06-12 11:31:02 +0000
commit5e77ed97bc76f247914b49dd402df671f4e4d87c (patch)
treead78d03144c43bcefd68019deab4cf1169ec683e /win/C#/frmAbout.cs
parente30d3faa77a878394b195c651f4b495bb2f60e2d (diff)
WinGui:
- Some changes that didn't get picked up from the last checkin. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3380 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmAbout.cs')
-rw-r--r--win/C#/frmAbout.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/win/C#/frmAbout.cs b/win/C#/frmAbout.cs
index 6531cf13b..9db62f871 100644
--- a/win/C#/frmAbout.cs
+++ b/win/C#/frmAbout.cs
@@ -1,11 +1,12 @@
/* frmAbout.cs $
- This file is part of the HandBrake source code.
+ This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace Handbrake
{
using System;
+ using System.Reflection;
using System.Windows.Forms;
/// <summary>
@@ -19,8 +20,12 @@ namespace Handbrake
public frmAbout()
{
InitializeComponent();
- lbl_HBBuild.Text = Properties.Settings.Default.hb_version + " (" + Properties.Settings.Default.hb_build +
+ lbl_HBBuild.Text = "CLI Build: " + Properties.Settings.Default.hb_version + " (" + Properties.Settings.Default.hb_build +
") - " + Properties.Settings.Default.hb_platform;
+
+ Version gui = Assembly.GetExecutingAssembly().GetName().Version;
+ Version appServices = HandBrake.ApplicationServices.Init.AssemblyVersion();
+ lbl_GUIBuild.Text = gui.ToString(4) + " (Services: " + appServices.ToString(4) + ")";
}
/// <summary>