Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
naming of delete checkbox help text
bette rhide main window during startup
  • Loading branch information
MyUncleSam committed Jan 29, 2022
1 parent 1453547 commit 48fc49e
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
4 changes: 2 additions & 2 deletions EveChatNotifier/EveChatNotifier.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
<Reference Include="AutoUpdater.NET, Version=1.7.0.0, Culture=neutral, PublicKeyToken=501435c91b35f4bc, processorArchitecture=MSIL">
<HintPath>..\packages\Autoupdater.NET.Official.1.7.0\lib\net45\AutoUpdater.NET.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Win32.TaskScheduler, Version=2.9.3.0, Culture=neutral, PublicKeyToken=e25603a88b3aa7da, processorArchitecture=MSIL">
<HintPath>..\packages\TaskScheduler.2.9.3\lib\net452\Microsoft.Win32.TaskScheduler.dll</HintPath>
<Reference Include="Microsoft.Win32.TaskScheduler, Version=2.10.0.0, Culture=neutral, PublicKeyToken=e25603a88b3aa7da, processorArchitecture=MSIL">
<HintPath>..\packages\TaskScheduler.2.10.0\lib\net452\Microsoft.Win32.TaskScheduler.dll</HintPath>
</Reference>
<Reference Include="NAudio, Version=1.8.4.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\NAudio.1.8.4\lib\net35\NAudio.dll</HintPath>
Expand Down
4 changes: 2 additions & 2 deletions EveChatNotifier/FormMain.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions EveChatNotifier/FormMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ public FormMain()

Logging.WriteLine("Starting chat notifier.");

this.StartPosition = FormStartPosition.Manual;
this.Location = new Point(int.MinValue, int.MinValue);
InitializeComponent();

// set version information
Expand All @@ -137,6 +139,7 @@ public FormMain()
MenuItem cmHomepage = new MenuItem("Homepage");
MenuItem cmVersion = new MenuItem(string.Format("v{0}", Application.ProductVersion));
MenuItem cmCheckUpdate = new MenuItem("Check for update");
MenuItem cmContributors = new MenuItem("Contributors");

// version
cmVersion.Enabled = false;
Expand All @@ -152,10 +155,16 @@ public FormMain()
cmSettings.Click += CmSettings_Click;
cm.MenuItems.Add(cmSettings);

cm.MenuItems.Add("-");

// homepage
cmHomepage.Click += CmHomepage_Click;
cm.MenuItems.Add(cmHomepage);

// made by / contributors
cmContributors.Click += CmContributors_Click;
cm.MenuItems.Add(cmContributors);

cm.MenuItems.Add("-");

// exit
Expand All @@ -175,6 +184,11 @@ public FormMain()
}
}

private void CmContributors_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/MyUncleSam/EveChatNotifier/graphs/contributors");
}

private void CmCheckUpdate_Click(object sender, EventArgs e)
{
Notifier.GetInstance().Notify("Update check", "Checking for update - if there is a new version you get a new window appears leading your throught the update process.");
Expand Down
4 changes: 2 additions & 2 deletions EveChatNotifier/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.10.2.0")]
[assembly: AssemblyFileVersion("2.10.2.0")]
[assembly: AssemblyVersion("2.10.3.0")]
[assembly: AssemblyFileVersion("2.10.3.0")]
2 changes: 1 addition & 1 deletion EveChatNotifier/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ private void LblAutostartDelay_MouseEnter(object sender, EventArgs e)

private void lblDeleteLogs_MouseEnter(object sender, EventArgs e)
{
tbHelp.Text = String.Format("ATTENTION: Enabling this deletes all logfiles in the eve log folder. This cannot be undone so use on your own risk! (This was made to prevent your storage space to be filled with eve logs.{0}(Cannot be enabled with delete.)", Environment.NewLine);
tbHelp.Text = String.Format("ATTENTION:{0}Enabling this deletes all logfiles in the eve log folder. This cannot be undone so use on your own risk! (This was made to prevent your storage space to be filled with eve logs", Environment.NewLine);
}

private void cbDeleteLogs_CheckedChanged(object sender, EventArgs e)
Expand Down
2 changes: 1 addition & 1 deletion EveChatNotifier/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<package id="NAudio" version="1.8.4" targetFramework="net452" />
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net452" />
<package id="RestSharp" version="106.12.0" targetFramework="net452" />
<package id="TaskScheduler" version="2.9.3" targetFramework="net452" />
<package id="TaskScheduler" version="2.10.0" targetFramework="net452" />
<package id="Tulpep.NotificationWindow" version="1.1.38" targetFramework="net452" />
</packages>

0 comments on commit 48fc49e

Please sign in to comment.