This repository was archived by the owner on May 18, 2023. It is now read-only.
Commit 78209d4 1 parent 6d20bb6 commit 78209d4 Copy full SHA for 78209d4
File tree 6 files changed +25
-16
lines changed
6 files changed +25
-16
lines changed Original file line number Diff line number Diff line change 1
1
2
- BrawlCrate - v0.18 Hotfix 1
2
+ BrawlCrate - v0.19
3
3
Copyright © 2018 soopercool101, MarioDox, Syvkal
4
4
BrawlBox © 2009 - 2018 Bryan Moulton, BlackJax96, libertyernie & Sammi Husky
5
5
@@ -16,6 +16,16 @@ they be held accountable for the manner in which it is used.
16
16
|************ BrawlCrate Change Log ************|
17
17
===============================================
18
18
19
+ - BrawlCrate v0.19 - (12/25/2018)
20
+ . Greatly improved settings menu organization
21
+ . Improved Classic mode parsing
22
+ - Can now directly edit battle types (Free-for-all, Teams, or Horde battles)
23
+ - Parses Ally flag for CPUs
24
+ - Parses CPU Level for AI
25
+ - Better parsing for AI Type flags
26
+ - Replacing fighters will no longer crash the editor
27
+ . Canary system overhauled to use a more stable hook
28
+
19
29
- BrawlCrate v0.18 Hotfix 1 - (12/21/2018)
20
30
. Display IDs for all relevant BRSAR subnodes
21
31
. Speed up number entry for Module Editor
Original file line number Diff line number Diff line change @@ -16,12 +16,11 @@ namespace BrawlCrate
16
16
static class Program
17
17
{
18
18
//Make sure this matches the tag name of the release on github exactly
19
- public static readonly string TagName = "BrawlCrate_v0.18Hotfix1" ;
20
- public static readonly string UpdateMessage = "Updated to BrawlCrate v0.18 Hotfix 1! This release:\n " +
21
- "\n - Adds additional parsing for IDs for BRSAR subnodes" +
22
- "\n - Fixes Save As functionality" +
23
- "\n - Fixes issue where volume settings were not properly loaded" +
24
- "\n - Fixes broken \" Close all open windows\" functionality in the updater" +
19
+ public static readonly string TagName = "BrawlCrate_v0.19" ;
20
+ public static readonly string UpdateMessage = "Updated to BrawlCrate v0.19! This release:\n " +
21
+ "\n - Greatly improved classic mode parsing" +
22
+ "\n - Settings have been expanded and reorganized" +
23
+ "\n - Canary now uses a much more stable and robust hook" +
25
24
"\n \n Full changelog can be found in the installation folder:\n " + AppDomain . CurrentDomain . BaseDirectory + "Changelog.txt" ;
26
25
27
26
public static readonly string AssemblyTitle ;
Original file line number Diff line number Diff line change 5
5
// set of attributes. Change these attribute values to modify the information
6
6
// associated with an assembly.
7
7
#if ! DEBUG
8
- [ assembly: AssemblyTitle ( "BrawlCrate v0.18 " ) ]
8
+ [ assembly: AssemblyTitle ( "BrawlCrate v0.19 " ) ]
9
9
#else
10
- [ assembly: AssemblyTitle ( "BrawlCrate v0.19 (BETA)" ) ]
10
+ [ assembly: AssemblyTitle ( "BrawlCrate v0.20 (BETA)" ) ]
11
11
#endif
12
12
[ assembly: AssemblyDescription ( "This program is provided as-is without any warranty, implied or otherwise." +
13
13
" By using this program, the end user agrees to take full responsibility regarding its proper and lawful use." +
44
44
// You can specify all the values or you can default the Build and Revision Numbers
45
45
// by using the '*' as shown below:
46
46
// [assembly: AssemblyVersion("1.0.*")]
47
- [ assembly: AssemblyVersion ( "0.18 .*" ) ]
48
- [ assembly: AssemblyFileVersion ( "0.18.1 .0" ) ]
47
+ [ assembly: AssemblyVersion ( "0.19 .*" ) ]
48
+ [ assembly: AssemblyFileVersion ( "0.19.0 .0" ) ]
Original file line number Diff line number Diff line change 4
4
// General Information about an assembly is controlled through the following
5
5
// set of attributes. Change these attribute values to modify the information
6
6
// associated with an assembly.
7
- [ assembly: AssemblyTitle ( "BrawlCrateLib v0.18 " ) ]
7
+ [ assembly: AssemblyTitle ( "BrawlCrateLib v0.19 " ) ]
8
8
[ assembly: AssemblyDescription ( "" ) ]
9
9
[ assembly: AssemblyConfiguration ( "" ) ]
10
10
[ assembly: AssemblyCompany ( "BrawlCrate" ) ]
35
35
// You can specify all the values or you can default the Build and Revision Numbers
36
36
// by using the '*' as shown below:
37
37
// [assembly: AssemblyVersion("1.0.*")]
38
- [ assembly: AssemblyVersion ( "0.18 .*" ) ]
39
- [ assembly: AssemblyFileVersion ( "0.18.1 .0" ) ]
38
+ [ assembly: AssemblyVersion ( "0.19 .*" ) ]
39
+ [ assembly: AssemblyFileVersion ( "0.19.0 .0" ) ]
Original file line number Diff line number Diff line change 35
35
// You can specify all the values or you can default the Build and Revision Numbers
36
36
// by using the '*' as shown below:
37
37
// [assembly: AssemblyVersion("1.0.*")]
38
- [ assembly: AssemblyVersion ( "18.1 .0.0" ) ]
39
- [ assembly: AssemblyFileVersion ( "18.1 .0.0" ) ]
38
+ [ assembly: AssemblyVersion ( "19.0 .0.0" ) ]
39
+ [ assembly: AssemblyFileVersion ( "19.0 .0.0" ) ]
You can’t perform that action at this time.
0 commit comments