From a4d55f231799f2761b949f99095ced2b3a7f6f9e Mon Sep 17 00:00:00 2001 From: Mag-nus Date: Sat, 30 Nov 2019 17:41:44 -0600 Subject: [PATCH] Fix client/decal location changes --- Source/MainWindow.xaml.cs | 6 +++--- Source/Properties/AssemblyInfo.cs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/MainWindow.xaml.cs b/Source/MainWindow.xaml.cs index cdbd51b..4617470 100644 --- a/Source/MainWindow.xaml.cs +++ b/Source/MainWindow.xaml.cs @@ -27,7 +27,7 @@ public MainWindow() { InitializeComponent(); - Title += " 1.4"; // TODO: !!!!! ATTENTION ===== Update line 55 in AssemblyInfo.cs ===== ATTENTION !!!!! + Title += " 1.5"; // TODO: !!!!! ATTENTION ===== Update line 55 in AssemblyInfo.cs ===== ATTENTION !!!!! if (Properties.Settings.Default.WindowPositionLeft > 0 && Properties.Settings.Default.WindowPositionTop > 0) { @@ -492,7 +492,7 @@ private void btnACClientLocation_Click(object sender, RoutedEventArgs e) // Get the selected file name and display in a TextBox if (result == true) - txtACClientLocation.Text = dialog.FileName; + Properties.Settings.Default.ACClientLocation = dialog.FileName; } private void btnDecalLocation_Click(object sender, RoutedEventArgs e) @@ -510,7 +510,7 @@ private void btnDecalLocation_Click(object sender, RoutedEventArgs e) // Get the selected file name and display in a TextBox if (result == true) - txtDecalInjectLocation.Text = dialog.FileName; + Properties.Settings.Default.DecalInjectLocation = dialog.FileName; } private void btnPublicServerListDefault_Click(object sender, RoutedEventArgs e) diff --git a/Source/Properties/AssemblyInfo.cs b/Source/Properties/AssemblyInfo.cs index 0897a43..581e671 100644 --- a/Source/Properties/AssemblyInfo.cs +++ b/Source/Properties/AssemblyInfo.cs @@ -52,4 +52,4 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.4")] // TODO: !!!!! ATTENTION ===== Update line 28 in MainWindow.xaml.cs ===== ATTENTION !!!!! +[assembly: AssemblyFileVersion("1.5")] // TODO: !!!!! ATTENTION ===== Update line 28 in MainWindow.xaml.cs ===== ATTENTION !!!!!