Skip to content

Commit 09adeea

Browse files
Properly categorize str#_plane in Yuukan
1 parent 13ae340 commit 09adeea

File tree

4 files changed

+6
-11
lines changed

4 files changed

+6
-11
lines changed

GrisaiaExtractor/Identifying/Character.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public class Character : ImageIdentification {
111111
public static readonly Regex FormatRegex =
112112
new Regex(
113113
$"^((?'type'T|_?_?sd)?_?(?'name'{string.Join("|", Characters.Keys.ToArray())})|" +
114-
$"^(?'type'T)?_?(?'name'{string.Join("|", SpriteOnlyCharacters.Keys.ToArray())}))",
114+
$"^(?'type'T)_?(?'name'{string.Join("|", SpriteOnlyCharacters.Keys.ToArray())}))",
115115
RegexOptions.IgnoreCase);
116116

117117
public static void Register() {

GrisaiaExtractor/Identifying/UserInterface.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ namespace GrisaiaExtractor.Identifying {
99
public class UserInterface : ImageIdentification {
1010
private static readonly string[] Prefixes = {
1111
"_conf_txt",
12-
//"10thlogo",
1312
"activate",
1413
"award",
1514
"caution",
@@ -26,14 +25,11 @@ public class UserInterface : ImageIdentification {
2625
"delta_plane",
2726
"dl_",
2827
"eyecatch",
29-
//"fwlogo",
3028
"guripe",
3129
"hamon",
3230
"half_plane",
3331
"hist",
34-
//"install",
3532
"jumpmes",
36-
//"logo",
3733
"moviemode",
3834
"novel_click",
3935
"nowloading",
@@ -45,15 +41,14 @@ public class UserInterface : ImageIdentification {
4541
"scnsel",
4642
"secret",
4743
"seek",
48-
//"sekai_logo",
4944
"sel",
5045
"scenarioselect",
5146
"shortcut",
5247
"sl_",
5348
"slide_",
5449
"ss_",
50+
@"str\d_plane",
5551
"sys_(?!title)", // sys_title -> Logo
56-
//"title",
5752
"userfont",
5853
"wpthm",
5954
};

GrisaiaExtractor/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("1.0.2.1")]
36-
[assembly: AssemblyFileVersion("1.0.2.1")]
35+
[assembly: AssemblyVersion("1.0.2.2")]
36+
[assembly: AssemblyFileVersion("1.0.2.2")]

GrisaiaExtractorConsole/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
36-
[assembly: AssemblyVersion("1.0.2.1")]
37-
[assembly: AssemblyFileVersion("1.0.2.1")]
36+
[assembly: AssemblyVersion("1.0.2.2")]
37+
[assembly: AssemblyFileVersion("1.0.2.2")]
3838
[assembly: NeutralResourcesLanguage("en")]
3939

0 commit comments

Comments
 (0)