v1.0.20.1 (summer patch)

This commit is contained in:
itchyOwl
2023-06-15 16:46:54 +03:00
parent 6acac1d143
commit 83de72e3d2
209 changed files with 4497 additions and 2488 deletions
@@ -46,8 +46,9 @@ namespace Barotrauma
CJK = 0x1,
Cyrillic = 0x2,
All = 0x3
Japanese = 0x4,
All = 0x7
}
public static readonly ImmutableArray<SpeciallyHandledCharCategory> SpeciallyHandledCharCategories
@@ -60,8 +61,6 @@ namespace Barotrauma
{
(SpeciallyHandledCharCategory.CJK, UnicodeToIntRanges(
UnicodeRanges.HangulJamo,
UnicodeRanges.Hiragana,
UnicodeRanges.Katakana,
UnicodeRanges.CjkRadicalsSupplement,
UnicodeRanges.CjkSymbolsandPunctuation,
UnicodeRanges.EnclosedCjkLettersandMonths,
@@ -69,7 +68,13 @@ namespace Barotrauma
UnicodeRanges.CjkUnifiedIdeographsExtensionA,
UnicodeRanges.CjkUnifiedIdeographs,
UnicodeRanges.HangulSyllables,
UnicodeRanges.CjkCompatibilityForms
UnicodeRanges.CjkCompatibilityForms,
//not really CJK symbols, but these seem to be present in the CJK fonts but not in the default ones, so we can use them as a fallback
UnicodeRanges.BlockElements
)),
(SpeciallyHandledCharCategory.Japanese, UnicodeToIntRanges(
UnicodeRanges.Hiragana,
UnicodeRanges.Katakana
)),
(SpeciallyHandledCharCategory.Cyrillic, UnicodeToIntRanges(
UnicodeRanges.Cyrillic,