Skip to content

Commit

Permalink
Set version number to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
geluk committed Sep 14, 2016
1 parent fe09fab commit 25a24e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pass-winmenu/src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ private enum MainThreadAction
ShowSearch,
Quit
}

private const string version = "0.3";
private readonly NotifyIcon icon = new NotifyIcon();
private readonly Hotkeys hotkeys;
private readonly GPG gpg = new GPG(ConfigManager.Config.GpgPath);
Expand Down Expand Up @@ -193,7 +195,7 @@ private void CreateNotifyIcon()
icon.Icon = EmbeddedResources.Icon;
icon.Visible = true;
var menu = new ContextMenuStrip();
menu.Items.Add(new ToolStripLabel("pass-winmenu v0.2.3-git"));
menu.Items.Add(new ToolStripLabel("pass-winmenu v" + version));
menu.Items.Add(new ToolStripSeparator());
menu.Items.Add("Decrypt Password");
menu.Items.Add("Update Password Store");
Expand Down

0 comments on commit 25a24e5

Please sign in to comment.