Skip to content

Commit

Permalink
Version bump (#73)
Browse files Browse the repository at this point in the history
* Version bump

* Remove unnecessary initialization
  • Loading branch information
jdahlblom authored Mar 5, 2024
1 parent 0789071 commit e76eae8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/client/DCSInsight/Communication/TCPClientHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ internal class TCPClientHandler : IDisposable, ICommandListener
private bool _isRunning;
private readonly string _host;
private readonly string _port;
private bool _apiListReceived = false;
private bool _apiListReceived;
private int _metaDataPollCounter;
public bool LogJSON { get; set; }
public bool LogJSON { get; set; }
private string _currentMessage = "";
private volatile bool _responseReceived;
private bool _requestAPIList;
Expand Down
2 changes: 1 addition & 1 deletion src/client/DCSInsight/DCSInsight.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<!-- for WinForms -->
<AssemblyName>dcs-insight</AssemblyName>
<Version>1.0.0</Version>
<AssemblyVersion>1.9.1</AssemblyVersion>
<AssemblyVersion>1.9.2</AssemblyVersion>
<ApplicationIcon>Images\Magnifier_icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/client/DCSInsight/Windows/SettingsWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public partial class SettingsWindow
{
public string DcsBiosJSONLocation { get; private set; }
private bool _isLoaded;
public bool DCSBIOSChanged { get; private set; } = false;
public bool DCSBIOSChanged { get; private set; }

public SettingsWindow()
{
Expand Down

0 comments on commit e76eae8

Please sign in to comment.