Skip to content

Commit

Permalink
Remove e-mail in favour of github repo url (#95)
Browse files Browse the repository at this point in the history
* Remove e-mail in favour of github repo url

* Layout changes
  • Loading branch information
robinvanpoppel committed Apr 10, 2020
1 parent 526b32c commit 650364b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions KeeTrayTOTP/FormAbout.Designer.cs

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

5 changes: 2 additions & 3 deletions KeeTrayTOTP/FormAbout.cs
Expand Up @@ -21,7 +21,6 @@ internal partial class FormAbout : Form
/// <param name="plugin">Plugin Host.</param>
internal FormAbout(KeeTrayTOTPExt plugin)
{

_plugin = plugin;
InitializeComponent();
}
Expand All @@ -35,12 +34,12 @@ private void FormAbout_Load(object sender, EventArgs e)
{
GlobalWindowManager.AddWindow(this);

Text = Localization.Strings.About + @" - " + Localization.Strings.TrayTOTPPlugin;
Text = Localization.Strings.About + " - " + Localization.Strings.TrayTOTPPlugin;
ListViewAbout.Items[0].SubItems.Add(AssemblyTitle);
ListViewAbout.Items[1].SubItems.Add(AssemblyCompany);
ListViewAbout.Items[2].SubItems.Add(AssemblyVersion);
ListViewAbout.Items[3].SubItems.Add(AssemblyTrademark);
ListViewAbout.Items[4].SubItems.Add(KeeTrayTOTPExt.Email);
ListViewAbout.Items[4].SubItems.Add(KeeTrayTOTPExt.SupportUrl);
LabelCopyright.Text = AssemblyCopyright;
}

Expand Down
4 changes: 2 additions & 2 deletions KeeTrayTOTP/TrayTOTP_Plugin.cs
Expand Up @@ -31,9 +31,9 @@ public sealed partial class KeeTrayTOTPExt : Plugin
internal IPluginHost PluginHost = null;

/// <summary>
/// Tray TOTP Support Email
/// Tray TOTP Support Url
/// </summary>
internal const string Email = "victor.rds@protonmail.ch";
internal const string SupportUrl = "https://github.com/KeeTrayTOTP/KeeTrayTOTP/issues";

/// <summary>
/// Constants (keepass form object names).
Expand Down

0 comments on commit 650364b

Please sign in to comment.