diff --git a/README.md b/README.md index 84ae5bf..d08ce25 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,14 @@ ValheimPlus Manager makes the installation and configuration of ValheimPlus on W - UI/UX enhancements - Server list manager, join servers from the Manager - Backup your configuration files +- Swapping between different config files - Management of server admins - Uninstall ValheimPlus from game client/server client +- Automatic updates for the ValheimPlus Manager ## Requirements -.NET 5 available for download at: https://dotnet.microsoft.com/download/dotnet/5.0/runtime +- .NET 5 available for download at: https://dotnet.microsoft.com/download/dotnet/5.0/runtime +- Windows 7, Windows 8.1 or Windows 10 +- x64 operating system (you have this if you have more than 4GB of RAM) ## Installation - Download 'ValheimPlusManager.zip' - Unzip wherever you like diff --git a/ValheimPlusManagerWPF/ConfigurationManagerWindow.xaml b/ValheimPlusManagerWPF/ConfigurationManagerWindow.xaml index fe5f7dd..f505f73 100644 --- a/ValheimPlusManagerWPF/ConfigurationManagerWindow.xaml +++ b/ValheimPlusManagerWPF/ConfigurationManagerWindow.xaml @@ -198,7 +198,8 @@ - + + diff --git a/ValheimPlusManagerWPF/Data/Settings.xml b/ValheimPlusManagerWPF/Data/Settings.xml index 7ccbf54..44741ee 100644 --- a/ValheimPlusManagerWPF/Data/Settings.xml +++ b/ValheimPlusManagerWPF/Data/Settings.xml @@ -4,6 +4,6 @@ C:/Program Files (x86)/Steam/steamapps/common/Valheim dedicated server/ Data/ValheimPlusGameClient/Extracted Data/ValheimPlusServerClient/Extracted - 0.8.5 + 0.9 0.9 \ No newline at end of file diff --git a/ValheimPlusManagerWPF/Gfx/ValheimPlusManager.png b/ValheimPlusManagerWPF/Gfx/ValheimPlusManager.png index afeedf0..617a7bd 100644 Binary files a/ValheimPlusManagerWPF/Gfx/ValheimPlusManager.png and b/ValheimPlusManagerWPF/Gfx/ValheimPlusManager.png differ diff --git a/ValheimPlusManagerWPF/MainWindow.xaml b/ValheimPlusManagerWPF/MainWindow.xaml index b0ee5ee..232f46b 100644 --- a/ValheimPlusManagerWPF/MainWindow.xaml +++ b/ValheimPlusManagerWPF/MainWindow.xaml @@ -19,7 +19,7 @@ - + diff --git a/ValheimPlusManagerWPF/MainWindow.xaml.cs b/ValheimPlusManagerWPF/MainWindow.xaml.cs index 4d1504d..3224056 100644 --- a/ValheimPlusManagerWPF/MainWindow.xaml.cs +++ b/ValheimPlusManagerWPF/MainWindow.xaml.cs @@ -373,7 +373,7 @@ private void backupServerButton_Click(object sender, RoutedEventArgs e) { FileManager.CopyFromTo(String.Format("C:/Users/{0}/AppData/LocalLow/IronGate", Environment.UserName), String.Format("C:/ValheimServerBackups/{0}", DateTime.Now.ToString("yyyy-MM-dd-HHmm"))); statusLabel.Foreground = Brushes.Green; - statusLabel.Content = "Server data backup to C:/ValheimServerBackups complete!"; + statusLabel.Content = "Server data backup to 'C:/ValheimServerBackups' complete!"; } // Why two methods? 1. To reduce confusion, 2. In case IronGate adds a dedicated folder for server/client only @@ -381,7 +381,7 @@ private void backupClientButton_Click(object sender, RoutedEventArgs e) { FileManager.CopyFromTo(String.Format("C:/Users/{0}/AppData/LocalLow/IronGate", Environment.UserName), String.Format("C:/ValheimGameBackups/{0}", DateTime.Now.ToString("yyyy-MM-dd-HHmm"))); statusLabel.Foreground = Brushes.Green; - statusLabel.Content = "Game data backup to C:/ValheimGameBackups complete!"; + statusLabel.Content = "Game data backup to 'C:/ValheimGameBackups' complete!"; } } } diff --git a/ValheimPlusManagerWPF/Models/ValheimPlusConf.cs b/ValheimPlusManagerWPF/Models/ValheimPlusConf.cs index ca37749..5488342 100644 --- a/ValheimPlusManagerWPF/Models/ValheimPlusConf.cs +++ b/ValheimPlusManagerWPF/Models/ValheimPlusConf.cs @@ -97,6 +97,7 @@ public class ValheimPlusConf public bool disableServerPassword { get; set; } = false; public bool enforceConfiguration { get; set; } = true; public bool enforceMod { get; set; } = true; + public bool serverSyncsConfig { get; set; } = true; public int dataRate { get; set; } = 60; // 60*1024 = 614440 == 60kbs // Stamina diff --git a/ValheimPlusManagerWPF/ValheimPlusManager.csproj b/ValheimPlusManagerWPF/ValheimPlusManager.csproj index 4691c5d..b4e5e06 100644 --- a/ValheimPlusManagerWPF/ValheimPlusManager.csproj +++ b/ValheimPlusManagerWPF/ValheimPlusManager.csproj @@ -5,7 +5,7 @@ net5.0-windows true valheim-plus.ico - 0.2.0 + 0.3.0 Robert Roos Xenolith AB ValheimPlusManager