Skip to content

Commit

Permalink
Added missing Logo values
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeG621 committed Feb 26, 2022
1 parent 54d0d6a commit 690e530
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
6 changes: 5 additions & 1 deletion Mission_XWA.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
XWA Mission File
Author: Michael Gaisser ([email protected])
Site: https://github.com/MikeG621
Updated: 2022.01.26
Updated: 2022.02.25
=====

This is going to be a very lengthy definition of the XWA mission file. If you
Expand Down Expand Up @@ -746,6 +746,10 @@ BriefingLogo
06 Independence
07 Family
08 Phantom Squadron [will only see "Squadron", no logo]
09 Vector Squadron
0A Rogue Squadron
0B Family Transport
0C Unknown

Designation
00 Command Ship
Expand Down
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("5.7.1.*")]
[assembly: AssemblyVersion("5.7.2.*")]
7 changes: 5 additions & 2 deletions Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@ Idmr.Platform.dll

Author: Michael Gaisser ([email protected])
Contributors: Random Starfighter (JB)
Version: 5.7.1
Date: 2022.02.08
Version: 5.7.2
Date: 2022.02.25

Library for editing LucasArts *.XWI and *.TIE mission files for Xwing95, TIE95, XvT and XWA

=========
Version History

v5.7.2, 25 Feb 2022
- (XWA) Added missing Squadron log options in Mission.LogoEnum

v5.7.1, 08 Feb 2022
- (XWA) Message Trigger And/Or read now checks for 1 instead of any odd value (JB)

Expand Down
19 changes: 15 additions & 4 deletions Xwa/Mission.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
* Licensed under the MPL v2.0 or later
*
* Full notice in ../help/Idmr.Platform.chm
* Version: 5.7.1
* Version: 5.7.2
*/

/* CHANGELOG
* v5.7.2, 220225
* [FIX] Missing squadron values from LogoEnum
* v5.7.1, 220208
* [FIX] Message Trigger And/Or read now checks for 1 instead of any odd value (JB)
* v5.7, 220127
Expand Down Expand Up @@ -81,16 +83,25 @@ public partial class Mission : MissionFile

/// <summary>Briefing <see cref="Logo"/> values</summary>
public enum LogoEnum : byte {
/// <summary>No logo shown</summary>
None,
/// <summary>Defiance logo</summary>
Defiance = 4,
/// <summary>Liberty logo</summary>
Liberty,
/// <summary>Independance logo</summary>
Independance,
/// <summary>Family logo</summary>
Family,
/// <summary>No logo shown</summary>
None
AzzameenBase,
/// <summary>Squadron 1 logo</summary>
PhantomSquadron,
/// <summary>Squadron 2 logo</summary>
VectorSquadron,
/// <summary>Squadron 3 logo</summary>
RogueSquadron,
/// <summary>Squadron 4 logo</summary>
FamilyTransport,
Unknown_C
}
/// <summary>Mission starting <see cref="MissionType"/> (aka Hangar)</summary>
public enum HangarEnum : byte {
Expand Down

0 comments on commit 690e530

Please sign in to comment.