diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2018-11-18 08:22:37 +0200 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2018-11-18 08:22:37 +0200 |
| commit | 8de1eb76bfc78157f7d690952d56c0a7464914f4 (patch) | |
| tree | 3eb228bff847ec07587e241c5e407d9a0b809c89 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update | |
| parent | 53b5ef734132b543838e1663fe96d70457d8a62b (diff) | |
| parent | 7fbf2f7cf8e2b52d83909b12658c30209f81b2bd (diff) | |
| download | Tango-8de1eb76bfc78157f7d690952d56c0a7464914f4.tar.gz Tango-8de1eb76bfc78157f7d690952d56c0a7464914f4.zip | |
merge
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update')
3 files changed, 9 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/CheckForUpdatesRequest.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/CheckForUpdatesRequest.cs index f76e714a2..0047e311b 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/CheckForUpdatesRequest.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/CheckForUpdatesRequest.cs @@ -18,5 +18,8 @@ namespace Tango.MachineStudio.Common.Update [DataMember] public String Version { get; set; } + + [DataMember] + public bool AcceptBetaRelease { get; set; } } } diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/CheckForUpdatesResponse.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/CheckForUpdatesResponse.cs index 8ae921156..f34f12d8f 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/CheckForUpdatesResponse.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/CheckForUpdatesResponse.cs @@ -14,6 +14,9 @@ namespace Tango.MachineStudio.Common.Update public bool IsUpdateAvailable { get; set; } [DataMember] + public bool IsStable { get; set; } + + [DataMember] public String Version { get; set; } [DataMember] diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UploadVersionRequest.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UploadVersionRequest.cs index 18f29eda2..83739f615 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UploadVersionRequest.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UploadVersionRequest.cs @@ -24,5 +24,8 @@ namespace Tango.MachineStudio.Common.Update [DataMember] public bool ForcedUpdate { get; set; } + + [DataMember] + public bool IsStable { get; set; } } } |
