Skip to content

Commit

Permalink
Added "Show profile" menu item
Browse files Browse the repository at this point in the history
  • Loading branch information
mystasly48 committed Feb 18, 2019
1 parent 7c64d4d commit 05075c6
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 38 deletions.
75 changes: 38 additions & 37 deletions Mystter_SendTweet/Form1.Designer.cs

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

6 changes: 6 additions & 0 deletions Mystter_SendTweet/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using CoreTweet;
using Mystter_SendTweet.Languages;
using System.Net.NetworkInformation;
using System.Diagnostics;

namespace Mystter_SendTweet {
public partial class Form1 : Form {
Expand Down Expand Up @@ -91,6 +92,11 @@ public partial class Form1 : Form {
var lang = Localization.GetLanguageParent(selected);
ChangeLanguage(lang);
}

// Show Profile
private void showProfileMenuItem_Click(object sender, EventArgs e) {
Process.Start("https://twitter.com/" + settings.SelectedItem);
}
#endregion

#region Method
Expand Down
2 changes: 1 addition & 1 deletion Mystter_SendTweet/Information.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
public class Information {
public const string Title = "Mystter - Send Tweet";
public const string TitleSimple = "Mystter";
public const string Version = "1.1.19";
public const string Version = "1.1.20";
public const string Developer = "Mystasly";
public const string Repository = "https://github.com/mystasly48/Mystter_SendTweet";
public const string Twitter = "https://twitter.com/30msl";
Expand Down

0 comments on commit 05075c6

Please sign in to comment.