Skip to content

Commit

Permalink
1.2.4.0 Handling different names for the same font
Browse files Browse the repository at this point in the history
+Improved message
  • Loading branch information
tastysugar committed Jan 30, 2023
1 parent 7f9dba2 commit 7a7f41d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AssFontSubset/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ private bool DetectNotExistsFont(Dictionary<string, List<AssFontInfo>> fontsInAs
}

if (notExists.Count > 0) {
MessageBox.Show($"以下字体未找到,无法继续:\r\n{string.Join("\r\n", notExists)}。提示:请确认字体名大小写是否正确。",
MessageBox.Show($"以下字体未找到,无法继续:\r\n{string.Join("\r\n", notExists)}\r\n提示:请确认字体名大小写是否正确。",
"缺少字体", MessageBoxButton.OK, MessageBoxImage.Error);
return false;
}
Expand Down
4 changes: 2 additions & 2 deletions AssFontSubset/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.3.1")]
[assembly: AssemblyFileVersion("1.2.3.1")]
[assembly: AssemblyVersion("1.2.4.0")]
[assembly: AssemblyFileVersion("1.2.4.0")]
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

#### 注意:
1. 每次生成时会自动删除 ass 同目录下的 output 文件夹。
2. 如果有 full name 和 family name 不同的字体,请不要混用 full name 和 family name,否则会提示找不到 family name 所指名的字体。
3. 不要混用同一个字体不同语言的名字。

### 选项

Expand Down

0 comments on commit 7a7f41d

Please sign in to comment.