summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels
diff options
context:
space:
mode:
authorsr55 <[email protected]>2014-09-05 22:35:20 +0000
committersr55 <[email protected]>2014-09-05 22:35:20 +0000
commit3bc51b0b0a02bda3346277ee3f26a96e6089ee19 (patch)
treeb6a8fdd48cb4df4dc9e75d453c9d0c9dbd781735 /win/CS/HandBrakeWPF/ViewModels
parent4eccd975caa1d2ece174c70546da069df3e2ad08 (diff)
WinGui: The update checker will now show an update on 32bit versions of the app if the system supports the 64bit version, even if the version number is the same.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6393 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
index 504f692bc..85e74ed20 100644
--- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
@@ -1680,6 +1680,11 @@ namespace HandBrakeWPF.ViewModels
this.UpdateMessage = "A New Update is Available!";
this.UpdateAvailable = true;
}
+ else if (Environment.Is64BitOperatingSystem && !System.Environment.Is64BitProcess)
+ {
+ this.UpdateMessage = "Your system supports the 64bit version of HandBrake! This offers performance and stability improvements over this 32bit version.";
+ this.UpdateAvailable = true;
+ }
else
{
this.UpdateMessage = "There are no new updates at this time.";