Skip to content

Commit 95a186e

Browse files
authored
Merge pull request #24 from Terence-D/Dev1.0
1.4 Release
2 parents 0ec25c8 + 95f03da commit 95a186e

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

GameInputCommandSystem/GameInputCommandSystem.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<MapFileExtensions>true</MapFileExtensions>
2727
<AutorunEnabled>true</AutorunEnabled>
2828
<ApplicationRevision>0</ApplicationRevision>
29-
<ApplicationVersion>1.3.0.%2a</ApplicationVersion>
29+
<ApplicationVersion>1.4.0.%2a</ApplicationVersion>
3030
<UseApplicationTrust>false</UseApplicationTrust>
3131
<PublishWizardCompleted>true</PublishWizardCompleted>
3232
<BootstrapperEnabled>true</BootstrapperEnabled>

GameInputCommandSystem/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.3.0.0")]
55-
[assembly: AssemblyFileVersion("1.3.0.0")]
54+
[assembly: AssemblyVersion("1.4.0.0")]
55+
[assembly: AssemblyFileVersion("1.4.0.0")]

GameInputCommandSystem/Views/MainWindow.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<Label Content="Password&#xD;&#xA;" HorizontalAlignment="Left" Margin="10,41,0,0" VerticalAlignment="Top" Width="72" Height="26"/>
1717
<PasswordBox x:Name="txtPassword" HorizontalAlignment="Left" Height="23" Margin="1,45,0,0" PasswordChar="*" VerticalAlignment="Top" Width="120" Grid.Column="1"/>
1818
<Label Content="Target" HorizontalAlignment="Left" Margin="10,72,0,0" VerticalAlignment="Top" RenderTransformOrigin="-0.907,-2.615" Height="26" Width="43"/>
19-
<TextBox x:Name="txtTarget" HorizontalAlignment="Left" Height="23" Margin="1,75,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="120" Grid.Column="1"/>
19+
<ComboBox x:Name="txtTarget" HorizontalAlignment="Left" Height="23" Margin="1,75,0,0" VerticalAlignment="Top" Width="120" Grid.Column="1" IsEditable="True"/>
2020
<Button x:Name="btnStart" Content="Start" Margin="10,103,33,0" Click="btnStart_Click" Height="22" VerticalAlignment="Top"/>
2121
<Button Content="About" Grid.Column="1" HorizontalAlignment="Left" Margin="39,104,0,0" VerticalAlignment="Top" Width="75" Click="Button_Click"/>
2222

GameInputCommandSystem/Views/MainWindow.xaml.cs

+3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@ private void btnStart_Click(object sender, RoutedEventArgs e)
5555

5656
private void LoadSettings()
5757
{
58+
txtTarget.Items.Add("Star Citizen");
5859
txtTarget.Text = Properties.Settings.Default.target;
60+
if (txtTarget.Text == "")
61+
txtTarget.Text = "Star Citizen";
5962
if (Properties.Settings.Default.password.Length > 5)
6063
txtPassword.Password = CryptoHelper.Decrypt(Properties.Settings.Default.password);
6164
int port = Properties.Settings.Default.port;

0 commit comments

Comments
 (0)