diff --git a/StoDemoLauncher/Parser/CostumeParser.cs b/StoDemoLauncher/Parser/CostumeParser.cs index e2c6476..341763a 100644 --- a/StoDemoLauncher/Parser/CostumeParser.cs +++ b/StoDemoLauncher/Parser/CostumeParser.cs @@ -37,24 +37,24 @@ public override void NewLine(string line, int lineNumber) lastCostumev5BraceLevel = braceLevel; inCostumev5Section = true; } - if (inCostumev5Section && Costumetype.Equals("") && line.Trim().StartsWith("HreferencedCostume")) + if (inCostumev5Section && Costumetype.Equals("") && line.Trim().StartsWith("Hreferencedcostume")) { - this.Costumetype = "HreferencedCostume"; + this.Costumetype = "Hreferencedcostume"; this.Costumename = line.Trim().Substring(19); } - if (inCostumev5Section && Costumetype.Equals("") && line.Trim().StartsWith("PsubstituteCostume")) + if (inCostumev5Section && Costumetype.Equals("") && line.Trim().StartsWith("Psubstitutecostume")) { - this.Costumetype = "PsubstituteCostume"; + this.Costumetype = "Psubstitutecostume"; this.Costumename = line.Trim().Substring(19); } - if (inCostumev5Section && Costumetype.Equals("") && line.Trim().StartsWith("PstoredCostume")) + if (inCostumev5Section && Costumetype.Equals("") && line.Trim().StartsWith("Pstoredcostume")) { - this.Costumetype = "PstoredCostume"; + this.Costumetype = "Pstoredcostume"; this.Costumename = line.Trim().Substring(15); } - if (inCostumev5Section && Costumetype.Equals("") && line.Trim().StartsWith("PsubstituteCostume")) + if (inCostumev5Section && Costumetype.Equals("") && line.Trim().StartsWith("Psubstitutecostume")) { - this.Costumetype = "PsubstituteCostume"; + this.Costumetype = "Psubstitutecostume"; this.Costumename = line.Trim().Substring(15); } if (inCostumev5Section && line.Trim().StartsWith("}") && braceLevel - 1 == lastCostumev5BraceLevel) diff --git a/StoDemoLauncher/Patchnotes.txt b/StoDemoLauncher/Patchnotes.txt index 7fb371a..b39aa0c 100644 --- a/StoDemoLauncher/Patchnotes.txt +++ b/StoDemoLauncher/Patchnotes.txt @@ -1,4 +1,9 @@ -2.10.0 +2.10.2 + +- Fix for costume replacement not working (sorry!) +- Updated About section + +2.10.0 - Fix for relocated GameClient executables diff --git a/StoDemoLauncher/Properties/AssemblyInfo.cs b/StoDemoLauncher/Properties/AssemblyInfo.cs index c2db433..725a54b 100644 --- a/StoDemoLauncher/Properties/AssemblyInfo.cs +++ b/StoDemoLauncher/Properties/AssemblyInfo.cs @@ -9,10 +9,10 @@ [assembly: AssemblyTitle("Star Trek Online Demo Launcher")] [assembly: AssemblyDescription("Runs demo files recorded with Star Trek Online.")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("RachelGarrett")] +[assembly: AssemblyCompany("Thon's Eternal Nightmares")] [assembly: AssemblyProduct("Star Trek Online Demo Launcher")] [assembly: AssemblyCopyright("Public Domain")] -[assembly: AssemblyTrademark("This application os not affiliated, developed or endorsed by Cryptic Studios or Atari. All trademarks are the property of their respective owners.")] +[assembly: AssemblyTrademark("This application is not affiliated, developed or endorsed by Cryptic Studios or Perfect World. All trademarks are the property of their respective owners.")] [assembly: AssemblyCulture("")] // Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar @@ -33,6 +33,6 @@ // Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern // übernehmen, indem Sie "*" eingeben: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.10.0.0")] -[assembly: AssemblyFileVersion("2.10.0.0")] +[assembly: AssemblyVersion("2.10.2.0")] +[assembly: AssemblyFileVersion("2.10.2.0")] [assembly: NeutralResourcesLanguageAttribute("en-US")] diff --git a/StoDemoLauncher/StoDemoLauncherForm.cs b/StoDemoLauncher/StoDemoLauncherForm.cs index 7082b5e..9c14061 100644 --- a/StoDemoLauncher/StoDemoLauncherForm.cs +++ b/StoDemoLauncher/StoDemoLauncherForm.cs @@ -506,7 +506,7 @@ private void checkForUpdates_Event(object sender, EventArgs e) private void about_Event(object sender, EventArgs e) { MessageBox.Show("Version " + Application.ProductVersion + "\n" + - "by RachelGarrett\n\n" + + "by RachelGarrett, maintained by Thon\n\n" + "Special thanks to:\n" + "- h2orat\n" + "- Chris Fisher\n" + diff --git a/StoDemoLauncher/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/StoDemoLauncher/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..c79dba0 Binary files /dev/null and b/StoDemoLauncher/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/StoDemoLauncher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/StoDemoLauncher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..edc3e6e Binary files /dev/null and b/StoDemoLauncher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/StoDemoLauncher/obj/Debug/StoDemoLauncher.csprojAssemblyReference.cache b/StoDemoLauncher/obj/Debug/StoDemoLauncher.csprojAssemblyReference.cache index 770c8c5..2fa10c2 100644 Binary files a/StoDemoLauncher/obj/Debug/StoDemoLauncher.csprojAssemblyReference.cache and b/StoDemoLauncher/obj/Debug/StoDemoLauncher.csprojAssemblyReference.cache differ diff --git a/StoDemoLauncher/obj/Debug/StoDemoLauncher.exe b/StoDemoLauncher/obj/Debug/StoDemoLauncher.exe index 0416602..0f18e94 100644 Binary files a/StoDemoLauncher/obj/Debug/StoDemoLauncher.exe and b/StoDemoLauncher/obj/Debug/StoDemoLauncher.exe differ diff --git a/StoDemoLauncher/obj/Debug/StoDemoLauncher.pdb b/StoDemoLauncher/obj/Debug/StoDemoLauncher.pdb index 6811567..7231774 100644 Binary files a/StoDemoLauncher/obj/Debug/StoDemoLauncher.pdb and b/StoDemoLauncher/obj/Debug/StoDemoLauncher.pdb differ diff --git a/StoDemoLauncher/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/StoDemoLauncher/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..ec2eb7f Binary files /dev/null and b/StoDemoLauncher/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll differ