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

Commit 4e8bac1

Browse files
committed
Prep for hotfix release
1 parent 4cc7b82 commit 4e8bac1

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

BrawlCrate/Changelog.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
BrawlCrate - v0.17 Hotfix 2
2+
BrawlCrate - v0.17 Hotfix 3
33
Copyright © 2018 soopercool101, MarioDox, Syvkal
44
BrawlBox © 2009 - 2018 Bryan Moulton, BlackJax96, libertyernie & Sammi Husky
55

@@ -16,6 +16,11 @@ they be held accountable for the manner in which it is used.
1616
|************ BrawlCrate Change Log ************|
1717
===============================================
1818

19+
- BrawlCrate v0.17 Hotfix 3 - (11/26/2018)
20+
. Fixes bug where systems with high DPI scaling settings would have window resizes when viewing models
21+
. Fixes bug in which switching to Canary and switching back could cause Canary to be enabled again when updating the stable build
22+
. Various Canary quality of life improvements
23+
1924
- BrawlCrate v0.17 Hotfix 2 - (11/25/2018)
2025
. Fixes bug in which hex viewing being active would crash the program on BRSTM creation
2126

BrawlCrate/Program.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@ namespace BrawlCrate
1616
static class Program
1717
{
1818
//Make sure this matches the tag name of the release on github exactly
19-
public static readonly string TagName = "BrawlCrate_v0.17Hotfix2";
19+
public static readonly string TagName = "BrawlCrate_v0.17Hotfix3";
2020
public static readonly string UpdateMessage = "Updated to BrawlCrate v0.17 Hotfix 2! This release:\n" +
2121
"\n- Adds a fancy new splash screen on boot" +
2222
"\n- Allows switching to the BrawlCrate Canary update track (check the settings if interested)" +
2323
"\n- Updates various aspects of the Model Viewer backend, improving performance" +
2424
"\n- Fixes various bugs and improves performance with the updater" +
2525
"\n- (Hotfix 1) Fixes crashes when viewing hex on older versions of Windows" +
2626
"\n- (Hotfix 2) Fixes hex viewer crash on BRSTM creation" +
27+
"\n- (Hotfix 3) Fixes DPI resize when viewing models" +
2728
"\n\nFull changelog can be found in the installation folder:\n" + AppDomain.CurrentDomain.BaseDirectory + "Changelog.txt";
2829

2930
public static readonly string AssemblyTitle;

BrawlCrate/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
[assembly: AssemblyConfiguration("")]
1717
[assembly: AssemblyCompany("BrawlCrate")]
1818
[assembly: AssemblyProduct("BrawlCrate")]
19-
[assembly: AssemblyCopyright(@"Copyright © 2018 soopercool101, MarioDox
19+
[assembly: AssemblyCopyright(@"Copyright © 2018 soopercool101, MarioDox, Syvkal
2020
BrawlBox © 2009 - 2018 Bryan Moulton, BlackJax96, libertyernie && Sammi Husky
2121
Super Smash Bros. Brawl © 2008 Nintendo and HAL Laboratory")]
2222
[assembly: AssemblyTrademark(@"Characters are copyrighted by the following:
@@ -45,4 +45,4 @@
4545
// by using the '*' as shown below:
4646
// [assembly: AssemblyVersion("1.0.*")]
4747
[assembly: AssemblyVersion("0.17.*")]
48-
[assembly: AssemblyFileVersion("0.17.2.0")]
48+
[assembly: AssemblyFileVersion("0.17.3.0")]

BrawlLib/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636
// by using the '*' as shown below:
3737
// [assembly: AssemblyVersion("1.0.*")]
3838
[assembly: AssemblyVersion("0.17.*")]
39-
[assembly: AssemblyFileVersion("0.17.2.0")]
39+
[assembly: AssemblyFileVersion("0.17.3.0")]

CanaryBuild/Canary

874 Bytes
Binary file not shown.

Updater/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
// You can specify all the values or you can default the Build and Revision Numbers
3636
// by using the '*' as shown below:
3737
// [assembly: AssemblyVersion("1.0.*")]
38-
[assembly: AssemblyVersion("10.1.0.0")]
39-
[assembly: AssemblyFileVersion("10.1.0.0")]
38+
[assembly: AssemblyVersion("17.3.0.0")]
39+
[assembly: AssemblyFileVersion("17.3.0.0")]

0 commit comments

Comments
 (0)