diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2019-09-26 19:29:21 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2019-09-26 19:29:21 +0300 |
| commit | 7b22fc549089ea11a90486bcef0afbaba4efe3fa (patch) | |
| tree | 67d93bd62570b58d2e44835dd3e5553f9fc0859f /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/UpdateViewVM.cs | |
| parent | 118436fbb6553e81cfeae70aa3c3a4576fce2b1c (diff) | |
| download | Tango-7b22fc549089ea11a90486bcef0afbaba4efe3fa.tar.gz Tango-7b22fc549089ea11a90486bcef0afbaba4efe3fa.zip | |
Fixed issue with BypassVersionCheck not loading modules.
Added ForceVersionUpdate setting.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/UpdateViewVM.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/UpdateViewVM.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/UpdateViewVM.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/UpdateViewVM.cs index c40f91005..4a94322fb 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/UpdateViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/UpdateViewVM.cs @@ -218,7 +218,7 @@ namespace Tango.MachineStudio.UI.ViewModels CheckForUpdatesResponse response = _machineStudioWebClient.CheckForUpdates(new CheckForUpdatesRequest() { - Version = _application.Version.ToString(), + Version = settings.ForceVersionUpdate ? "1.0.0.0" : _application.Version.ToString(), }).Result; if (response.IsUpdateAvailable) |
