Skip to content

Commit

Permalink
[Feature] Windows Store (#101), version 1.0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Hofknecht committed Jul 16, 2020
1 parent bcc16a9 commit 6038d2a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions Helpers/DgvMouseRow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ protected virtual void Dispose(bool disposing)
if (disposing)
{
timerRaiseRowMouseLeave.Dispose();
dgv?.Dispose();
}
}

Expand Down
2 changes: 1 addition & 1 deletion Packaging/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Identity
Name="49543SystemTrayMenu.SystemTrayMenu"
Publisher="CN=5884501C-92ED-45DE-9508-9D987C314243"
Version="1.0.9.0" />
Version="1.0.10.0" />

<Properties>
<DisplayName>SystemTrayMenu</DisplayName>
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.9.3")]
[assembly: AssemblyFileVersion("1.0.9.3")]
[assembly: AssemblyVersion("1.0.10.0")]
[assembly: AssemblyFileVersion("1.0.10.0")]
6 changes: 4 additions & 2 deletions Utilities/Log.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ internal static void Error(string message, Exception ex)
internal static string GetLogFilePath()
{
return Path.Combine(
Path.GetDirectoryName(
Assembly.GetExecutingAssembly().Location), $"log-{Environment.MachineName}.txt");
Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
$"SystemTrayMenu"),
$"log-{Environment.MachineName}.txt");
}

internal static void OpenLogFile()
Expand Down

0 comments on commit 6038d2a

Please sign in to comment.