Skip to content

Commit

Permalink
Commit for Release Version 2.8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cozy1 committed Jan 22, 2017
1 parent e288c5d commit 3d133c6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion PatchAssemblyVersion.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $Assembly_Informational_Version = "$env:GIT_HASH"

# edit the AssemblyVersion here
# will be applied to all AssemblyInfo.cs files ...
$Assembly_Version = "2.7.1.0"
$Assembly_Version = "2.8.0.0"

Write-Host "- Patching: $Assembly_File"
Write-Host "- AssemblyVersion: $Assembly_Version"
Expand Down
5 changes: 3 additions & 2 deletions RocksmithTookitGUI/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ public MainForm(string[] args)

private void InitMainForm()
{
// edit version number in AssemblyInfo.cs for GUI, Lib and Updater
// edit the version number in PatchAssemblyVersion.ps1
// comment out as necessary when issuing new release version
// update (remove beta) from AssemblyInfo.cs in GUI, Lib and Updater
//this.Text = String.Format("Rocksmith Custom Song Toolkit (v{0} beta)", ToolkitVersion.version);
this.Text = String.Format("Rocksmith Custom Song Toolkit (v{0})", ToolkitVersion.version);

Expand Down Expand Up @@ -242,7 +243,7 @@ private void MainForm_Shown(object sender, EventArgs e)

private void ShowHelpForm()
{
Assembly assembly = Assembly.GetExecutingAssembly();
Assembly assembly = Assembly.GetExecutingAssembly();
using (Stream streamBetaInfo = assembly.GetManifestResourceStream("RocksmithToolkitGUI.Resources.BetaInfo.rtf"))
{
using (var helpViewer = new HelpForm())
Expand Down
4 changes: 2 additions & 2 deletions RocksmithTookitGUI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Rocksmith Custom Song Project")]
[assembly: AssemblyProduct("Rocksmith Custom Song Creator Toolkit")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
Expand All @@ -32,5 +32,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.8.0.0")]
[assembly: AssemblyInformationalVersion("115d0a91")]
[assembly: AssemblyInformationalVersion("e288c5d0")]
[assembly: NeutralResourcesLanguageAttribute("en")]
4 changes: 2 additions & 2 deletions RocksmithToolkitLib/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Rocksmith Custom Song Project")]
[assembly: AssemblyProduct("RocksmithToolkitLib")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
Expand All @@ -30,5 +30,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.8.0.0")]
[assembly: AssemblyInformationalVersion("115d0a91")]
[assembly: AssemblyInformationalVersion("e288c5d0")]
[assembly: NeutralResourcesLanguageAttribute("en")]
4 changes: 2 additions & 2 deletions RocksmithToolkitUpdater/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Rocksmith Custom Song Project")]
[assembly: AssemblyProduct("RocksmithToolkitUpdater")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
Expand All @@ -32,5 +32,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.8.0.0")]
[assembly: AssemblyInformationalVersion("115d0a91")]
[assembly: AssemblyInformationalVersion("e288c5d0")]
[assembly: NeutralResourcesLanguageAttribute("en")]
2 changes: 1 addition & 1 deletion VersionInfo.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0a64c83d
e288c5d0

0 comments on commit 3d133c6

Please sign in to comment.