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 5, 2023
1 parent 302a285 commit 2f55c20
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 22 deletions.
12 changes: 6 additions & 6 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.38</AssemblyTitle>
<AssemblyTitle>BrawlCrate v0.39</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 - 2022 soopercool101, Simon381, Onium
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.38.0.0</AssemblyVersion>
<FileVersion>0.38.0.0</FileVersion>
<AssemblyVersion>0.39.0.0</AssemblyVersion>
<FileVersion>0.39.0.0</FileVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Platforms>AnyCPU;x64;x86</Platforms>
<Configurations>Debug;Release;Mono;Canary;Doxygen;Documentation</Configurations>
Expand Down Expand Up @@ -185,8 +185,8 @@
</PropertyGroup>
<PropertyGroup>
<StartupObject>BrawlCrate.Program</StartupObject>
<Version>38.0.0</Version>
<Authors>soopercool101, Simon381, Onium, Bryan Moulton, BlackJax96, libertyernie, Sammi Husky</Authors>
<Version>39.0.0</Version>
<Authors>soopercool101, NuclearNecrosis, Simon381, Onium, Bryan Moulton, BlackJax96, libertyernie, Sammi Husky</Authors>
<Company>BrawlCrate</Company>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
</PropertyGroup>
Expand Down
19 changes: 17 additions & 2 deletions BrawlCrate/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

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

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

- BrawlCrate v0.39 - (2/5/2023)
. P+ Knuckles has been added to the default Fighters List
. Add support for importing any filetype to ARCNode
. Subspace BLOC parsing has been greatly improved
- Added support for GEPT, GFT2, GCAT, and GSAV
- Improved parsing for GFG1, GMOT, GNDV
. ADPM: Parse TimeLimitSeconds
. SELB now allows for up to 10 max entries rather than 5
. Collision Merge function now allows merging multiple collisions at once and appends original collision's name to the object name temporarily
. Fix bug in which Color Smash Import showed as enabled when color_smash.exe is missing
- When color_smash.exe is missing, add a tooltip to explain this to the user
. Fix bug in which TBGC 0x0 would always save as 0
. Fix bug in which duplicate names in STEX would corrupt the file on save
. Fix bug in which a RELNode could be closed before it fully populated

- BrawlCrate v0.38 - (8/31/2022)
. Add support for SSEEX structures (SELC and SELB)
- ADSJ Flag3 is now considered a signed byte (useful for SSEEX)
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.38";
public static readonly string TagName = "v0.39";

/// <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.38! Here's what's new in this release:
- Add support for SSEEX structures, as well as various other SSE updates
- Stability improvements for BRSAR
- Fix various bugs
@"Updated to BrawlCrate v0.39! Here's what's new in this release:
- Add Knuckles (P+) to default fighterlist
- Various SSE improvements
- Various bugfixes
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.38</AssemblyTitle>
<AssemblyTitle>BrawlCrateLib v0.39</AssemblyTitle>
<Product>BrawlCrateLib</Product>
<Copyright>Copyright © 2018 - 2022 soopercool101, Simon381, Onium
<Copyright>Copyright © 2018 - 2023 soopercool101, NuclearNecrosis, Simon381, Onium
BrawlLib Copyright © 2009 - 2019 Bryan Moulton, BlackJax96, libertyernie, Sammi Husky</Copyright>
<AssemblyVersion>0.38.0.0</AssemblyVersion>
<FileVersion>0.38.0.0</FileVersion>
<AssemblyVersion>0.39.0.0</AssemblyVersion>
<FileVersion>0.39.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>38.0.0</Version>
<Version>39.0.0</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="CustomLists\FighterList.txt" />
Expand Down
5 changes: 4 additions & 1 deletion BrawlLib/InternalDocumentation/version.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
Documentation_v0.38
Documentation_v0.39

=============================================================
|************ BrawlCrate Documentation Change Log ************|
=============================================================

Current BrawlCrate Documentation contributors: soopercool101, Syvkal, MarioDox, Pyro, HyperL!nk, Cahalan, Eon, WTails358, RedipsTheCooler, Escope12

- Documentation v0.39
. Added module annotations for Pit (Section [1])

- Documentation v0.38
. Added module annotations for Diddy Kong (Section [1])
. Added module annotations for Lucario (Section [1])
Expand Down
6 changes: 3 additions & 3 deletions Updater/Updater.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@
</PropertyGroup>
<PropertyGroup>
<StartupObject>Updater.Program</StartupObject>
<AssemblyVersion>0.38.0.0</AssemblyVersion>
<AssemblyVersion>0.39.0.0</AssemblyVersion>
<Authors>soopercool101, Sammi Husky</Authors>
<PackageId>BrawlCrate Updater</PackageId>
<FileVersion>0.38.0.0</FileVersion>
<Version>38.0.0</Version>
<FileVersion>0.39.0.0</FileVersion>
<Version>39.0.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
Expand Down

0 comments on commit 2f55c20

Please sign in to comment.