diff --git a/BrawlBox/Changelog.txt b/BrawlBox/Changelog.txt index 9fdd3c8f..bab640ac 100644 --- a/BrawlBox/Changelog.txt +++ b/BrawlBox/Changelog.txt @@ -16,12 +16,28 @@ they be held accountable for the manner in which it is used. |************ StageBox Change Log ************| ============================================= + - v0.4 - (?) + . Shows boundaries, spawns/respawns, and item spawn zones by default when viewing ARC files + . Restore, Replace, and Delete now become properly disabled for SCLA and STPM files + . Merge option for collisions moved to a more standard location to match "Edit" functionality on MDL0 or CHR0 + . Bones can now be viewed during animations if the Bone option is checked + . Renamed some collision materials to make usage clearer + - "Ice" -> "Slippery" + - "Ice2" -> "SubspaceIce" + - "Crash2" -> "Hazard2SSEOnly" + - "Crash3" -> "Hazard3SSEOnly" + . Coll files are now deleted with "Control+Delete" again. Collision Objects now use "Shift+Delete" + . Added "Advanced Collision Editor" + - Support for four new theoretical collision flags + - Support for flagging collision planes as multiple collision types + - v0.3 Hotfix 1 - (5/3/2018) . Added "Auto-Name Objects" functionality to MDL0 Objects . Added Stage Expansion stages to the stage list, allowing them to be chosen for Event Matches/Classic Mode . Fixed previewing when opening MDL0 files directly . Fixed exporting of SRT0 entries not saving properly . Fixed SCLAs marking themselves as needing saving whenever they were initialized + . StageBox is now built as a 32-bit program (matching BrawlBox) - v0.3 - (4/26/2018) . Fixed glitch in which attempting to encode a texture as CI4 or CI8 from a 64 bit operating system would crash the program diff --git a/BrawlBox/Program.cs b/BrawlBox/Program.cs index 4e9aff8e..e2fa4353 100644 --- a/BrawlBox/Program.cs +++ b/BrawlBox/Program.cs @@ -13,7 +13,7 @@ namespace BrawlBox static class Program { //Make sure this matches the tag name of the release on github exactly - public static readonly string TagName = "StageBox_v0.3_Hotfix1"; + public static readonly string TagName = "StageBox_v0.4"; public static readonly string AssemblyTitle; public static readonly string AssemblyDescription; diff --git a/BrawlBox/Properties/AssemblyInfo.cs b/BrawlBox/Properties/AssemblyInfo.cs index 22c7a32d..e94710c0 100644 --- a/BrawlBox/Properties/AssemblyInfo.cs +++ b/BrawlBox/Properties/AssemblyInfo.cs @@ -4,7 +4,7 @@ // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("Stagebox v0.3")] +[assembly: AssemblyTitle("Stagebox v0.4")] [assembly: AssemblyDescription("This program is provided as-is without any warranty, implied or otherwise." + " By using this program, the end user agrees to take full responsibility regarding its proper and lawful use." + " The authors/hosts/distributors cannot be held responsible for any damage resulting in the use of this program," + @@ -38,4 +38,4 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.77.*")] -[assembly: AssemblyFileVersion("0.77.0.3.1")] +[assembly: AssemblyFileVersion("0.77.0.4")]