diff --git a/PCK-Studio/Forms/CreditsForm.Designer.cs b/PCK-Studio/Forms/CreditsForm.Designer.cs index b22d7492..97229cae 100644 --- a/PCK-Studio/Forms/CreditsForm.Designer.cs +++ b/PCK-Studio/Forms/CreditsForm.Designer.cs @@ -139,6 +139,7 @@ this.buildLabel.Text = "Build Information"; this.buildLabel.TextAlign = System.Drawing.ContentAlignment.TopRight; this.buildLabel.Theme = MetroFramework.MetroThemeStyle.Dark; + this.buildLabel.WrapToLine = true; // // CreditsForm // diff --git a/PCK-Studio/Forms/CreditsForm.cs b/PCK-Studio/Forms/CreditsForm.cs index 3b40faad..e6b18df4 100644 --- a/PCK-Studio/Forms/CreditsForm.cs +++ b/PCK-Studio/Forms/CreditsForm.cs @@ -11,9 +11,9 @@ namespace PckStudio.Forms { InitializeComponent(); #if BETA - buildLabel.Text = $"[Beta] {ApplicationBuildInfo.BetaBuildVersion}@{CommitInfo.BranchName}"; + buildLabel.Text = $"Build Config: Beta\nBuild Version: {ApplicationBuildInfo.BetaBuildVersion}\n Branch: {CommitInfo.BranchName}"; #elif DEBUG - buildLabel.Text = $"[Debug] {CommitInfo.BranchName}@{CommitInfo.CommitHash}"; + buildLabel.Text = $"Build Config: Debug\nBranch: {CommitInfo.BranchName}\nCommit Id: {CommitInfo.CommitHash}"; #else buildLabel.Text = string.Empty; #endif