Skip to content

Commit

Permalink
release 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Movsar Bekaev committed May 12, 2023
1 parent 68b0247 commit 6a403b4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
3 changes: 3 additions & 0 deletions DoshStat/FrmAbout.Designer.cs

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

22 changes: 21 additions & 1 deletion DoshStat/FrmAbout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public FrmAbout()
this.labelProductName.Text = AssemblyProduct;
this.labelVersion.Text = String.Format("Version {0}", AssemblyVersion);

this.labelContact.Text += " movsar.dev@gmail.com";
this.labelContact.Text += " movsar.dev@gmail.com | https://github.com/movsar/doshstat";
}

#region Assembly Attribute Accessors
Expand Down Expand Up @@ -100,5 +100,25 @@ public string AssemblyCompany
}
}
#endregion

private void labelVersion_Click(object sender, EventArgs e)
{
GoToWebSite();
}

private void labelContact_Click(object sender, EventArgs e)
{
GoToWebSite();
}

private void labelProductName_Click(object sender, EventArgs e)
{
GoToWebSite();
}

private void GoToWebSite()
{
System.Diagnostics.Process.Start("https://github.com/movsar/doshstat");
}
}
}

0 comments on commit 6a403b4

Please sign in to comment.