Skip to content

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
soopercool101 committed Jul 24, 2023
1 parent 550a6aa commit 04b8db6
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 13 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.40</AssemblyTitle>
<AssemblyTitle>BrawlCrate v0.40a</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
BrawlBox Copyright © 2009 - 2019 Bryan Moulton, BlackJax96, libertyernie, Sammi Husky
Super Smash Bros. Brawl © 2008 Nintendo and HAL Laboratory
</Copyright>
<AssemblyVersion>0.40.0.0</AssemblyVersion>
<FileVersion>0.40.0.0</FileVersion>
<AssemblyVersion>0.40.1.0</AssemblyVersion>
<FileVersion>0.40.1.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.0.0</Version>
<Version>40.1.0</Version>
<Authors>soopercool101, NuclearNecrosis, Simon381, Onium, Bryan Moulton, BlackJax96, libertyernie, Sammi Husky</Authors>
<Company>BrawlCrate</Company>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
Expand Down
10 changes: 9 additions & 1 deletion BrawlCrate/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

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

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

- 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
. RE3D: Fix bug in which two child RE3D nodes could not have the same name
. AllStarDifficultyNode: "Unknown02" -> "AiLevel"
. Fix bug in which a new ITOV would generate without a header, leading to BrawlCrate being unable to read it properly

- BrawlCrate v0.40 - (5/12/2023)
. Further improvements to Subspace parsing
- Add support to GBC1, GBC2, GMPS, GLAD, GPS2, GDTP, GDBS, GTRR, GASD, GWAP, GNDV, GSTG
Expand All @@ -35,6 +42,7 @@ they be held accountable for the manner in which it is used.
. Fix bug in which certain TEX0 files would detect themselves as Color Smashed when they weren't
. Fix bug in which SHP0 v4 would corrupt itself on save
. Fix crash when opening files less than 4 bytes
. [Silent Hotfix] When booting up with missing DLL files, attempt to warn the user and redownload the latest release

- BrawlCrate v0.39 Hotfix 1 - (2/5/2023)
. Fix bug in which outdated fighters lists would not necessarily update properly
Expand Down
13 changes: 6 additions & 7 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.40";
public static readonly string TagName = "v0.40a";

/// <summary>
/// Shows upon first launch of a given stable release assuming that automated updating is on.
Expand All @@ -41,11 +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.40! Here's what's new in this release:
- Various SSE improvements
- Support for ItemEx
- General fixes to U8 archives
- Fix bugs with SHP0 v4
@"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
Full changelog and documentation can be viewed from the help menu.";

Expand Down Expand Up @@ -302,7 +301,7 @@ private static void Application_ThreadException(object sender, System.Threading.
"One or more key installation files are missing, likely due to antivirus software. The latest version will now be reinstalled. Please add your installation folder to your antivirus's exceptions list.",
"Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
#if CANARY
ForceDownloadCanary();
ForceDownloadCanary();
#else
ForceDownloadStable();
#endif
Expand Down
2 changes: 1 addition & 1 deletion BrawlLib/BrawlLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<TargetFramework>net472</TargetFramework>
<AssemblyTitle>BrawlCrateLib v0.40</AssemblyTitle>
<AssemblyTitle>BrawlCrateLib v0.40a</AssemblyTitle>
<Product>BrawlCrateLib</Product>
<Copyright>Copyright © 2018 - 2023 soopercool101, NuclearNecrosis, Simon381, Onium
BrawlLib Copyright © 2009 - 2019 Bryan Moulton, BlackJax96, libertyernie, Sammi Husky</Copyright>
Expand Down

0 comments on commit 04b8db6

Please sign in to comment.