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

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
soopercool101 committed Dec 10, 2018
1 parent cd922ac commit 6bdff04
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 19 deletions.
15 changes: 14 additions & 1 deletion BrawlCrate/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

BrawlCrate - v0.17 Hotfix 3
BrawlCrate - v0.18
Copyright © 2018 soopercool101, MarioDox, Syvkal
BrawlBox © 2009 - 2018 Bryan Moulton, BlackJax96, libertyernie & Sammi Husky

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

- BrawlCrate v0.18 - (12/10/2018)
. Adds support for sawnd importing and exporting for a BRSAR
. Files now open temporary duplicates, and do not writelock the original file
. Group ID is now displayed for RSAR groups
. Now shows when an ARC is detected to be a special type (Stage, Fighter, or Item Generation)
. Improves PAT0 Generator for Stocks
. Adds Binary Flags editor type for stage tables
. Decreased splash screen size
. Section Editor's annotation viewer can now be properly resized
. Fixes bug where saving a fighter PCS as a PAC would save it with PCS compression
. Fixes bug in which Stage Table attribute descriptions could be covered up by the attribute type buttons
. Fixes bug where documentation releases could not be downloaded if the documentation folder was deleted

- BrawlCrate v0.17 Hotfix 3 - (11/26/2018)
. Fixes bug where systems with high DPI scaling settings would have window resizes when viewing models
. Fixes bug in which switching to Canary and switching back could cause Canary to be enabled again when updating the stable build
Expand Down
15 changes: 6 additions & 9 deletions BrawlCrate/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,12 @@ namespace BrawlCrate
static class Program
{
//Make sure this matches the tag name of the release on github exactly
public static readonly string TagName = "BrawlCrate_v0.17Hotfix3";
public static readonly string UpdateMessage = "Updated to BrawlCrate v0.17 Hotfix 2! This release:\n" +
"\n- Adds a fancy new splash screen on boot" +
"\n- Allows switching to the BrawlCrate Canary update track (check the settings if interested)" +
"\n- Updates various aspects of the Model Viewer backend, improving performance" +
"\n- Fixes various bugs and improves performance with the updater" +
"\n- (Hotfix 1) Fixes crashes when viewing hex on older versions of Windows" +
"\n- (Hotfix 2) Fixes hex viewer crash on BRSTM creation" +
"\n- (Hotfix 3) Fixes DPI resize when viewing models" +
public static readonly string TagName = "BrawlCrate_v0.18";
public static readonly string UpdateMessage = "Updated to BrawlCrate v0.18! This release:\n" +
"\n- Adds sawnd importing and exporting for BRSARs" +
"\n- Adds Binary Flags editor type for Stage Tables" +
"\n- Fixes compression issues when saving from PCS to PAC" +
"\n- Improves viewer for Stage Table and Module annotations" +
"\n\nFull changelog can be found in the installation folder:\n" + AppDomain.CurrentDomain.BaseDirectory + "Changelog.txt";

public static readonly string AssemblyTitle;
Expand Down
8 changes: 4 additions & 4 deletions BrawlCrate/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
#if !DEBUG
[assembly: AssemblyTitle("BrawlCrate v0.17")]
[assembly: AssemblyTitle("BrawlCrate v0.18")]
#else
[assembly: AssemblyTitle("BrawlCrate v0.18 (BETA)")]
[assembly: AssemblyTitle("BrawlCrate v0.19 (BETA)")]
#endif
[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." +
Expand Down Expand Up @@ -44,5 +44,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.17.*")]
[assembly: AssemblyFileVersion("0.17.3.0")]
[assembly: AssemblyVersion("0.18.*")]
[assembly: AssemblyFileVersion("0.18.0.0")]
6 changes: 3 additions & 3 deletions BrawlLib/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("BrawlCrateLib v0.17")]
[assembly: AssemblyTitle("BrawlCrateLib v0.18")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("BrawlCrate")]
Expand Down Expand Up @@ -35,5 +35,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.17.*")]
[assembly: AssemblyFileVersion("0.17.3.0")]
[assembly: AssemblyVersion("0.18.*")]
[assembly: AssemblyFileVersion("0.18.0.0")]
Binary file modified CanaryBuild/Canary
Binary file not shown.
4 changes: 2 additions & 2 deletions Updater/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("17.3.0.0")]
[assembly: AssemblyFileVersion("17.3.0.0")]
[assembly: AssemblyVersion("18.0.0.0")]
[assembly: AssemblyFileVersion("18.0.0.0")]

0 comments on commit 6bdff04

Please sign in to comment.