Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Preparation for release
Browse files Browse the repository at this point in the history
  • Loading branch information
soopercool101 committed Aug 11, 2018
1 parent 5c71090 commit 59ea87f
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 4 deletions.
36 changes: 35 additions & 1 deletion BrawlBox/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

StageBox - v0.8 Hotfix 1
StageBox - v0.9
Copyright © 2018 soopercool101, MarioDox
BrawlBox © 2009 - 2018 Bryan Moulton, BlackJax96, libertyernie & Sammi Husky

Expand All @@ -16,6 +16,40 @@ they be held accountable for the manner in which it is used.
|************ StageBox Change Log ************|
=============================================

- v0.9 - (8/10/2018)
. Fixed BrawlBox bug in which saving an edited module would change offsets due to buffers not being maintained
. Added support to read custom stage and fighter lists from a .txt file to populate lists in relevant places
- Will be generated whenever the program is opened if they do not exist
. Added support to edit BrawlEx configuration files
- COSC (Cosmetic Config)
- CSSC (CSS Slot Config)
- FCFG (Fighter Config)
. Fixed issue from BrawlEx Config Utility where certain flags were not properly respected
. Improved parsing of Fighter Name compared to BrawlEx Config Utility to ensure that files conform to the style guide of the original files
- RSTC (Roster Config)
- SLTC (Slot Config)
. More Subspace Emissary BLOC parsing
- GDOR (Subspace Door)
. Updated variables with current knowledge
- GDBF (Factory Door)
. Parsed and made editable and addable to BLOCs (Same basic format as GDOR)
- GWAT (Swimmable Water)
. Parsed and made editable and addable to BLOCs
- GSND (Sound Effects)
. Fixed bugs with adding entries to a new GSND
- GEG1 (Enemy Spawns)
. Parsed more variables and made them addable to BLOCs
- GCAM (Animated Camera)
. Parsed and made editable and addable to BLOCs
- GITM (Fighter Trophy)
. Parsed and made it editable and addable to BLOCs
. Interpolition reverted to BrawlBox v0.71, where it correctly maintains some animation quirks present in game that don't appear in-editor for newer versions
. Updated icons for users with dark themes
. Fixed crash when viewing rel entries when hex viewer is active
. Fixed glitch in which closing a file in-editor would not remove the file path from the title bar
. Fixed glitch in which returning to the "Find" menu from the Section Editor would not correctly allow you to type in hex values if hex was the last selected option
. Fixed crash when pasting hex into find window on the Section Editor

- v0.8 Hotfix 1 - (7/17/2018)
. Added compatibility mode setting, as stages with corrupted models would have those models broken immediately on open, or wouldn't open at all, due to the model counter from v0.8
. Switched Zelda/Sheik and Samus/ZSS in the fighter list
Expand Down
2 changes: 1 addition & 1 deletion BrawlBox/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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.8_Hotfix1";
public static readonly string TagName = "StageBox_v0.9";

public static readonly string AssemblyTitle;
public static readonly string AssemblyDescription;
Expand Down
4 changes: 2 additions & 2 deletions BrawlBox/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.8")]
[assembly: AssemblyTitle("StageBox v0.9")]
[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," +
Expand Down Expand Up @@ -38,4 +38,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.77.*")]
[assembly: AssemblyFileVersion("0.77.0.8.1")]
[assembly: AssemblyFileVersion("0.77.0.9")]

0 comments on commit 59ea87f

Please sign in to comment.