Skip to content

Commit

Permalink
Bump v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ducng99 committed Apr 7, 2023
1 parent 1a4ba9e commit fc7a527
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions SimHubToF12020UDP/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
4 changes: 2 additions & 2 deletions SimHubToF12020UDP/SettingsControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
d:DesignHeight="300" d:DesignWidth="300">

<Grid>
<styles:SHSection Title="UDP Options">
<styles:SHSection Name="HeaderSection" Title="SimHub To F12020 UDP">
<StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Margin="0 0 5 0">Current Target IP (wheel):</TextBlock>
Expand All @@ -20,7 +20,7 @@
<TextBlock Margin="0 8 5 0">New IP:</TextBlock>
<ui:IPMaskedTextBox HorizontalAlignment="Left" Name="ReceiverIP" />
<TextBlock Margin="5 8 5 0">Port:</TextBlock>
<TextBox Name="ReceiverPort" KeyDown="ReceiverPort_KeyDown">20777</TextBox>
<TextBox Name="ReceiverPort" KeyDown="ReceiverPort_KeyDown" VerticalAlignment="Center">20777</TextBox>
</StackPanel>
<styles:SHButtonPrimary HorizontalAlignment="Left" Content="Save" Click="SHButtonPrimary_Click"/>
</StackPanel>
Expand Down
2 changes: 2 additions & 0 deletions SimHubToF12020UDP/SettingsControl.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using SimHubToF12020UDP;
using System.Reflection;
using System.Windows.Controls;
using System.Windows.Input;

Expand All @@ -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()
Expand Down
4 changes: 2 additions & 2 deletions SimHubToF12020UDP/SimHubToF12020UDP.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fc7a527

Please sign in to comment.