From fc7a527134a08b07d1a34e15b2faa30b402b440e Mon Sep 17 00:00:00 2001 From: ducng99 Date: Fri, 7 Apr 2023 16:41:25 +1200 Subject: [PATCH] Bump v1.1.3 --- SimHubToF12020UDP/Properties/AssemblyInfo.cs | 4 ++-- SimHubToF12020UDP/SettingsControl.xaml | 4 ++-- SimHubToF12020UDP/SettingsControl.xaml.cs | 2 ++ SimHubToF12020UDP/SimHubToF12020UDP.cs | 4 ++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/SimHubToF12020UDP/Properties/AssemblyInfo.cs b/SimHubToF12020UDP/Properties/AssemblyInfo.cs index 8208ae7..392e89f 100644 --- a/SimHubToF12020UDP/Properties/AssemblyInfo.cs +++ b/SimHubToF12020UDP/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut // en utilisant '*', comme indiqué ci-dessous : // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.1.2.0")] -[assembly: AssemblyFileVersion("1.1.2.0")] +[assembly: AssemblyVersion("1.1.3.0")] +[assembly: AssemblyFileVersion("1.1.3.0")] diff --git a/SimHubToF12020UDP/SettingsControl.xaml b/SimHubToF12020UDP/SettingsControl.xaml index 4299b51..dbdeb0f 100644 --- a/SimHubToF12020UDP/SettingsControl.xaml +++ b/SimHubToF12020UDP/SettingsControl.xaml @@ -8,7 +8,7 @@ d:DesignHeight="300" d:DesignWidth="300"> - + Current Target IP (wheel): @@ -20,7 +20,7 @@ New IP: Port: - 20777 + 20777 diff --git a/SimHubToF12020UDP/SettingsControl.xaml.cs b/SimHubToF12020UDP/SettingsControl.xaml.cs index faf6806..b41a3a2 100644 --- a/SimHubToF12020UDP/SettingsControl.xaml.cs +++ b/SimHubToF12020UDP/SettingsControl.xaml.cs @@ -1,4 +1,5 @@ using SimHubToF12020UDP; +using System.Reflection; using System.Windows.Controls; using System.Windows.Input; @@ -11,6 +12,7 @@ public partial class SettingsControl : UserControl public SettingsControl() { InitializeComponent(); + HeaderSection.Title = "SimHub To F12020 UDP v" + Assembly.GetExecutingAssembly().GetName().Version.ToString(3); } public SettingsControl(SimHubToF12020UDP plugin) : this() diff --git a/SimHubToF12020UDP/SimHubToF12020UDP.cs b/SimHubToF12020UDP/SimHubToF12020UDP.cs index 32086bb..a8dfa56 100644 --- a/SimHubToF12020UDP/SimHubToF12020UDP.cs +++ b/SimHubToF12020UDP/SimHubToF12020UDP.cs @@ -3,9 +3,9 @@ namespace SimHubToF12020UDPPlugin { - [PluginDescription("Broadcast UDP data in F1 2020 format. Used for Thrustmasters SF1000 wheel")] + [PluginDescription("Broadcast UDP data in F1 2020 format. Used for Thrustmasters™ SF1000 wheel")] [PluginAuthor("Maxhyt")] - [PluginName("F12020 UDP Broadcast")] + [PluginName("SimHub To F12020 UDP")] public class SimHubToF12020UDP : IPlugin, IWPFSettings { public SimHubToF12020UDPSettings Settings;