Skip to content

Commit

Permalink
- switched ReleaseNotes to ascii format to provide for web browser vi…
Browse files Browse the repository at this point in the history
…ewing
  • Loading branch information
cozy1 committed Jan 23, 2019
1 parent fe47c38 commit 20dd063
Show file tree
Hide file tree
Showing 12 changed files with 85 additions and 183 deletions.
Binary file modified RocksmithPreBuild.exe
Binary file not shown.
7 changes: 5 additions & 2 deletions RocksmithPreBuild/Program.cs
Expand Up @@ -70,7 +70,7 @@ private static void Main(string[] args)
Console.WriteLine(" e.g. cmd /c \"RocksmithPreBuild.exe PREBUILD 1.2.3.4 RELEASE\"");
Console.WriteLine("");
Console.WriteLine("Press any key to continue");
if (DebugMode) Console.Read();
Console.Read();

Environment.Exit(1);
}
Expand Down Expand Up @@ -406,7 +406,10 @@ private static void ShowHelpfulError(string message)

private static string ProjectVersion()
{
return String.Format("{0}.{1}.{2}", Assembly.GetExecutingAssembly().GetName().Version.Major, Assembly.GetExecutingAssembly().GetName().Version.Minor, Assembly.GetExecutingAssembly().GetName().Version.Build);
return String.Format("{0}.{1}.{2}",
Assembly.GetExecutingAssembly().GetName().Version.Major,
Assembly.GetExecutingAssembly().GetName().Version.Minor,
Assembly.GetExecutingAssembly().GetName().Version.Build);
}

public static string GetStringInBetween(string strBegin, string strEnd, string strSource)
Expand Down
4 changes: 2 additions & 2 deletions RocksmithPreBuild/Properties/AssemblyInfo.cs
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.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
15 changes: 8 additions & 7 deletions RocksmithTookitGUI/MainForm.cs
Expand Up @@ -285,20 +285,21 @@ private void MainForm_Shown(object sender, EventArgs e)

private void ShowHelpForm()
{
using (Stream stream = File.OpenRead("ReleaseNotes.rtf"))
// using ascii text file for web browser viewing
using (var helpViewer = new HelpForm())
{
using (var helpViewer = new HelpForm())
{
helpViewer.Text = String.Format("{0}", "Toolkit Release Notes ...");
helpViewer.PopulateRichText(stream);
helpViewer.ShowDialog();
}
helpViewer.Text = String.Format("{0}", "Viewing ReleaseNotes.txt ...");
helpViewer.PopulateAsciiText(File.ReadAllText("ReleaseNotes.txt"));
helpViewer.ShowDialog();
}
}

