Skip to content

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
soopercool101 committed Feb 6, 2024
1 parent 3973b58 commit 81e6596
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 17 deletions.
10 changes: 5 additions & 5 deletions BrawlCrate/BrawlCrate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<AssemblyTitle>BrawlCrate v0.40a</AssemblyTitle>
<AssemblyTitle>BrawlCrate v0.41</AssemblyTitle>
<Product>BrawlCrate</Product>
<Description>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, nor can they be held accountable for the manner in which it is used.</Description>
<Copyright>
Copyright © 2018 - 2023 soopercool101, Simon381, Onium
Copyright © 2018 - 2024 soopercool101, Simon381, Onium
BrawlBox Copyright © 2009 - 2019 Bryan Moulton, BlackJax96, libertyernie, Sammi Husky
Super Smash Bros. Brawl © 2008 Nintendo and HAL Laboratory
</Copyright>
<AssemblyVersion>0.40.1.0</AssemblyVersion>
<FileVersion>0.40.1.0</FileVersion>
<AssemblyVersion>0.41.0.0</AssemblyVersion>
<FileVersion>0.41.0.0</FileVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Platforms>AnyCPU;x64;x86</Platforms>
<Configurations>Debug;Release;Mono;Canary;Doxygen;Documentation</Configurations>
Expand Down Expand Up @@ -185,7 +185,7 @@
</PropertyGroup>
<PropertyGroup>
<StartupObject>BrawlCrate.Program</StartupObject>
<Version>40.1.0</Version>
<Version>41.0.0</Version>
<Authors>soopercool101, NuclearNecrosis, Simon381, Onium, Bryan Moulton, BlackJax96, libertyernie, Sammi Husky</Authors>
<Company>BrawlCrate</Company>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
Expand Down
27 changes: 25 additions & 2 deletions BrawlCrate/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

BrawlCrate - v0.40a
Copyright © 2018 - 2023 soopercool101, Simon381, Onium
BrawlCrate - v0.41
Copyright © 2018 - 2024 soopercool101, Simon381, Onium
BrawlBox © 2009 - 2019 Bryan Moulton, BlackJax96, libertyernie & Sammi Husky

https://github.com/soopercool101/BrawlCrate
Expand All @@ -16,6 +16,29 @@ they be held accountable for the manner in which it is used.
|************ BrawlCrate Change Log ************|
===============================================

- BrawlCrate v0.41 - (2/6/2024)
. Vastly improve subspace BLOC parsing:
- BLOC now supports proper import and Drag/Drop
- All BLOC entry types can now be edited with full save support
- Added known values to many BLOC entry types
. TBGC and TBGD files are now properly parsed
. Update parsing for Item Parameters to reflect newly discovered values
. Add PMTurbo to Event Match fighter status
. UserEntries now properly store and load as UTF8 encoded
. Add StageEx and ItemEx support to EventMatchNode, as well as Project+'s new Item Levels
. Add support to add a single-linked collision via Shift+Alt+Click in the Advanced Collision Editor
. Improve float conversion for Item Frequency
. Fix bug in which a corrupted TEX0 would prevent loading a BRRES (or entire file) properly
. Fix bug in which minimum and maximum were swapped for Item Frequency
. Fix bug in which editing an STDT entry as bytes would not enable saving without further edits
. Fix bug in which resizing an STDT would result in a different size than intended
. Fix ItemFreqGroup accessing invalid memory
. Fix crash caused by invalid UserEntries pointers
. Fix crash when importing a TEX0 that was originally color smashed
. Fix crash when viewing a redirect to a BRRES with no models
. Fix bug in which raw binary import for Brawl ARC files would result in crashes on save
. Fix bug in which a corrupted installation would prevent updating without warning

- BrawlCrate v0.40a - (7/23/2023)
. Add support for version 2 of the ITOV (Item Override) format
. FCFG: Change "Can Angle Forward Tilt" bool to "Forward Tilt Count" byte to reflect latest understanding
Expand Down
10 changes: 5 additions & 5 deletions BrawlCrate/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ internal static class Program
/// If this isn't equal to the latest release, it assumes it needs to update.
/// MAKE SURE THIS IS ALWAYS PROPERLY UPDATED FOR ANY STABLE RELEASE!!!
/// </summary>
public static readonly string TagName = "v0.40a";
public static readonly string TagName = "v0.41";

/// <summary>
/// Shows upon first launch of a given stable release assuming that automated updating is on.
Expand All @@ -41,10 +41,10 @@ internal static class Program
/// assume that the user already saw this with the update prompt.
/// </summary>
public static readonly string UpdateMessage =
@"Updated to BrawlCrate v0.40a! Here's what's new in this release:
- Add support for Version 2 of ITOV files
- Fix various naming issues to more properly reflect what values do
- Fix bug in which RE3D nodes would not allow the same name as another in the same group
@"Updated to BrawlCrate v0.41! Here's what's new in this release:
- Add support for Project+ v2.5, including ItemEx, StageEx, and Subspace improvements
- Lots of new parsing for Subspace BLOCs and Item Parameters
- Many bug and crash fixes
Full changelog and documentation can be viewed from the help menu.";

Expand Down
10 changes: 5 additions & 5 deletions BrawlLib/BrawlLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<TargetFramework>net472</TargetFramework>
<AssemblyTitle>BrawlCrateLib v0.40a</AssemblyTitle>
<AssemblyTitle>BrawlCrateLib v0.41</AssemblyTitle>
<Product>BrawlCrateLib</Product>
<Copyright>Copyright © 2018 - 2023 soopercool101, NuclearNecrosis, Simon381, Onium
<Copyright>Copyright © 2018 - 2024 soopercool101, NuclearNecrosis, Simon381, Onium
BrawlLib Copyright © 2009 - 2019 Bryan Moulton, BlackJax96, libertyernie, Sammi Husky</Copyright>
<AssemblyVersion>0.40.0.0</AssemblyVersion>
<FileVersion>0.40.0.0</FileVersion>
<AssemblyVersion>0.41.0.0</AssemblyVersion>
<FileVersion>0.41.0.0</FileVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Platforms>AnyCPU;x64;x86</Platforms>
<Configurations>Debug;Release;Mono;Canary</Configurations>
Expand Down Expand Up @@ -158,7 +158,7 @@ BrawlLib Copyright © 2009 - 2019 Bryan Moulton, BlackJax96, libertyernie, Sammi
<PackageId>BrawlCrateLib</PackageId>
<Company>BrawlCrateLib</Company>
<Authors>soopercool101, Simon381, Onium, Bryan Moulton, BlackJax96, libertyernie, Sammi Husky</Authors>
<Version>40.0.0</Version>
<Version>41.0.0</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="CustomLists\FighterList.txt" />
Expand Down

0 comments on commit 81e6596

Please sign in to comment.