[Feature] Windows Store (#101), version 1.0.10.0

This commit is contained in:
Markus Hofknecht 2020-07-16 18:17:53 +02:00
parent bcc16a9dfd
commit 6038d2ae20
4 changed files with 8 additions and 5 deletions

View file

@ -76,6 +76,7 @@ namespace SystemTrayMenu.Helper
if (disposing)
{
timerRaiseRowMouseLeave.Dispose();
dgv?.Dispose();
}
}

View file

@ -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>

View file

@ -39,5 +39,5 @@ using System.Runtime.InteropServices;
// 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")]

View file

@ -40,8 +40,10 @@ namespace SystemTrayMenu.Utilities
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()