Skip to content

Commit

Permalink
Prep for hotfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
soopercool101 committed May 20, 2024
1 parent a8f8170 commit 86520de
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
8 changes: 4 additions & 4 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.42</AssemblyTitle>
<AssemblyTitle>BrawlCrate v0.42 Hotfix 1</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 - 2024 soopercool101, NuclearNecrosis, Simon381
BrawlBox Copyright © 2009 - 2019 Bryan Moulton, BlackJax96, libertyernie, Sammi Husky
Super Smash Bros. Brawl © 2008 Nintendo and HAL Laboratory
</Copyright>
<AssemblyVersion>0.42.0.0</AssemblyVersion>
<FileVersion>0.42.0.0</FileVersion>
<AssemblyVersion>0.42.0.1</AssemblyVersion>
<FileVersion>0.42.0.1</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>42.0.0</Version>
<Version>42.0.1</Version>
<Authors>soopercool101, NuclearNecrosis, Simon381, Onium, Bryan Moulton, BlackJax96, libertyernie, Sammi Husky</Authors>
<Company>BrawlCrate</Company>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
Expand Down
8 changes: 8 additions & 0 deletions BrawlCrate/Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ they be held accountable for the manner in which it is used.
|************ BrawlCrate Change Log ************|
===============================================

- BrawlCrate v0.42 Hotfix 1 - (5/20/2024)
. 50CC converter now properly uses the modern Windows folder picker
. Discontinue internal BrawlManagers support (BrawlInstaller has far more functionality than these)
. Fix behavior in which the default collision editor would not allow flagging "Everything" and "Pokemon Trainer" at the same time
. Fix typo in ItmParam: AnimItemHandWave -> AnimItemHandHave
. Fix crash when opening the program on Windows 7
. Fix crash when encountering a missing palette file when converting to/from a 50CC system

- BrawlCrate v0.42 - (3/31/2024)
. Update IronPython from v2.7.11 to v3.4.1
- Python support is now done via a localized installation, rather than userside. This will ensure plugin developers have a consistent version to work off of.
Expand Down
8 changes: 6 additions & 2 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.42";
public static readonly string TagName = "v0.42h1";

/// <summary>
/// Shows upon first launch of a given stable release assuming that automated updating is on.
Expand All @@ -41,7 +41,11 @@ 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.42! Here's what's new in this release:
@"Updated to BrawlCrate v0.42 Hotfix 1! Here's what's new in this release:
- (Hotfix 1) Fix crash when loading the program on Windows 7 (API will now be disabled in this instance)
- (Hotfix 1) Fix crash when a palette is missing on 50CC conversion
- (Hotfix 1) Allow the Pokemon Trainer collision flag to be set with the Everything collision flag in the default editor
- (Hotfix 1) Discontinue support for internal BrawlManagers (Check out BrawlInstaller for a more up-to-date version of the concept!)
- Updated IronPython from v2.7.11 to v3.4.1, with an integrated installation
- Updated known Item Parameters
- EventMatchFighterNode: Unknown0a -> SpawnPosition
Expand Down
6 changes: 3 additions & 3 deletions BrawlLib/BrawlLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<Product>BrawlCrateLib</Product>
<Copyright>Copyright © 2018 - 2024 soopercool101, NuclearNecrosis, Simon381
BrawlLib Copyright © 2009 - 2019 Bryan Moulton, BlackJax96, libertyernie, Sammi Husky</Copyright>
<AssemblyVersion>0.42.0.0</AssemblyVersion>
<FileVersion>0.42.0.0</FileVersion>
<AssemblyVersion>0.42.0.1</AssemblyVersion>
<FileVersion>0.42.0.1</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>42.0.0</Version>
<Version>42.0.1</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="CustomLists\FighterList.txt" />
Expand Down

0 comments on commit 86520de

Please sign in to comment.