Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ArabicShaping for Kashmiri Yeh #898

Merged
merged 8 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions unicodetools/data/ucd/dev/ArabicShaping.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ArabicShaping-16.0.0.txt
# Date: 2024-02-02
# Date: 2024-07-30
# © 2024 Unicode®, Inc.
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
# For terms of use and license, see https://www.unicode.org/terms_of_use.html
Expand Down Expand Up @@ -128,7 +128,7 @@
0605; ARABIC NUMBER MARK ABOVE; U; No_Joining_Group
0608; ARABIC RAY; U; No_Joining_Group
060B; AFGHANI SIGN; U; No_Joining_Group
0620; DOTLESS YEH WITH SEPARATE RING BELOW; D; YEH
0620; KASHMIRI YEH; D; KASHMIRI YEH
0621; HAMZA; U; No_Joining_Group
0622; ALEF WITH MADDA ABOVE; R; ALEF
0623; ALEF WITH HAMZA ABOVE; R; ALEF
Expand Down
3 changes: 2 additions & 1 deletion unicodetools/data/ucd/dev/PropertyValueAliases.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# PropertyValueAliases-16.0.0.txt
# Date: 2024-06-06, 22:21:34 GMT
# Date: 2024-07-30, 19:59:00 GMT
# © 2024 Unicode®, Inc.
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
# For terms of use and license, see https://www.unicode.org/terms_of_use.html
Expand Down Expand Up @@ -1020,6 +1020,7 @@ jg ; Heh_Goal ; Heh_Goal
jg ; Heth ; Heth
jg ; Kaf ; Kaf
jg ; Kaph ; Kaph
jg ; Kashmiri_Yeh ; Kashmiri_Yeh
jg ; Khaph ; Khaph
jg ; Knotted_Heh ; Knotted_Heh
jg ; Lam ; Lam
Expand Down
11 changes: 8 additions & 3 deletions unicodetools/data/ucd/dev/extracted/DerivedJoiningGroup.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DerivedJoiningGroup-16.0.0.txt
# Date: 2024-04-30, 21:48:17 GMT
# Date: 2024-07-30, 21:15:55 GMT
# © 2024 Unicode®, Inc.
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
# For terms of use and license, see https://www.unicode.org/terms_of_use.html
Expand Down Expand Up @@ -377,7 +377,6 @@

# ================================================

0620 ; Yeh # Lo ARABIC LETTER KASHMIRI YEH
0626 ; Yeh # Lo ARABIC LETTER YEH WITH HAMZA ABOVE
0649..064A ; Yeh # Lo [2] ARABIC LETTER ALEF MAKSURA..ARABIC LETTER YEH
0678 ; Yeh # Lo ARABIC LETTER HIGH HAMZA YEH
Expand All @@ -386,7 +385,7 @@
08A8..08A9 ; Yeh # Lo [2] ARABIC LETTER YEH WITH TWO DOTS BELOW AND HAMZA ABOVE..ARABIC LETTER YEH WITH TWO DOTS BELOW AND DOT ABOVE
08BA ; Yeh # Lo ARABIC LETTER YEH WITH TWO DOTS BELOW AND SMALL NOON ABOVE

# Total code points: 11
# Total code points: 10

# ================================================

Expand Down Expand Up @@ -745,4 +744,10 @@

# Total code points: 1

# ================================================

0620 ; Kashmiri_Yeh # Lo ARABIC LETTER KASHMIRI YEH

# Total code points: 1

# EOF
Original file line number Diff line number Diff line change
Expand Up @@ -1281,6 +1281,7 @@ public enum Joining_Group_Values implements Named {
Heth("Heth"),
Kaf("Kaf"),
Kaph("Kaph"),
Kashmiri_Yeh("Kashmiri_Yeh"),
Khaph("Khaph"),
Knotted_Heh("Knotted_Heh"),
Lam("Lam"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1222,7 +1222,9 @@ public final class UCD_Names implements UCD_Types {
"Hanifi_Rohingya_Kinna_Ya",
// Unicode 14
"THIN_YEH",
"VERTICAL_TAIL"
"VERTICAL_TAIL",
// Unicode 16
"KASHMIRI_YEH"
};

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -777,8 +777,10 @@ public interface UCD_Types {
// Unicode 14
THIN_YEH = 103,
VERTICAL_TAIL = 104,
// Unicode 16
KASHMIRI_YEH = 105,
// limit
LIMIT_JOINING_GROUP = VERTICAL_TAIL + 1;
LIMIT_JOINING_GROUP = KASHMIRI_YEH + 1;
static final byte NFD = 0, NFC = 1, NFKD = 2, NFKC = 3;
public static final int NF_COMPATIBILITY_MASK = 2, NF_COMPOSITION_MASK = 1;

Expand Down
Loading