aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-11-15 16:21:13 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-11-15 16:21:13 +0200
commitdcdee2479e0dc709835e97853bb9db0349210336 (patch)
treeceafc1d3679931f0798236434e284d9a7ed644de /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
parentb0909a133eaba5223ca397c8186ba6b96fdaa647 (diff)
downloadTango-dcdee2479e0dc709835e97853bb9db0349210336.tar.gz
Tango-dcdee2479e0dc709835e97853bb9db0349210336.zip
Machine Studio v3.5.70 Stable.
Added stable/beta release modes. Handle corrupted log file names.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
index 702343c72..ffeefb820 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
@@ -61,6 +61,15 @@ namespace Tango.MachineStudio.Publisher
set { _forcesUpdate = value; RaisePropertyChangedAuto(); }
}
+ private bool _isStable;
+
+ public bool IsStable
+ {
+ get { return _isStable; }
+ set { _isStable = value; RaisePropertyChangedAuto(); }
+ }
+
+
private String _currentVersion;
public String CurrentVersion
@@ -154,6 +163,7 @@ namespace Tango.MachineStudio.Publisher
Version = CurrentVersion.ToString(),
Comments = Comments,
ForcedUpdate = ForcedUpdate,
+ IsStable = IsStable,
});
tempFile = Path.Combine(Path.GetTempPath(), response.FileName);