// area for developer testing
private void DevTestMethod()
{
ShowHelpForm();
return;

var args = new string[]
{
"-u",
Expand Down
2 changes: 1 addition & 1 deletion RocksmithTookitGUI/Properties/AssemblyInfo.cs
Expand Up @@ -29,5 +29,5 @@
//
// THESE VALUES ARE PROGRAMMATICALLY GENERATED - DO NOT EDIT
[assembly: AssemblyVersion("2.9.2.0")]
[assembly: AssemblyInformationalVersion("2afdf385")]
[assembly: AssemblyInformationalVersion("fe47c38f")]
[assembly: AssemblyConfiguration("")]
165 changes: 0 additions & 165 deletions RocksmithTookitGUI/ReleaseNotes.rtf

This file was deleted.

61 changes: 61 additions & 0 deletions RocksmithTookitGUI/ReleaseNotes.txt
@@ -0,0 +1,61 @@
Rocksmith Toolkit Release Notes

* Switched ReleaseNotes to ascii text file format for web browser viewing

* Updated RocksmithPreBuild.exe to include new versioning methods

* improved ReadVolumeFactor parsing method to account for different bnk formats

* Added new support for Mac Wineskin wrappers

* Updated to DDC v3.6 thanks to Chlipouni

* Revised sortable field validation to be more consistent with ODLC

* Added support to CDLC Creator to preserve tagger.org artwork

* Rewrote AppId Updater code as a memory process to improve overall performance

* Fixed typo/bug in GenerateSng

* Correctly set manifest boolean property �SKU� so that CDLC are not tagged as DLC in the in-game setlist.

* Applied a perma fix to prevent creating property values in the designer when the CDLC Creator GUI design is modified (fixes empty PackageVersion and Platform issues)

* Improved RS1 to RS2014 and RS2014 to RS1 conversions and better tone conversions

* Improved RS1 Import Package function to collect more accurate package data.

* Add arrangement represent (Default/Bonus/Alternate) validation to CDLC Creator.

* Save most recent �Default Project Folder� to Configuration from �Quick Add�.

* Added volume validation check when loading data.

* Toolkit CDLC Creator uses the EOF Track>Rocksmith>Arrangement type> Default, Bonus, Alternate properties as set by default by EOF or as selected by the charter in EOF. The toolkit alerts users if there are more than 5 usable instrument arrangements entered (Remastered Max5 Limit) into the CDLC Creator.

* Added Custom Open File Dialog to CDLC Creator �Quick Add� button which allows arrangements to be entered in any specified order. The order of Arrangement and Tone lists can be changed using Shift+Up/Down Arrow (see popup tooltips in CDLC Creator).

* Fixed Mac Wine/Mono third party application processing

* Fixed audio file type filtering in CDLC Creator.

* Remove all periods �.� from sortable fields to avoid issues with sorting and file naming.

* Make _RSToolkit Logger available in application for Global use.

* Added Package Rating to toolkit.version file to track user rating of CDLC

* Fixed Toolkit Auto Updater button action and caption

* Wwise Path can now be completely cleared and reset in the Configure menu so that it is possible for user to switch to/from Wwise versions as needed to convert RS2014 to RS1 and then switch back.

* Fixed some VS IDE issues with DDC tab menu.

* Added automatic RS2014 to RS1 CDLC Converter. Hover mouse over RS2014 radio button in "Game Version" groupbox to see quick how-to instructions. You must have Wwise 2010.3.3 exact version installed from http://www.saintsrowmods.com/forum/pages/wwise and also set toolkit >Configuration>Wwise Path for auto conversion to work.


Please let the toolkit developers know if experience any issues with this beta (good reports or bug reports). Always make sure you are able to reproduce the issue with the latest toolkit beta before filing a bug report.


User Tip: Windows 10 users can unblock the toolkit DLL's and EXE's by running the following command in Windows PowerShell 'gci ./toolkit | unblock-file'.
6 changes: 3 additions & 3 deletions RocksmithTookitGUI/RocksmithToolkitGUI.csproj
Expand Up @@ -392,6 +392,9 @@
<None Include="Resources\toolkit_logo.png" />
</ItemGroup>
<ItemGroup>
<Content Include="ReleaseNotes.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="songcreator.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
Expand All @@ -406,9 +409,6 @@
<Link>VersionInfo.txt</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="ReleaseNotes.rtf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Include="ReadMe.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
Expand Down
2 changes: 2 additions & 0 deletions RocksmithToolkitLib/Extensions/HelpForm.cs
Expand Up @@ -44,6 +44,8 @@ public void PopulateAsciiText(string textNotes = "")
}
else
{
this.Size = new Size(780, 450);
rtbNotes.Font = new Font("Arial", 11.0F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
rtbNotes.Text = textNotes;
}
}
Expand Down
2 changes: 1 addition & 1 deletion RocksmithToolkitLib/Properties/AssemblyInfo.cs
Expand Up @@ -27,5 +27,5 @@
//
// THESE VALUES ARE PROGRAMMATICALLY GENERATED - DO NOT EDIT
[assembly: AssemblyVersion("2.9.2.0")]
[assembly: AssemblyInformationalVersion("2afdf385")]
[assembly: AssemblyInformationalVersion("fe47c38f")]
[assembly: AssemblyConfiguration("")]
2 changes: 1 addition & 1 deletion RocksmithToolkitUpdater/Properties/AssemblyInfo.cs
Expand Up @@ -29,5 +29,5 @@
//
// THESE VALUES ARE PROGRAMMATICALLY GENERATED - DO NOT EDIT
[assembly: AssemblyVersion("2.9.2.0")]
[assembly: AssemblyInformationalVersion("2afdf385")]
[assembly: AssemblyInformationalVersion("fe47c38f")]
[assembly: AssemblyConfiguration("")]
2 changes: 1 addition & 1 deletion VersionInfo.txt
@@ -1,3 +1,3 @@
2.9.2.0
2afdf385
fe47c38f

0 comments on commit 20dd063

Please sign in to comment.