Skip to content

Commit

Permalink
Manager: Add a link to the changelog to about
Browse files Browse the repository at this point in the history
  • Loading branch information
Sejsel committed Jul 27, 2024
1 parent 053a02a commit e1c8075
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
1 change: 0 additions & 1 deletion ArcdpsLogManager/Commands/About.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ public class About : Command
public About()
{
MenuText = "About";
Shortcut = Keys.F11;
}

protected override void OnExecuted(EventArgs e)
Expand Down
11 changes: 10 additions & 1 deletion ArcdpsLogManager/ManagerForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -549,9 +549,18 @@ private MenuBar ConstructMenuBar()
UseShellExecute = true
};
Process.Start(processInfo);
}) { MenuText = "Donate" });
}) { MenuText = "Donate a coffee \u2764\ufe0f" });
helpMenuItem.Items.Add(new SeparatorMenuItem());
helpMenuItem.Items.Add(new Command((_, _) =>
{
var processInfo = new ProcessStartInfo
{
FileName = "https://github.com/gw2scratch/evtc/releases",
UseShellExecute = true
};
Process.Start(processInfo);
}) { MenuText = "Changelog" });
helpMenuItem.Items.Add(new Command((_, _) =>
{
var processInfo = new ProcessStartInfo
{
Expand Down

0 comments on commit e1c8075

Please sign in to comment.