Skip to content

Commit 7d72c87

Browse files
authored
Disable automatic Xenia launch on manual install
1 parent 2f9f820 commit 7d72c87

File tree

3 files changed

+16
-15
lines changed

3 files changed

+16
-15
lines changed

Sonic '06 Mod Manager/About.Designer.cs

Lines changed: 11 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Sonic '06 Mod Manager/ModManager.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ namespace Sonic_06_Mod_Manager
4040
{
4141
public partial class ModManager : Form
4242
{
43-
public static string versionNumber = "Version 1.0";
43+
public static string versionNumber = "Version 1.02";
4444
public static string installState = "";
4545
public static bool isCreatorDisposed;
4646
public static string username;
@@ -451,7 +451,7 @@ private void PlayButton_Click(object sender, EventArgs e)
451451
}
452452
else { InstallMods(); }
453453

454-
if (!check_FTP.Checked) LaunchXenia();
454+
if (!check_FTP.Checked && !check_manUninstall.Checked) LaunchXenia();
455455
}
456456
else { MessageBox.Show("Please specify the required paths.", "Path Error", MessageBoxButtons.OK, MessageBoxIcon.Error); }
457457
}
@@ -568,7 +568,7 @@ private void PlayButton_Click(object sender, EventArgs e)
568568
else
569569
{
570570
SaveChecks();
571-
LaunchXenia();
571+
if (!check_FTP.Checked && !check_manUninstall.Checked) LaunchXenia();
572572
}
573573
}
574574
}
@@ -1881,7 +1881,7 @@ private void CopyMods()
18811881
}
18821882
}
18831883
convertDialog.Close();
1884-
if (check_FTP.Checked && skippedMods.ToString() != string.Empty) MessageBox.Show("Mod installation complete! You can now launch the game.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
1884+
if (check_FTP.Checked && skippedMods.ToString() != string.Empty || check_manUninstall.Checked && skippedMods.ToString() != string.Empty) MessageBox.Show("Mod installation complete! You can now launch the game.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
18851885
if (skippedMods.ToString() != string.Empty)
18861886
{
18871887
var getString = new StringBuilder();

Sonic '06 Mod Manager/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.2.0")]

0 commit comments

Comments
 (0)