From 43977e1886749574b2ebc2b83de85edc1a38685b Mon Sep 17 00:00:00 2001 From: Jaex Date: Sun, 29 Aug 2021 17:34:14 +0300 Subject: [PATCH] Update name in about form --- ShareX/Forms/AboutForm.Designer.cs | 38 +++++++++++++------------- ShareX/Forms/AboutForm.cs | 4 +-- ShareX/Forms/AboutForm.resx | 44 +++++++++++++++--------------- 3 files changed, 43 insertions(+), 43 deletions(-) diff --git a/ShareX/Forms/AboutForm.Designer.cs b/ShareX/Forms/AboutForm.Designer.cs index ed2696f2c..ec15b0c51 100644 --- a/ShareX/Forms/AboutForm.Designer.cs +++ b/ShareX/Forms/AboutForm.Designer.cs @@ -33,13 +33,13 @@ private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutForm)); this.lblProductName = new System.Windows.Forms.Label(); - this.lblBerk = new System.Windows.Forms.Label(); + this.lblJaex = new System.Windows.Forms.Label(); this.lblMike = new System.Windows.Forms.Label(); this.rtbCredits = new System.Windows.Forms.RichTextBox(); this.rtbShareXInfo = new System.Windows.Forms.RichTextBox(); this.pbMikeURL = new System.Windows.Forms.PictureBox(); this.pbAU = new System.Windows.Forms.PictureBox(); - this.pbBerkURL = new System.Windows.Forms.PictureBox(); + this.pbJaexURL = new System.Windows.Forms.PictureBox(); this.pbTR = new System.Windows.Forms.PictureBox(); this.lblTeam = new System.Windows.Forms.Label(); this.pbLogo = new System.Windows.Forms.PictureBox(); @@ -51,7 +51,7 @@ private void InitializeComponent() this.lblBuild = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.pbMikeURL)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pbAU)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pbBerkURL)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pbJaexURL)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pbTR)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pbLogo)).BeginInit(); this.SuspendLayout(); @@ -62,10 +62,10 @@ private void InitializeComponent() this.lblProductName.BackColor = System.Drawing.Color.Transparent; this.lblProductName.Name = "lblProductName"; // - // lblBerk + // lblJaex // - resources.ApplyResources(this.lblBerk, "lblBerk"); - this.lblBerk.Name = "lblBerk"; + resources.ApplyResources(this.lblJaex, "lblJaex"); + this.lblJaex.Name = "lblJaex"; // // lblMike // @@ -110,15 +110,15 @@ private void InitializeComponent() this.pbAU.Name = "pbAU"; this.pbAU.TabStop = false; // - // pbBerkURL + // pbJaexURL // - this.pbBerkURL.BackColor = System.Drawing.Color.Transparent; - this.pbBerkURL.Cursor = System.Windows.Forms.Cursors.Hand; - this.pbBerkURL.Image = global::ShareX.Properties.Resources.GitHub; - resources.ApplyResources(this.pbBerkURL, "pbBerkURL"); - this.pbBerkURL.Name = "pbBerkURL"; - this.pbBerkURL.TabStop = false; - this.pbBerkURL.Click += new System.EventHandler(this.pbBerkURL_Click); + this.pbJaexURL.BackColor = System.Drawing.Color.Transparent; + this.pbJaexURL.Cursor = System.Windows.Forms.Cursors.Hand; + this.pbJaexURL.Image = global::ShareX.Properties.Resources.GitHub; + resources.ApplyResources(this.pbJaexURL, "pbJaexURL"); + this.pbJaexURL.Name = "pbJaexURL"; + this.pbJaexURL.TabStop = false; + this.pbJaexURL.Click += new System.EventHandler(this.pbJaexURL_Click); // // pbTR // @@ -193,12 +193,12 @@ private void InitializeComponent() this.Controls.Add(this.lblTeam); this.Controls.Add(this.rtbShareXInfo); this.Controls.Add(this.rtbCredits); - this.Controls.Add(this.lblBerk); + this.Controls.Add(this.lblJaex); this.Controls.Add(this.lblMike); this.Controls.Add(this.uclUpdate); this.Controls.Add(this.pbMikeURL); this.Controls.Add(this.pbAU); - this.Controls.Add(this.pbBerkURL); + this.Controls.Add(this.pbJaexURL); this.Controls.Add(this.pbTR); this.Controls.Add(this.lblProductName); this.Controls.Add(this.cLogo); @@ -207,7 +207,7 @@ private void InitializeComponent() this.Shown += new System.EventHandler(this.AboutForm_Shown); ((System.ComponentModel.ISupportInitialize)(this.pbMikeURL)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pbAU)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pbBerkURL)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pbJaexURL)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pbTR)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pbLogo)).EndInit(); this.ResumeLayout(false); @@ -218,9 +218,9 @@ private void InitializeComponent() #endregion Windows Form Designer generated code private System.Windows.Forms.Label lblProductName; - private System.Windows.Forms.Label lblBerk; + private System.Windows.Forms.Label lblJaex; private System.Windows.Forms.PictureBox pbTR; - private System.Windows.Forms.PictureBox pbBerkURL; + private System.Windows.Forms.PictureBox pbJaexURL; private System.Windows.Forms.PictureBox pbMikeURL; private System.Windows.Forms.PictureBox pbAU; private System.Windows.Forms.Label lblMike; diff --git a/ShareX/Forms/AboutForm.cs b/ShareX/Forms/AboutForm.cs index dbf12a007..f3acddb30 100644 --- a/ShareX/Forms/AboutForm.cs +++ b/ShareX/Forms/AboutForm.cs @@ -69,7 +69,7 @@ public AboutForm() #endif lblTeam.Text = "ShareX Team:"; - lblBerk.Text = "Jaex (Berk)"; + lblJaex.Text = "Jaex"; lblMike.Text = "McoreD (Michael Delpach)"; rtbShareXInfo.Text = $@"{Resources.AboutForm_AboutForm_Website}: {Links.URL_WEBSITE} @@ -138,7 +138,7 @@ private void pbSteam_Click(object sender, EventArgs e) URLHelpers.OpenURL(Links.URL_STEAM); } - private void pbBerkURL_Click(object sender, EventArgs e) + private void pbJaexURL_Click(object sender, EventArgs e) { URLHelpers.OpenURL(Links.URL_JAEX); } diff --git a/ShareX/Forms/AboutForm.resx b/ShareX/Forms/AboutForm.resx index 1cac65202..f796bb3aa 100644 --- a/ShareX/Forms/AboutForm.resx +++ b/ShareX/Forms/AboutForm.resx @@ -153,31 +153,31 @@ 15 - + True - + NoControl - + 64, 163 - + 0, 13 - + 4 - - lblBerk + + lblJaex - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + $this - + 8 @@ -309,31 +309,31 @@ 12 - + NoControl - + 41, 161 - + 16, 16 - + CenterImage - + 10 - - pbBerkURL + + pbJaexURL - + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + $this - + 13 @@ -532,7 +532,7 @@ uclUpdate - ShareX.HelpersLib.UpdateCheckerLabel, ShareX.HelpersLib, Version=13.1.1.0, Culture=neutral, PublicKeyToken=null + ShareX.HelpersLib.UpdateCheckerLabel, ShareX.HelpersLib, Version=13.5.1.0, Culture=neutral, PublicKeyToken=null $this @@ -556,7 +556,7 @@ cLogo - ShareX.HelpersLib.Canvas, ShareX.HelpersLib, Version=13.1.1.0, Culture=neutral, PublicKeyToken=null + ShareX.HelpersLib.Canvas, ShareX.HelpersLib, Version=13.5.1.0, Culture=neutral, PublicKeyToken=null $this