Skip to content

Commit

Permalink
Bump version number & update readme, remove unneeded sort
Browse files Browse the repository at this point in the history
The mod files array was still being sorted from back when BrawlBuilder
handled alt stages differently, this will remove that now unneeded
sort.

This will also bump the version number and update the readme, which I
forgot to do in the last commit
  • Loading branch information
mogzol committed Sep 27, 2016
1 parent a9a9bac commit caf2992
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 1 addition & 2 deletions BrawlBuilder/BrawlBuilder.WorkerCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -545,9 +545,8 @@ private bool CopyModFiles()

SetStatus("Copying...");

// Get mod files in alphabetical order (makes alt stage checking easy)
// Get absolute paths to the mod files
string[] modFilesAbsolute = Directory.GetFiles(modFolder.Text, "*", SearchOption.AllDirectories);
Array.Sort(modFilesAbsolute);

_progress = 0;
_progressMax = modFilesAbsolute.Length;
Expand Down
4 changes: 2 additions & 2 deletions BrawlBuilder/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,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("1.2.2.0")]
[assembly: AssemblyFileVersion("1.2.2.0")]
[assembly: AssemblyVersion("1.2.3.0")]
[assembly: AssemblyFileVersion("1.2.3.0")]
6 changes: 5 additions & 1 deletion Other/readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
------------------------------------/
------- BRAWLBUILDER v1.2.2 -------/
------- BRAWLBUILDER v1.2.3 -------/
----------------------------------/

"The Ultimate Super Smash Bros. Brawl ISO Builder"
Expand Down Expand Up @@ -85,6 +85,10 @@ if it doesn't, just copy it manually.
--------------------/
------ Changelog --/
------------------/
1.2.3:
- The necessary parts of Ookii.Dialogs (i.e., the folder select dialog) are now compiled into the BrawlBuilder
executable, which means the external DLL is no longer required.

1.2.2:
- Fix custom working directories not working (again)

Expand Down

0 comments on commit caf2992

Please sign in to comment.