Skip to content
This repository was archived by the owner on Aug 29, 2018. It is now read-only.

Commit ca1b074

Browse files
committed
Worked around another stupid version naming, fixes #11
1 parent f40ad9a commit ca1b074

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Source/3DNUS_Material_Source/3DNUS Material Edition/3DNUS Material Edition/FormMain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ private void materialFlatButton1_Click(object sender, EventArgs e)
298298
}
299299
}
300300

301-
YLS_Sysver firmw = new YLS_Sysver() { label = (match.Groups[1] + "." + match.Groups[2] + "." + (match.Groups[4].Success ? match.Groups[4].ToString() : "0") + "-" + (match.Groups[6].Success ? match.Groups[6].ToString() : "999")) };
301+
YLS_Sysver firmw = new YLS_Sysver() { label = (match.Groups[1] + "." + match.Groups[2] + "." + (match.Groups[4].Success ? match.Groups[4].ToString() : "9") + "-" + (match.Groups[6].Success ? match.Groups[6].ToString() : "999")) };
302302
String region = match.Groups[7].ToString().ToUpper();
303303
t_titleid.Text = firmw + region;
304304
t_titleid.Update();

Source/3DNUS_Material_Source/3DNUS Material Edition/3DNUS Material Edition/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("3.0.1")]
36-
[assembly: AssemblyFileVersion("3.0.1")]
35+
[assembly: AssemblyVersion("3.0.1.1")]
36+
[assembly: AssemblyFileVersion("3.0.1.1")]

Source/3DNUS_Material_Source/3DNUS Material Edition/3DNUS Material Edition/YLS.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static YLS Import(String wat)
4848
if (titl.id == 0x4013000001B02) line[3] = line[3].Replace("_GPIO", " GPIO").Replace("02-11-15 GPIO", "9.5.0-22");
4949
if (titl.id == 0x400102002CA00) line[3] = line[3].Replace("_JPN", " JPN").Replace("10-02-14 JPN", "9.1.0-20J");
5050

51-
if(line[1] == "TWN") line[3] = line[3].Replace("08-18-16_TWN_BeginScanning", "11.0.0-33T");
51+
if(line[1] == "TWN") line[3] = line[3].Replace("08-18-16_TWN_BeginScanning", "11.0.0-33T").Replace("N/A", "11.3.1-36T");
5252

5353

5454
Match mat = Regex.Match(line[3], @"(\d+)\.(\d+)\.(\d+)-(\d+)");

0 commit comments

Comments
 (0)