Skip to content

Commit

Permalink
Fixed Costume Replacing
Browse files Browse the repository at this point in the history
+ updated about
  • Loading branch information
RadioActivitii committed Oct 18, 2020
1 parent 87e33cd commit c28705a
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 14 deletions.
16 changes: 8 additions & 8 deletions StoDemoLauncher/Parser/CostumeParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
7 changes: 6 additions & 1 deletion StoDemoLauncher/Patchnotes.txt
Original file line number Diff line number Diff line change
@@ -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

Expand Down
8 changes: 4 additions & 4 deletions StoDemoLauncher/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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")]
2 changes: 1 addition & 1 deletion StoDemoLauncher/StoDemoLauncherForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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" +
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified StoDemoLauncher/obj/Debug/StoDemoLauncher.exe
Binary file not shown.
Binary file modified StoDemoLauncher/obj/Debug/StoDemoLauncher.pdb
Binary file not shown.
Binary file not shown.

0 comments on commit c28705a

Please sign in to comment.