Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
[r1047rev4] update About, ACB info and icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Manicsteiner committed Nov 29, 2023
1 parent 2e4bf52 commit 13cdfc0
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 22 deletions.
2 changes: 1 addition & 1 deletion VGMToolbox/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</assemblyBinding>
</runtime>
<appSettings>
<add key="VersionString" value="VGMToolbox r1047rev3 (2023_11_26)" />
<add key="VersionString" value="VGMToolbox r1047rev4 (2023_11_29)" />
<!--############-->
<!-- Tree Nodes -->
<!--############-->
Expand Down
4 changes: 2 additions & 2 deletions VGMToolbox/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// 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("0.1047.3.0")]
[assembly: AssemblyFileVersion("0.1047.3.0")]
[assembly: AssemblyVersion("0.1047.4.0")]
[assembly: AssemblyFileVersion("0.1047.4.0")]
[assembly: NeutralResourcesLanguageAttribute("en-US")]
3 changes: 3 additions & 0 deletions VGMToolbox/VGMToolbox.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@
<TargetZone>LocalIntranet</TargetZone>
</PropertyGroup>
<PropertyGroup />
<PropertyGroup>
<ApplicationIcon>Resources\ToolBox-2.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="ICSharpCode.SharpZipLib, Version=0.85.4.369, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
<HintPath>3rd\ICSharpCode.SharpZipLib.dll</HintPath>
Expand Down
55 changes: 38 additions & 17 deletions VGMToolbox/forms/AboutForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions VGMToolbox/forms/AboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ public AboutForm()
{
InitializeComponent();

this.linkLabelHomePage.Links.Add(0, this.linkLabelHomePage.Text.Length, "http://sourceforge.net/projects/vgmtoolbox/");
this.linkLabelSupport.Links.Add(0, this.linkLabelSupport.Text.Length, "http://hcs64.com/mboard/forum.php?showthread=22580");
this.linkLabelHomePage.Links.Add(0, this.linkLabelHomePage.Text.Length, "https://sourceforge.net/projects/vgmtoolbox/");
this.linkLabelSupport.Links.Add(0, this.linkLabelSupport.Text.Length, "https://hcs64.com/mboard/forum.php?showthread=22580");
this.linkLabelGithub.Links.Add(0, this.linkLabelGithub.Text.Length, "https://github.com/Manicsteiner/VGMToolbox");
}

private void okButton_Click(object sender, EventArgs e)
Expand Down
1 change: 1 addition & 0 deletions VGMToolbox/forms/extraction/CriAcbAwbExtractorForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public CriAcbAwbExtractorForm(TreeNode pTreeNode)
this.lblTitle.Text = "CRI ACB/AWB Archive Extractor";
this.tbOutput.Text = "Extract Files from CRI ACB/AWB Archives" + Environment.NewLine;
this.tbOutput.Text += "*** For ACB/AWB pairs, only the ACB needs to be dropped." + Environment.NewLine;
this.tbOutput.Text += "*** If you encounter problems with the extract process, please try using VGMStream first." + Environment.NewLine;

// hide the DoTask button since this is a drag and drop form
this.btnDoTask.Hide();
Expand Down

0 comments on commit 13cdfc0

Please sign in to comment.