diff --git a/ShareX.HelpersLib/Links.cs b/ShareX.HelpersLib/Links.cs index 0c7aab678..97a17f548 100644 --- a/ShareX.HelpersLib/Links.cs +++ b/ShareX.HelpersLib/Links.cs @@ -35,8 +35,6 @@ public static class Links public const string URL_VERSION_HISTORY = URL_PROJECT + "/wiki/Changelog"; public const string URL_DONATE = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PCNWK2G6ZYJ2E"; public const string URL_BERK = "https://github.com/Jaex"; - public const string URL_BERK_STEAM = "http://steamcommunity.com/id/ww"; public const string URL_MIKE = "https://github.com/McoreD"; - public const string URL_MIKE_GOOGLE_PLUS = "https://plus.google.com/u/0/b/110225361399361277394/+MichaelDelpach"; } } \ No newline at end of file diff --git a/ShareX/Forms/AboutForm.Designer.cs b/ShareX/Forms/AboutForm.Designer.cs index b0d42c41b..fc2deec20 100644 --- a/ShareX/Forms/AboutForm.Designer.cs +++ b/ShareX/Forms/AboutForm.Designer.cs @@ -40,14 +40,10 @@ private void InitializeComponent() this.lblOwners = new System.Windows.Forms.Label(); this.cLogo = new ShareX.HelpersLib.Canvas(); this.uclUpdate = new ShareX.HelpersLib.UpdateCheckerLabel(); - this.pbMikeGooglePlus = new System.Windows.Forms.PictureBox(); - this.pbBerkSteamURL = new System.Windows.Forms.PictureBox(); this.pbMikeURL = new System.Windows.Forms.PictureBox(); this.pbAU = new System.Windows.Forms.PictureBox(); this.pbBerkURL = new System.Windows.Forms.PictureBox(); this.pbTR = new System.Windows.Forms.PictureBox(); - ((System.ComponentModel.ISupportInitialize)(this.pbMikeGooglePlus)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pbBerkSteamURL)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pbMikeURL)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pbAU)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pbBerkURL)).BeginInit(); @@ -113,26 +109,6 @@ private void InitializeComponent() resources.ApplyResources(this.uclUpdate, "uclUpdate"); this.uclUpdate.Name = "uclUpdate"; // - // pbMikeGooglePlus - // - this.pbMikeGooglePlus.BackColor = System.Drawing.Color.Transparent; - this.pbMikeGooglePlus.Cursor = System.Windows.Forms.Cursors.Hand; - this.pbMikeGooglePlus.Image = global::ShareX.Properties.Resources.google_plus; - resources.ApplyResources(this.pbMikeGooglePlus, "pbMikeGooglePlus"); - this.pbMikeGooglePlus.Name = "pbMikeGooglePlus"; - this.pbMikeGooglePlus.TabStop = false; - this.pbMikeGooglePlus.Click += new System.EventHandler(this.pbMikeGooglePlus_Click); - // - // pbBerkSteamURL - // - this.pbBerkSteamURL.BackColor = System.Drawing.Color.Transparent; - this.pbBerkSteamURL.Cursor = System.Windows.Forms.Cursors.Hand; - this.pbBerkSteamURL.Image = global::ShareX.Properties.Resources.steam; - resources.ApplyResources(this.pbBerkSteamURL, "pbBerkSteamURL"); - this.pbBerkSteamURL.Name = "pbBerkSteamURL"; - this.pbBerkSteamURL.TabStop = false; - this.pbBerkSteamURL.Click += new System.EventHandler(this.pbBerkSteamURL_Click); - // // pbMikeURL // this.pbMikeURL.BackColor = System.Drawing.Color.Transparent; @@ -174,11 +150,9 @@ private void InitializeComponent() resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.WhiteSmoke; - this.Controls.Add(this.pbMikeGooglePlus); this.Controls.Add(this.lblOwners); this.Controls.Add(this.rtbShareXInfo); this.Controls.Add(this.rtbCredits); - this.Controls.Add(this.pbBerkSteamURL); this.Controls.Add(this.lblBerk); this.Controls.Add(this.lblMike); this.Controls.Add(this.uclUpdate); @@ -192,8 +166,6 @@ private void InitializeComponent() this.MaximizeBox = false; this.Name = "AboutForm"; this.Shown += new System.EventHandler(this.AboutForm_Shown); - ((System.ComponentModel.ISupportInitialize)(this.pbMikeGooglePlus)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pbBerkSteamURL)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pbMikeURL)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pbAU)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pbBerkURL)).EndInit(); @@ -213,11 +185,9 @@ private void InitializeComponent() private System.Windows.Forms.PictureBox pbAU; private System.Windows.Forms.Label lblMike; private HelpersLib.Canvas cLogo; - private System.Windows.Forms.PictureBox pbBerkSteamURL; private System.Windows.Forms.RichTextBox rtbCredits; private System.Windows.Forms.RichTextBox rtbShareXInfo; private System.Windows.Forms.Label lblOwners; private HelpersLib.UpdateCheckerLabel uclUpdate; - private System.Windows.Forms.PictureBox pbMikeGooglePlus; } } \ No newline at end of file diff --git a/ShareX/Forms/AboutForm.cs b/ShareX/Forms/AboutForm.cs index f3ba3e6b0..19e346999 100644 --- a/ShareX/Forms/AboutForm.cs +++ b/ShareX/Forms/AboutForm.cs @@ -75,6 +75,7 @@ public AboutForm() Korean: https://github.com/123jimin Spanish: https://github.com/ovnisoftware Dutch: https://github.com/wforums +Portuguese-Brazil: https://github.com/athosbr99 / https://github.com/RockyTV {2}: @@ -113,21 +114,11 @@ private void pbBerkURL_Click(object sender, EventArgs e) URLHelpers.OpenURL(Links.URL_BERK); } - private void pbBerkSteamURL_Click(object sender, EventArgs e) - { - URLHelpers.OpenURL(Links.URL_BERK_STEAM); - } - private void pbMikeURL_Click(object sender, EventArgs e) { URLHelpers.OpenURL(Links.URL_MIKE); } - private void pbMikeGooglePlus_Click(object sender, EventArgs e) - { - URLHelpers.OpenURL(Links.URL_MIKE_GOOGLE_PLUS); - } - private void rtb_LinkClicked(object sender, LinkClickedEventArgs e) { URLHelpers.OpenURL(e.LinkText); diff --git a/ShareX/Forms/AboutForm.resx b/ShareX/Forms/AboutForm.resx index e5180c88b..bb64c9a24 100644 --- a/ShareX/Forms/AboutForm.resx +++ b/ShareX/Forms/AboutForm.resx @@ -147,13 +147,13 @@ $this - 12 + 10 True - 89, 144 + 64, 144 60, 13 @@ -174,13 +174,13 @@ $this - 5 + 3 True - 89, 168 + 64, 168 131, 13 @@ -201,7 +201,7 @@ $this - 6 + 4 15, 200 @@ -228,7 +228,7 @@ $this - 3 + 2 15, 66 @@ -252,7 +252,7 @@ $this - 2 + 1 True @@ -279,7 +279,7 @@ $this - 1 + 0 @@ -304,7 +304,7 @@ $this - 13 + 11 13, 36 @@ -325,55 +325,7 @@ $this - 7 - - - 64, 166 - - - 16, 16 - - - StretchImage - - - 22 - - - pbMikeGooglePlus - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - 65, 142 - - - 16, 16 - - - CenterImage - - - 21 - - - pbBerkSteamURL - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 + 5 41, 166 @@ -397,7 +349,7 @@ $this - 8 + 6 17, 166 @@ -421,7 +373,7 @@ $this - 9 + 7 41, 142 @@ -445,7 +397,7 @@ $this - 10 + 8 17, 142 @@ -469,7 +421,7 @@ $this - 11 + 9 True