Skip to content

Commit

Permalink
Redesigned the About window
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperbx authored May 29, 2019
1 parent d08ede3 commit 774fbbc
Show file tree
Hide file tree
Showing 3 changed files with 605 additions and 69 deletions.
209 changes: 165 additions & 44 deletions Sonic '06 Toolkit/Forms/About.Designer.cs

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

58 changes: 33 additions & 25 deletions Sonic '06 Toolkit/Forms/About.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ public About()
void About_Load(object sender, EventArgs e)
{
lbl_versionNumber.Text = Tools.Global.versionNumber;

//rtb_License.SelectAll();
//rtb_License.SelectionAlignment = HorizontalAlignment.Center;
//rtb_License.DeselectAll();

//rtb_Credits.SelectAll();
//rtb_Credits.SelectionAlignment = HorizontalAlignment.Center;
//rtb_Credits.DeselectAll();
}

void Btn_GitHub_Click(object sender, EventArgs e)
Expand All @@ -31,30 +39,30 @@ void Lbl_Title_Click(object sender, EventArgs e)
new Logo().ShowDialog();
}

void Btn_Credits_Click(object sender, EventArgs e)
{
MessageBox.Show(
"Sonic '06 Toolkit\n" +
"Developed by Hyper Development Team\n" +
"Hosted by SEGA Carnival\n\n" +
"" +
"Licensed under the GNU General Public License v2.0\n\n" +
"" +
"Contributors:\n" +
"Hyper - Lead Developer\n" +
"Shadow LAG - Sonic '06 SDK\n" +
"xose - ARC Unpacker\n" +
"g0ldenlink - ARC Repacker\n" +
"Natsumi - MST Decoder (1.83) & Design Guidance\n" +
"Skyth - XNO Converter & Sonic Audio Tools\n" +
"DarioSamo - XNO Converter\n" +
"CRI Middleware Co. - ADX Encoder\n" +
"Radfordhound - HedgeLib\n" +
"in - extract-xiso\n" +
"Aiyyo - extract-xiso\n" +
"somski - extract-xiso\n" +
"SONY Computer Entertainment Inc. - AT3 Tool",
"Credits", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
//void Btn_Credits_Click(object sender, EventArgs e)
//{
// MessageBox.Show(
// "Sonic '06 Toolkit\n" +
// "Developed by Hyper Development Team\n" +
// "Hosted by SEGA Carnival\n\n" +
// "" +
// "Licensed under the GNU General Public License v2.0\n\n" +
// "" +
// "Contributors:\n" +
// "Hyper - Lead Developer\n" +
// "Shadow LAG - Sonic '06 SDK\n" +
// "xose - ARC Unpacker\n" +
// "g0ldenlink - ARC Repacker\n" +
// "Natsumi - MST Decoder (1.83) & Design Guidance\n" +
// "Skyth - XNO Converter & Sonic Audio Tools\n" +
// "DarioSamo - XNO Converter\n" +
// "CRI Middleware Co. - ADX Encoder\n" +
// "Radfordhound - HedgeLib\n" +
// "in - extract-xiso\n" +
// "Aiyyo - extract-xiso\n" +
// "somski - extract-xiso\n" +
// "SONY Computer Entertainment Inc. - AT3 Tool",
// "Credits", MessageBoxButtons.OK, MessageBoxIcon.Information);
//}
}
}
Loading

0 comments on commit 774fbbc

Please sign in to comment.