diff --git a/SteamServerCreationTool/Core/Core.cs b/SteamServerCreationTool/Core/Core.cs index e04ca70..09763be 100644 --- a/SteamServerCreationTool/Core/Core.cs +++ b/SteamServerCreationTool/Core/Core.cs @@ -21,7 +21,7 @@ public static class Core public static string softwareName = "Steam Server Creation Tool"; public static string softwareNameShort = "SSCT"; - public static string authorRealName = "Victor Rimsby"; + public static string authorRealName = "Victor"; public static string authorName = "N0tiC"; public static string authorContact = "contact@bytevaultstudio.se"; @@ -32,10 +32,10 @@ public static class Core #region Version - public static BuildTypes buildType = BuildTypes.Alpha; + public static BuildTypes buildType = BuildTypes.Beta; public static int majorVersion = 0; public static int minorVersion = 1; - public static int buildVersion = 8; + public static int buildVersion = 9; public enum BuildTypes { diff --git a/SteamServerCreationTool/Forms/AboutForm.cs b/SteamServerCreationTool/Forms/AboutForm.cs index 6d85fce..683793b 100644 --- a/SteamServerCreationTool/Forms/AboutForm.cs +++ b/SteamServerCreationTool/Forms/AboutForm.cs @@ -7,9 +7,12 @@ namespace SteamServerCreationTool.Forms { partial class AboutForm : Form { - public AboutForm() + public AboutForm(Control parent) { InitializeComponent(); + + StartPosition = FormStartPosition.CenterParent; + this.Text = String.Format("About {0}", AssemblyTitle); TextLabel.Text = "(" + Core.softwareNameShort + ") " + Core.softwareName + " " + Core.GetVersion() + "\n\rCreated by " + Core.authorRealName + " AKA " + Core.authorName + "\n\rContact: " + Core.authorContact; diff --git a/SteamServerCreationTool/Forms/MainForm.cs b/SteamServerCreationTool/Forms/MainForm.cs index 620bbfc..ba41ce2 100644 --- a/SteamServerCreationTool/Forms/MainForm.cs +++ b/SteamServerCreationTool/Forms/MainForm.cs @@ -476,7 +476,7 @@ private void MainForm_Load(object sender, EventArgs e) { settings = new Settings(); // New settings file settings.userData = new UserData(); - MessageBox.Show("WARNING: This is an Alpha build. Not all features have been polished or tested 100%. Report any problems on the Github project issues page.", "Alpha Release", MessageBoxButtons.OK, MessageBoxIcon.Warning); + MessageBox.Show("WARNING: This is a Beta build. Not all features have been polished or tested 100%. Report any problems on the Github project issues page.", "Beta Release", MessageBoxButtons.OK, MessageBoxIcon.Warning); } //Do we have an ethernet connection? @@ -519,6 +519,7 @@ private void InstallServerButton_Click(object sender, EventArgs e) using (CreateServerForm csf = new CreateServerForm(this, selectedApp)) { + csf.StartPosition = FormStartPosition.CenterParent; DialogResult res = csf.ShowDialog(); } } @@ -581,8 +582,9 @@ private void OpenServerButton_Click(object sender, EventArgs e) /// private void WindowExpander_Click(object sender, EventArgs e) { - using (AboutForm af = new AboutForm()) + using (AboutForm af = new AboutForm(this)) { + af.StartPosition = FormStartPosition.CenterParent; af.ShowDialog(); } } @@ -591,6 +593,7 @@ private void SearchButton_Click(object sender, EventArgs e) { using (ServerListSearchForm form = new ServerListSearchForm(this)) { + form.StartPosition = FormStartPosition.CenterParent; form.ShowDialog(); } } @@ -610,6 +613,7 @@ private void SettingsButton_Click(object sender, EventArgs e) { using (SettingsForm sf = new SettingsForm(this)) { + sf.StartPosition = FormStartPosition.CenterParent; sf.ShowDialog(); } } diff --git a/SteamServerCreationTool/Properties/Resources.resx b/SteamServerCreationTool/Properties/Resources.resx index b193e5a..0bc670e 100644 --- a/SteamServerCreationTool/Properties/Resources.resx +++ b/SteamServerCreationTool/Properties/Resources.resx @@ -118,22 +118,22 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ..\Resources\StartServerScript.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 + + ..\Resources\075-reload-EDIT.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\033-folder-7-EDIT.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\016-folder-24-EDIT.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\075-reload-EDIT.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\079-search-EDIT.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\StartServerScript.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 + ..\Resources\012-cogwheel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\016-folder-24-EDIT.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + \ No newline at end of file