aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-06-24 13:03:39 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-06-24 13:03:39 +0300
commit54802d8343dcb710ced4d009995a8cc796915039 (patch)
treeb72d2d9bc9ae1a292e60d5b9a29cac6b2791963c /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher
parent5095a1dd5f65a7659083cae6dfccb34007720ee9 (diff)
downloadTango-54802d8343dcb710ced4d009995a8cc796915039.tar.gz
Tango-54802d8343dcb710ced4d009995a8cc796915039.zip
Added password encryption.
Core version 1.0.0.1 Machine Studio version 1.0.0.4 Added forced update to machine studio versions db. Removed pubxml files from gitignore. Implemented a publish profile for machine studio update service. Worked on twine.local IIS & FTP !! :( Implemented virtual host names for publish and download (MS versions) FTP sites.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher')
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindow.xaml2
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs9
2 files changed, 11 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindow.xaml b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindow.xaml
index abbfa0aa6..404faf4ab 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindow.xaml
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindow.xaml
@@ -48,6 +48,8 @@
<TextBlock FontSize="16" Margin="0 20 0 0">Comments</TextBlock>
<TextBox Height="70" Margin="0 5 0 0" Width="500" AcceptsReturn="True" TextWrapping="Wrap" Text="{Binding Comments,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"></TextBox>
+
+ <CheckBox Margin="0 10 0 0" IsChecked="{Binding ForcedUpdate}">Forced Update</CheckBox>
</StackPanel>
<Grid DockPanel.Dock="Bottom">
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
index 622d3b0d0..11222e806 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
@@ -50,6 +50,14 @@ namespace Tango.MachineStudio.Publisher
set { _comments = value; RaisePropertyChangedAuto(); }
}
+ private bool _forcesUpdate;
+
+ public bool ForcedUpdate
+ {
+ get { return _forcesUpdate; }
+ set { _forcesUpdate = value; RaisePropertyChangedAuto(); }
+ }
+
private String _currentVersion;
public String CurrentVersion
@@ -135,6 +143,7 @@ namespace Tango.MachineStudio.Publisher
Password = Password,
Version = CurrentVersion.ToString(),
Comments = Comments,
+ ForcedUpdate = ForcedUpdate,
});
tempFile = Path.Combine(Path.GetTempPath(), response.FileName);