Skip to content

Commit

Permalink
Added extract archive support. First release. Version 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sudakov Pavel committed Sep 4, 2018
1 parent ee61b53 commit 7613ca5
Show file tree
Hide file tree
Showing 11 changed files with 556 additions and 617 deletions.
65 changes: 65 additions & 0 deletions CBNSTT/AboutForm.Designer.cs

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

20 changes: 20 additions & 0 deletions CBNSTT/AboutForm.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace CBNSTT
{
public partial class AboutForm : Form
{
public AboutForm()
{
InitializeComponent();
}
}
}
22 changes: 13 additions & 9 deletions CBNSTT/FontEditorForm.resx → CBNSTT/AboutForm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,17 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="textureMenuStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>177, 17</value>
</metadata>
<metadata name="coordsMenuStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>352, 17</value>
</metadata>
<metadata name="formMenuStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="aboutRichTextBox.Text" xml:space="preserve">
<value>This tool for translating game Crash Bandicoot N.Same Triology.
It can modify text files, change some textures (PVRTexToolCLI.exe will be needed),
extract and repack archives.

If somebody made a full reasearch of fonts, you can help me with explaining or
you can modify my code on GitHub:
https://github.com/pashok6798/Crash-Bandicoot-NSAMETRIOLOGY-Tool

Version 0.1:
First version. It has some problems with correctly work textures.
Not a full english text (sometimes you can see a russian instead english).</value>
</data>
</root>
16 changes: 8 additions & 8 deletions CBNSTT/CBNSTT.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@
<Compile Include="7zip\Compress\RangeCoder\RangeCoderBit.cs" />
<Compile Include="7zip\Compress\RangeCoder\RangeCoderBitTree.cs" />
<Compile Include="7zip\ICoder.cs" />
<Compile Include="FileFolderDialog.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="FontEditorForm.cs">
<Compile Include="AboutForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="FontEditorForm.Designer.cs">
<DependentUpon>FontEditorForm.cs</DependentUpon>
<Compile Include="AboutForm.Designer.cs">
<DependentUpon>AboutForm.cs</DependentUpon>
</Compile>
<Compile Include="FileFolderDialog.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
Expand Down Expand Up @@ -106,8 +106,8 @@
<Compile Include="TextureToolForm.Designer.cs">
<DependentUpon>TextureToolForm.cs</DependentUpon>
</Compile>
<EmbeddedResource Include="FontEditorForm.resx">
<DependentUpon>FontEditorForm.cs</DependentUpon>
<EmbeddedResource Include="AboutForm.resx">
<DependentUpon>AboutForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
Expand Down
209 changes: 0 additions & 209 deletions CBNSTT/FontEditorForm.Designer.cs

This file was deleted.

Loading

0 comments on commit 7613ca5

Please sign in to comment.