Skip to content

Commit

Permalink
Fix Issue #15
Browse files Browse the repository at this point in the history
Fix Issue #16
  • Loading branch information
mousebyte committed Jun 3, 2019
1 parent a03a54e commit f13142f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
5 changes: 2 additions & 3 deletions Logophi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<AssemblyInfoVersionType>SemVer1</AssemblyInfoVersionType>
<InheritWinAppVersionFrom>None</InheritWinAppVersionFrom>
<AssemblyInfoVersionSemVerSettings>AssemblyVersion.IncrementOnce.Beta</AssemblyInfoVersionSemVerSettings>
<AssemblyVersion>0.6.7093.4</AssemblyVersion>
<AssemblyVersion>0.6.7093.8</AssemblyVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -60,8 +60,7 @@
<InheritWinAppVersionFrom>None</InheritWinAppVersionFrom>
<AssemblyFileVersionSettings>None.IncrementOnDemand.IncrementWithResetOnIncrease.NoneWithAutoReset</AssemblyFileVersionSettings>
<AssemblyInfoVersionSettings>None.None.None.None</AssemblyInfoVersionSettings>
<AssemblyInfoVersionSemVerSettings>
</AssemblyInfoVersionSemVerSettings>
<AssemblyInfoVersionSemVerSettings>AssemblyVersion.NoneWithAutoReset.Beta</AssemblyInfoVersionSemVerSettings>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
Expand Down
6 changes: 3 additions & 3 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.6.5.0")]
[assembly: AssemblyFileVersion("0.6.7093.4")]
[assembly: AssemblyInformationalVersion("0.6.5-beta")]
[assembly: AssemblyVersion("0.6.9.0")]
[assembly: AssemblyFileVersion("0.6.7093.8")]
[assembly: AssemblyInformationalVersion("0.6.9-beta")]
3 changes: 2 additions & 1 deletion SettingsHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ public SettingsHelper
_settings = settings;
_browser = browser;
_settings.PropertyChanged += OnSettingsPropertyChanged;
UpdatePreferences();
var key = OpenAutoRunKey();
if (key == null || !_settings.AutoRun || key.ValueCount == 0)
return;
_settings.AutoRun = true;
key.Dispose();
UpdatePreferences();
_settings.Save();
}

public GlobalHotkey Hotkey { get; } = new GlobalHotkey();
Expand Down

0 comments on commit f13142f

Please sign in to comment.