From aee746ee650e48ecedacac8fed72ea7b91c533c3 Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Sun, 4 Aug 2024 17:34:43 +0100 Subject: [PATCH 01/24] Myanmar: simplify reordering logic. --- opentype-shaping-myanmar.md | 103 +++++++++++++++--------------------- 1 file changed, 43 insertions(+), 60 deletions(-) diff --git a/opentype-shaping-myanmar.md b/opentype-shaping-myanmar.md index a7bd2b0..5029374 100644 --- a/opentype-shaping-myanmar.md +++ b/opentype-shaping-myanmar.md @@ -340,10 +340,10 @@ Processing a run of `` text involves five top-level stages: As with other Brahmi-derived and Indic scripts, the initial reordering -stage and the final reordering stage each involve applying a set of several -script-specific rules. The basic substitution features must be applied -to the run in a specific order. The remaining substitution features in -stage four, however, do not have a mandatory order. +stage involves applying a set of several script-specific rules. The +basic substitution features must be applied to the run in a specific +order. The remaining substitution features in stage four, however, do +not have a mandatory order. Myanmar exhibits many of the same shaping patterns found in Indic @@ -738,37 +738,28 @@ The algorithm for determining the base consonant is next consonant. - The consonant stopped at will be the base consonant. -> Note: The algorithm considers only `CONSONANT` class consonants, + -#### Stage 2, step 2: Tag matras #### +#### Stage 2, step 2: Kinzi #### -Second, all left-side dependent-vowel (matra) signs must be tagged to be -moved to the beginning of the syllable, with `POS_PREBASE_MATRA`. - -All right-side and above-base dependent-vowel (matra) -signs are tagged `POS_AFTER_SUBJOINED`. - -All below-base dependent-vowel (matra) signs are tagged -`POS_BELOWBASE_CONSONANT`. +Second, initial "Kinzi"-triggering sequences that will become "Kinzi"s +must be tagged with `POS_AFTER_MAIN`. -For simplicity, shaping engines may choose to tag matras -in an earlier text-processing step, using the information in the -_Mark-placement subclass_ column of the character tables. It is -critical at this step, however, that all matras correctly tagged -before proceeding to the next step. +The sequences are: -#### Stage 2, step 3: Anusvara #### + - "Ra,Asat,Halant" + - "Nga,Asat,Halant" + - "Mon Nga,Asat,Halant" -Third, any `ANUSVARA` marks appearing immediately after a below-base -vowel sign must be tagged with `POS_BEFORE_SUBJOINED`, so that the -marks are reordered to a position immediately before the below-base -vowel signs. +In the Myanmar (or Burmese) language, "Nga" is the only "Kinzi"-forming +consonant. "Mon Nga" can form a "Kinzi" in the Mon language, and "Ra" +can form a "Kinzi" in Sanskrit written with the Myanmar script. -#### Stage 2, step 4: Pre-base-reordering consonants #### +#### Stage 2, step 3: Pre-base-reordering consonants #### -Fourth, all pre-base-reordering consonants must be tagged with +Third, all pre-base-reordering consonants must be tagged with `POS_PREBASE_CONSONANT`. Myanmar has one pre-base-reordering consonant: "Medial Ra". @@ -780,54 +771,46 @@ Pre-base-reordering Medial Ra ::: -#### Stage 2, step 5: Kinzi #### +#### Stage 2, step 4: Pre-base matras #### -Fifth, initial "Kinzi"-triggering sequences that will become "Kinzi"s -must be tagged with `POS_AFTER_MAIN`. - -The sequences are: - - - "Ra,Asat,Halant" - - "Nga,Asat,Halant" - - "Mon Nga,Asat,Halant" +Fourth, all left-side dependent-vowel (matra) signs must be tagged to be +moved to the beginning of the syllable, with `POS_PREBASE_MATRA`. -In the Myanmar (or Burmese) language, "Nga" is the only "Kinzi"-forming -consonant. "Mon Nga" can form a "Kinzi" in the Mon language, and "Ra" -can form a "Kinzi" in Sanskrit written with the Myanmar script. +For simplicity, shaping engines may choose to tag matras +in an earlier text-processing step, using the information in the +_Mark-placement subclass_ column of the character tables. It is +critical at this step, however, that all matras correctly tagged +before proceeding to the next step. -#### Stage 2, step 6: Post-base consonants #### +#### Stage 2, step 5: Syllables without below-base matras #### -Sixth, any remaining non-base consonants that occur after the base -consonant must be tagged with `POS_AFTER_MAIN`. Full consonants (of -class `CONSONANT`) will be preceded by a "Halant" glyph. Medial -consonants (of class `CONSONANT_MEDIAL`) will not be preceded by a -"Halant" glyph. +Fifth, if the syllable contains no below-base dependent-vowel (matra) +signs, then all of the remaining codepoints can be tagged with +`POS_AFTER_MAIN`. -> Note: "Medial Ra" should have been tagged with -> `POS_PREBASE_CONSONANT` in stage 2, step four, and must not be -> re-tagged in this step. +#### Stage 2, step 6: Syllables with below-base-matras #### +Sixth, if the syllable contains any below-base dependent-vowel (matra) +signs, then those below-base matra signs must be tagged with +`POS_BELOWBASE_CONSONANT`. -#### Stage 2, step 7: Mark tagging #### +All of the codepoints that precede the below-base dependent-vowel +signs, but which were not already tagged in steps 1 through 4, must +now be tagged with `POS_AFTER_MAIN`. - +Any `ANUSVARA` marks that appear after the below-base dependent vowel +signs must be tagged wtih `POS_BEFORE_SUBJOINED`. -Seventh, all marks must be tagged with the same positioning tag as the -closest non-mark character the mark has affinity with, so that they move together -during the sorting step. +All remaining codepoints that appear after the below-base +dependent-vowel signs can be tagged with `POS_AFTER_SUBJOINED`. -For all marks preceding the base consonant, the mark must be tagged -with the same positioning tag as the closest preceding non-mark -consonant. -For all marks occurring after the base consonant, the mark must be -tagged with the same positioning tag as the closest subsequent consonant. +#### Stage 2, step 7: Variation selectors #### -> Note: In this step, joiner and non-joiner characters must also be -> tagged according to the same rules given for marks, even though -> these characters are not categorized as marks in Unicode. +Seventh, all Variation Selector codepoints must be tagged with the +same positioning tag as the immediately preceding character. With these steps completed, the syllable can be sorted into the final sort order. From a0d01af2b9b7f0e5484ae73abc521ac916deab05 Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Tue, 13 Aug 2024 17:07:36 +0100 Subject: [PATCH 02/24] Myanmar, minor: make references to pre-base and below-base matra signs explicitly point to regex classes. --- opentype-shaping-myanmar.md | 45 +++++++++++++++++++++++++++++-------- 1 file changed, 36 insertions(+), 9 deletions(-) diff --git a/opentype-shaping-myanmar.md b/opentype-shaping-myanmar.md index 5029374..c16d7d7 100644 --- a/opentype-shaping-myanmar.md +++ b/opentype-shaping-myanmar.md @@ -776,6 +776,10 @@ Pre-base-reordering Medial Ra Fourth, all left-side dependent-vowel (matra) signs must be tagged to be moved to the beginning of the syllable, with `POS_PREBASE_MATRA`. +All of the left-side dependent-vowel (matra) signs matching this +condition in Myanmar can be identified using the `_matrapre_` +regular-expression class defined in stage 1. + For simplicity, shaping engines may choose to tag matras in an earlier text-processing step, using the information in the _Mark-placement subclass_ column of the character tables. It is @@ -789,6 +793,17 @@ Fifth, if the syllable contains no below-base dependent-vowel (matra) signs, then all of the remaining codepoints can be tagged with `POS_AFTER_MAIN`. +> Note: Specifically, this condition means that the syllable must not +> contain any below-base dependent-vowel (matra) signs as identified +> using the `_matrabelow_` regular-expression class defined in +> stage 1. +> + +If the syllable contains no such below-base dependent-vowel (matra) +signs, then after tagging the remaining codepoints with +`POS_AFTER_MAIN`, the shaping engine can proceed immediately to stage +2, step 7. + #### Stage 2, step 6: Syllables with below-base-matras #### @@ -796,21 +811,33 @@ Sixth, if the syllable contains any below-base dependent-vowel (matra) signs, then those below-base matra signs must be tagged with `POS_BELOWBASE_CONSONANT`. -All of the codepoints that precede the below-base dependent-vowel -signs, but which were not already tagged in steps 1 through 4, must -now be tagged with `POS_AFTER_MAIN`. +All of the below-base dependent-vowel (matra) signs matching this +condition in Myanmar can be identified using the `_matrabelow_` +regular-expression class defined in stage 1. -Any `ANUSVARA` marks that appear after the below-base dependent vowel -signs must be tagged wtih `POS_BEFORE_SUBJOINED`. +In addition, all of the codepoints that precede the below-base +dependent-vowel signs in the syllable, but which were not already +tagged in steps 1 through 4, must now be tagged with +`POS_AFTER_MAIN`. + +In addition, any `ANUSVARA` marks that appear after the below-base +dependent vowel signs in the syllable must be tagged wtih +`POS_BEFORE_SUBJOINED`. -All remaining codepoints that appear after the below-base -dependent-vowel signs can be tagged with `POS_AFTER_SUBJOINED`. +Finally, all remaining codepoints that appear after the below-base +dependent-vowel signs in the syllable can be tagged with +`POS_AFTER_SUBJOINED`. #### Stage 2, step 7: Variation selectors #### -Seventh, all Variation Selector codepoints must be tagged with the -same positioning tag as the immediately preceding character. +Seventh, all "Variation Selector" codepoints must be +tagged with the same positioning tag as the immediately preceding +character. + +All of the codepoints matching this condition in Myanmar can be +identified using the `_vs_` regular-expression class defined in +stage 1. With these steps completed, the syllable can be sorted into the final sort order. From b7841be934eac88712718df3cec8ce07ae901ace Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Mon, 26 Aug 2024 17:28:40 +0100 Subject: [PATCH 03/24] Myanmar: fix regex classes and consonant-syllable expression. --- opentype-shaping-myanmar.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/opentype-shaping-myanmar.md b/opentype-shaping-myanmar.md index c16d7d7..2534816 100644 --- a/opentype-shaping-myanmar.md +++ b/opentype-shaping-myanmar.md @@ -530,7 +530,8 @@ _a_ = "Anusvara" | "Sign Ai" _db_ = "Dot Below" _zwj_ = `JOINER` _zwnj_ = `NON_JOINER` -_mh_ = "Medial Ha" | "Mon Medial La" +_mh_ = "Medial Ha" +_ml_ = "Mon Medial La" _mr_ = "Medial Ra" _mw_ = "Medial Wa" | "Shan Medial Wa" _my_ = "Medial Ya" | "Mon Medial Na" | "Mon Medial Ma" @@ -540,7 +541,8 @@ _pt_ = "Tone Sgaw Karen Hathi" | "Tone Sgaw Karen Ke Pho" | 2" | "Western Pwo Karen Tone 3" | "Western Pwo Karen Tone 4" | "Western Pwo Karen Tone 5" | "Pao Karen Tone" -_sm_ = "Visarga" | "Shan Tone 2" | "Shan Tone 3" | "Shan +_v_ = `VISARGA` +_sm_ = _v_ | "Shan Tone 2" | "Shan Tone 3" | "Shan Tone 5" | "Shan Tone 6" | "Shan Council Tone 2" | "Shan Council Tone 3" | "Shan Council Emphatic Tone" | "Rumai Palaung Tone 5" | "Khamti Tone 1" | "Khamti @@ -554,7 +556,6 @@ _gb_ = U+002D | U+00A0 | U+00D7 | U+2012 | U+2013 | U+2014 | U+2015 | U+2022 | U+25CC | U+25FB | U+25FC | U+25FD | U+25FE _cs_ = `CONSONANT_WITH_STACKER` -_v_ = `VISARGA` _vs_ = "Variation Selector" ``` @@ -594,11 +595,12 @@ expression elements: C = _consonant_ | _ra_ Z = _zwj_ | _zwnj_ K = _ra_ _asat_ _halant_ -Med = _my_? _mr_? _mw_? _mh_? _asat_? +G = _gb_ | _d_ | _punc_ +Med = _my_? _asat_? _mr_? ( (mw mh? ml? | mh ml? | ml) asat?)? Vmain = _matrapre_* _matraabove_* _matrabelow_* _a_* (_db_ _asat_?)? Vpost = _matrapost_ _mh_? _asat_* _matraabove_* _a_* (_db_ _asat_?)? Pwo = _pt_ _a_* _db_? _asat_? -Tcomplex= _asat_* Med Vmain Vpost* Pwo* _v_* Z? +Tcomplex= _asat_* Med Vmain Vpost* Pwo* _sm_* Z? Tail = _halant_ | Tcomplex ``` @@ -607,7 +609,7 @@ possible syllable types: A consonant-based syllable will match the expression: ```markdown -(K | _cs_)? (C | _vowel_ | _d_ | _gb_) _vs_? (_halant_ (C | _vowel_) _vs_?)* Tail +(K | _cs_)? (C | _vowel_ | G) _vs_? (_halant_ (C | _vowel_) _vs_?)* Tail ``` The expressions above use state-machine syntax from the Ragel From 9267da5c6eb75fec156f166d3408a0444124fe2e Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Mon, 23 Sep 2024 13:58:32 +0100 Subject: [PATCH 04/24] Images: Switch to NotoSerif for Malayalam --- images/malayalam/malayalam-half-after.svg | 10 ++++----- images/malayalam/malayalam-half-before.svg | 14 ++++++------ images/malayalam/malayalam-half.svg | 26 +++++++++++----------- images/malayalam/malayalam-haln-after.svg | 4 ++-- images/malayalam/malayalam-haln-before.svg | 14 ++++++------ images/malayalam/malayalam-haln.svg | 20 ++++++++--------- images/malayalam/malayalam-psts-after.svg | 4 ++-- images/malayalam/malayalam-psts-before.svg | 8 +++---- images/malayalam/malayalam-psts.svg | 14 ++++++------ 9 files changed, 57 insertions(+), 57 deletions(-) diff --git a/images/malayalam/malayalam-half-after.svg b/images/malayalam/malayalam-half-after.svg index 733fcff..90e447c 100644 --- a/images/malayalam/malayalam-half-after.svg +++ b/images/malayalam/malayalam-half-after.svg @@ -1,15 +1,15 @@ - + - + - + @@ -19,8 +19,8 @@ - - + + diff --git a/images/malayalam/malayalam-half-before.svg b/images/malayalam/malayalam-half-before.svg index d43c1c1..def9cd2 100644 --- a/images/malayalam/malayalam-half-before.svg +++ b/images/malayalam/malayalam-half-before.svg @@ -1,30 +1,30 @@ - + - + - + - + - - - + + + diff --git a/images/malayalam/malayalam-half.svg b/images/malayalam/malayalam-half.svg index ff871c5..514b5fa 100644 --- a/images/malayalam/malayalam-half.svg +++ b/images/malayalam/malayalam-half.svg @@ -2,22 +2,22 @@ - + - + - + - + @@ -33,10 +33,10 @@ - + - + @@ -46,23 +46,23 @@ - - - + + + - + - + - - + + diff --git a/images/malayalam/malayalam-haln-after.svg b/images/malayalam/malayalam-haln-after.svg index 0d47351..405c36e 100644 --- a/images/malayalam/malayalam-haln-after.svg +++ b/images/malayalam/malayalam-haln-after.svg @@ -1,12 +1,12 @@ - + - + diff --git a/images/malayalam/malayalam-haln-before.svg b/images/malayalam/malayalam-haln-before.svg index 6fc6dfe..d33317b 100644 --- a/images/malayalam/malayalam-haln-before.svg +++ b/images/malayalam/malayalam-haln-before.svg @@ -1,30 +1,30 @@ - + - + - + - + - - - + + + diff --git a/images/malayalam/malayalam-haln.svg b/images/malayalam/malayalam-haln.svg index ad947c9..f8d0176 100644 --- a/images/malayalam/malayalam-haln.svg +++ b/images/malayalam/malayalam-haln.svg @@ -2,22 +2,22 @@ - + - + - + - + @@ -33,26 +33,26 @@ - + - - - + + + - + - + diff --git a/images/malayalam/malayalam-psts-after.svg b/images/malayalam/malayalam-psts-after.svg index ce1c0df..b2eb15a 100644 --- a/images/malayalam/malayalam-psts-after.svg +++ b/images/malayalam/malayalam-psts-after.svg @@ -1,12 +1,12 @@ - + - + diff --git a/images/malayalam/malayalam-psts-before.svg b/images/malayalam/malayalam-psts-before.svg index 348cf7e..4c91d1a 100644 --- a/images/malayalam/malayalam-psts-before.svg +++ b/images/malayalam/malayalam-psts-before.svg @@ -1,22 +1,22 @@ - + - + - + - + diff --git a/images/malayalam/malayalam-psts.svg b/images/malayalam/malayalam-psts.svg index d0f9f39..1cdd2e7 100644 --- a/images/malayalam/malayalam-psts.svg +++ b/images/malayalam/malayalam-psts.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,24 +27,24 @@ - + - + - + - + From 12522002217a7e62d70307a75b8b12d98bf5cebf Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Mon, 23 Sep 2024 14:18:23 +0100 Subject: [PATCH 05/24] Images: Switch to NotoSerif for Myanmar --- images/myanmar/myanmar-abvm-after.svg | 10 ++--- images/myanmar/myanmar-abvm-before.svg | 10 ++--- images/myanmar/myanmar-abvm.svg | 22 +++++------ images/myanmar/myanmar-abvs-after.svg | 10 ++--- images/myanmar/myanmar-abvs-before.svg | 14 +++---- images/myanmar/myanmar-abvs.svg | 26 ++++++------- images/myanmar/myanmar-blwf-after.svg | 10 ++--- images/myanmar/myanmar-blwf-before.svg | 14 +++---- images/myanmar/myanmar-blwf.svg | 26 ++++++------- images/myanmar/myanmar-blwm-after.svg | 10 ++--- images/myanmar/myanmar-blwm-before.svg | 10 ++--- images/myanmar/myanmar-blwm.svg | 22 +++++------ images/myanmar/myanmar-blws-after.svg | 14 +++---- images/myanmar/myanmar-blws-before.svg | 14 +++---- images/myanmar/myanmar-blws.svg | 30 +++++++-------- images/myanmar/myanmar-dist-after.svg | 18 ++++----- images/myanmar/myanmar-dist-before.svg | 18 ++++----- images/myanmar/myanmar-dist.svg | 38 +++++++++---------- images/myanmar/myanmar-kinzi-monnga-after.svg | 10 ++--- .../myanmar/myanmar-kinzi-monnga-before.svg | 24 ++++++------ images/myanmar/myanmar-kinzi-monnga.svg | 36 +++++++++--------- images/myanmar/myanmar-kinzi-nga-after.svg | 10 ++--- images/myanmar/myanmar-kinzi-nga-before.svg | 24 ++++++------ images/myanmar/myanmar-kinzi-nga.svg | 36 +++++++++--------- images/myanmar/myanmar-kinzi-ra-after.svg | 10 ++--- images/myanmar/myanmar-kinzi-ra-before.svg | 24 ++++++------ images/myanmar/myanmar-kinzi-ra.svg | 36 +++++++++--------- images/myanmar/myanmar-liga-after.svg | 10 ++--- images/myanmar/myanmar-liga-before.svg | 18 ++++----- images/myanmar/myanmar-liga.svg | 30 +++++++-------- images/myanmar/myanmar-locl-after.svg | 10 ++--- images/myanmar/myanmar-locl-before.svg | 10 ++--- images/myanmar/myanmar-locl.svg | 22 +++++------ images/myanmar/myanmar-mark-after.svg | 10 ++--- images/myanmar/myanmar-mark-before.svg | 10 ++--- images/myanmar/myanmar-mark.svg | 22 +++++------ images/myanmar/myanmar-medial-ra-after.svg | 10 ++--- images/myanmar/myanmar-medial-ra-before.svg | 16 ++++---- images/myanmar/myanmar-medial-ra.svg | 28 +++++++------- images/myanmar/myanmar-mkmk-after.svg | 14 +++---- images/myanmar/myanmar-mkmk-before.svg | 14 +++---- images/myanmar/myanmar-mkmk.svg | 30 +++++++-------- images/myanmar/myanmar-pref-after.svg | 10 ++--- images/myanmar/myanmar-pref-before.svg | 14 +++---- images/myanmar/myanmar-pref.svg | 26 ++++++------- images/myanmar/myanmar-pres-after.svg | 10 ++--- images/myanmar/myanmar-pres-before.svg | 10 ++--- images/myanmar/myanmar-pres.svg | 22 +++++------ images/myanmar/myanmar-pstf-after.svg | 10 ++--- images/myanmar/myanmar-pstf-before.svg | 10 ++--- images/myanmar/myanmar-pstf.svg | 22 +++++------ images/myanmar/myanmar-psts-after.svg | 10 ++--- images/myanmar/myanmar-psts-before.svg | 10 ++--- images/myanmar/myanmar-psts.svg | 22 +++++------ 54 files changed, 478 insertions(+), 478 deletions(-) diff --git a/images/myanmar/myanmar-abvm-after.svg b/images/myanmar/myanmar-abvm-after.svg index 5b2336b..a1babac 100644 --- a/images/myanmar/myanmar-abvm-after.svg +++ b/images/myanmar/myanmar-abvm-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-abvm-before.svg b/images/myanmar/myanmar-abvm-before.svg index bc36924..c7456fd 100644 --- a/images/myanmar/myanmar-abvm-before.svg +++ b/images/myanmar/myanmar-abvm-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-abvm.svg b/images/myanmar/myanmar-abvm.svg index 8665f14..9591194 100644 --- a/images/myanmar/myanmar-abvm.svg +++ b/images/myanmar/myanmar-abvm.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - - + + - + - + - - + + diff --git a/images/myanmar/myanmar-abvs-after.svg b/images/myanmar/myanmar-abvs-after.svg index 6516e72..7145fd9 100644 --- a/images/myanmar/myanmar-abvs-after.svg +++ b/images/myanmar/myanmar-abvs-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-abvs-before.svg b/images/myanmar/myanmar-abvs-before.svg index 39dfba2..ea388c2 100644 --- a/images/myanmar/myanmar-abvs-before.svg +++ b/images/myanmar/myanmar-abvs-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/myanmar/myanmar-abvs.svg b/images/myanmar/myanmar-abvs.svg index 8883f23..3f1c831 100644 --- a/images/myanmar/myanmar-abvs.svg +++ b/images/myanmar/myanmar-abvs.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -30,31 +30,31 @@ - + - + - - - + + + - + - + - - + + diff --git a/images/myanmar/myanmar-blwf-after.svg b/images/myanmar/myanmar-blwf-after.svg index ad0f91b..5fddb42 100644 --- a/images/myanmar/myanmar-blwf-after.svg +++ b/images/myanmar/myanmar-blwf-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-blwf-before.svg b/images/myanmar/myanmar-blwf-before.svg index f8a79f4..1ff8e7c 100644 --- a/images/myanmar/myanmar-blwf-before.svg +++ b/images/myanmar/myanmar-blwf-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/myanmar/myanmar-blwf.svg b/images/myanmar/myanmar-blwf.svg index 95b7128..dc7d409 100644 --- a/images/myanmar/myanmar-blwf.svg +++ b/images/myanmar/myanmar-blwf.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -30,31 +30,31 @@ - + - + - - - + + + - + - + - - + + diff --git a/images/myanmar/myanmar-blwm-after.svg b/images/myanmar/myanmar-blwm-after.svg index 844e55b..6f6f6c2 100644 --- a/images/myanmar/myanmar-blwm-after.svg +++ b/images/myanmar/myanmar-blwm-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-blwm-before.svg b/images/myanmar/myanmar-blwm-before.svg index 3d64a30..6f6f6c2 100644 --- a/images/myanmar/myanmar-blwm-before.svg +++ b/images/myanmar/myanmar-blwm-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-blwm.svg b/images/myanmar/myanmar-blwm.svg index 2efeaf0..439a291 100644 --- a/images/myanmar/myanmar-blwm.svg +++ b/images/myanmar/myanmar-blwm.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - - + + - + - + - - + + diff --git a/images/myanmar/myanmar-blws-after.svg b/images/myanmar/myanmar-blws-after.svg index b97f67d..349421b 100644 --- a/images/myanmar/myanmar-blws-after.svg +++ b/images/myanmar/myanmar-blws-after.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/myanmar/myanmar-blws-before.svg b/images/myanmar/myanmar-blws-before.svg index 44290c8..349421b 100644 --- a/images/myanmar/myanmar-blws-before.svg +++ b/images/myanmar/myanmar-blws-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/myanmar/myanmar-blws.svg b/images/myanmar/myanmar-blws.svg index 5826120..e1311c3 100644 --- a/images/myanmar/myanmar-blws.svg +++ b/images/myanmar/myanmar-blws.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -30,35 +30,35 @@ - + - + - + - - - + + + - + - + - - - + + + diff --git a/images/myanmar/myanmar-dist-after.svg b/images/myanmar/myanmar-dist-after.svg index 52995b0..ec2aa27 100644 --- a/images/myanmar/myanmar-dist-after.svg +++ b/images/myanmar/myanmar-dist-after.svg @@ -1,30 +1,30 @@ - + - + - + - + - + - - - - + + + + diff --git a/images/myanmar/myanmar-dist-before.svg b/images/myanmar/myanmar-dist-before.svg index 5b367ed..ec2aa27 100644 --- a/images/myanmar/myanmar-dist-before.svg +++ b/images/myanmar/myanmar-dist-before.svg @@ -1,30 +1,30 @@ - + - + - + - + - + - - - - + + + + diff --git a/images/myanmar/myanmar-dist.svg b/images/myanmar/myanmar-dist.svg index 5b81800..dd5b50a 100644 --- a/images/myanmar/myanmar-dist.svg +++ b/images/myanmar/myanmar-dist.svg @@ -2,22 +2,22 @@ - + - + - + - + - + @@ -33,40 +33,40 @@ - + - + - + - + - - - - + + + + - + - + - - - - + + + + diff --git a/images/myanmar/myanmar-kinzi-monnga-after.svg b/images/myanmar/myanmar-kinzi-monnga-after.svg index 06bd012..259f595 100644 --- a/images/myanmar/myanmar-kinzi-monnga-after.svg +++ b/images/myanmar/myanmar-kinzi-monnga-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-kinzi-monnga-before.svg b/images/myanmar/myanmar-kinzi-monnga-before.svg index adf912f..5e9b3f6 100644 --- a/images/myanmar/myanmar-kinzi-monnga-before.svg +++ b/images/myanmar/myanmar-kinzi-monnga-before.svg @@ -1,36 +1,36 @@ - + - + - + - + - + - - - - - - - + + + + + + + diff --git a/images/myanmar/myanmar-kinzi-monnga.svg b/images/myanmar/myanmar-kinzi-monnga.svg index 929dc69..e13494f 100644 --- a/images/myanmar/myanmar-kinzi-monnga.svg +++ b/images/myanmar/myanmar-kinzi-monnga.svg @@ -2,25 +2,25 @@ - + - + - + - + - + @@ -36,35 +36,35 @@ - + - + - - - - - - - + + + + + + + - + - + - - + + diff --git a/images/myanmar/myanmar-kinzi-nga-after.svg b/images/myanmar/myanmar-kinzi-nga-after.svg index 06bd012..259f595 100644 --- a/images/myanmar/myanmar-kinzi-nga-after.svg +++ b/images/myanmar/myanmar-kinzi-nga-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-kinzi-nga-before.svg b/images/myanmar/myanmar-kinzi-nga-before.svg index d605af0..2dcae03 100644 --- a/images/myanmar/myanmar-kinzi-nga-before.svg +++ b/images/myanmar/myanmar-kinzi-nga-before.svg @@ -1,36 +1,36 @@ - + - + - + - + - + - - - - - - - + + + + + + + diff --git a/images/myanmar/myanmar-kinzi-nga.svg b/images/myanmar/myanmar-kinzi-nga.svg index 72f71ac..bec4043 100644 --- a/images/myanmar/myanmar-kinzi-nga.svg +++ b/images/myanmar/myanmar-kinzi-nga.svg @@ -2,25 +2,25 @@ - + - + - + - + - + @@ -36,35 +36,35 @@ - + - + - - - - - - - + + + + + + + - + - + - - + + diff --git a/images/myanmar/myanmar-kinzi-ra-after.svg b/images/myanmar/myanmar-kinzi-ra-after.svg index 7776dec..bf3f787 100644 --- a/images/myanmar/myanmar-kinzi-ra-after.svg +++ b/images/myanmar/myanmar-kinzi-ra-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-kinzi-ra-before.svg b/images/myanmar/myanmar-kinzi-ra-before.svg index ff76810..88b1348 100644 --- a/images/myanmar/myanmar-kinzi-ra-before.svg +++ b/images/myanmar/myanmar-kinzi-ra-before.svg @@ -1,36 +1,36 @@ - + - + - + - + - + - - - - - - - + + + + + + + diff --git a/images/myanmar/myanmar-kinzi-ra.svg b/images/myanmar/myanmar-kinzi-ra.svg index d236900..8ace7c9 100644 --- a/images/myanmar/myanmar-kinzi-ra.svg +++ b/images/myanmar/myanmar-kinzi-ra.svg @@ -2,25 +2,25 @@ - + - + - + - + - + @@ -36,35 +36,35 @@ - + - + - - - - - - - + + + + + + + - + - + - - + + diff --git a/images/myanmar/myanmar-liga-after.svg b/images/myanmar/myanmar-liga-after.svg index 7cb9bad..e60215b 100644 --- a/images/myanmar/myanmar-liga-after.svg +++ b/images/myanmar/myanmar-liga-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-liga-before.svg b/images/myanmar/myanmar-liga-before.svg index 47de986..a7cef2b 100644 --- a/images/myanmar/myanmar-liga-before.svg +++ b/images/myanmar/myanmar-liga-before.svg @@ -1,30 +1,30 @@ - + - + - + - + - + - - - - + + + + diff --git a/images/myanmar/myanmar-liga.svg b/images/myanmar/myanmar-liga.svg index 9bdab28..8f35e41 100644 --- a/images/myanmar/myanmar-liga.svg +++ b/images/myanmar/myanmar-liga.svg @@ -2,22 +2,22 @@ - + - + - + - + - + @@ -33,32 +33,32 @@ - + - + - - - - + + + + - + - + - - + + diff --git a/images/myanmar/myanmar-locl-after.svg b/images/myanmar/myanmar-locl-after.svg index a14aaa3..2a74233 100644 --- a/images/myanmar/myanmar-locl-after.svg +++ b/images/myanmar/myanmar-locl-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-locl-before.svg b/images/myanmar/myanmar-locl-before.svg index 6c300c2..5e18267 100644 --- a/images/myanmar/myanmar-locl-before.svg +++ b/images/myanmar/myanmar-locl-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-locl.svg b/images/myanmar/myanmar-locl.svg index 3d52704..a8a3ffa 100644 --- a/images/myanmar/myanmar-locl.svg +++ b/images/myanmar/myanmar-locl.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - - + + - + - + - - + + diff --git a/images/myanmar/myanmar-mark-after.svg b/images/myanmar/myanmar-mark-after.svg index f601499..0333cac 100644 --- a/images/myanmar/myanmar-mark-after.svg +++ b/images/myanmar/myanmar-mark-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-mark-before.svg b/images/myanmar/myanmar-mark-before.svg index 25153e1..534ce14 100644 --- a/images/myanmar/myanmar-mark-before.svg +++ b/images/myanmar/myanmar-mark-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-mark.svg b/images/myanmar/myanmar-mark.svg index 5dad651..3c6c0ec 100644 --- a/images/myanmar/myanmar-mark.svg +++ b/images/myanmar/myanmar-mark.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - - + + - + - + - - + + diff --git a/images/myanmar/myanmar-medial-ra-after.svg b/images/myanmar/myanmar-medial-ra-after.svg index 6e0661c..4fd72b5 100644 --- a/images/myanmar/myanmar-medial-ra-after.svg +++ b/images/myanmar/myanmar-medial-ra-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-medial-ra-before.svg b/images/myanmar/myanmar-medial-ra-before.svg index 9f9389a..8e98817 100644 --- a/images/myanmar/myanmar-medial-ra-before.svg +++ b/images/myanmar/myanmar-medial-ra-before.svg @@ -1,30 +1,30 @@ - + - + - + - + - - - - + + + + diff --git a/images/myanmar/myanmar-medial-ra.svg b/images/myanmar/myanmar-medial-ra.svg index 849f01b..f0f5855 100644 --- a/images/myanmar/myanmar-medial-ra.svg +++ b/images/myanmar/myanmar-medial-ra.svg @@ -2,22 +2,22 @@ - + - + - + - + @@ -33,32 +33,32 @@ - + - + - - - - + + + + - + - + - - + + diff --git a/images/myanmar/myanmar-mkmk-after.svg b/images/myanmar/myanmar-mkmk-after.svg index 4322135..3cf254c 100644 --- a/images/myanmar/myanmar-mkmk-after.svg +++ b/images/myanmar/myanmar-mkmk-after.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/myanmar/myanmar-mkmk-before.svg b/images/myanmar/myanmar-mkmk-before.svg index e25f0f4..e685317 100644 --- a/images/myanmar/myanmar-mkmk-before.svg +++ b/images/myanmar/myanmar-mkmk-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/myanmar/myanmar-mkmk.svg b/images/myanmar/myanmar-mkmk.svg index b016fe3..e5e285b 100644 --- a/images/myanmar/myanmar-mkmk.svg +++ b/images/myanmar/myanmar-mkmk.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -30,35 +30,35 @@ - + - + - + - - - + + + - + - + - - - + + + diff --git a/images/myanmar/myanmar-pref-after.svg b/images/myanmar/myanmar-pref-after.svg index dde53e6..a2e98c5 100644 --- a/images/myanmar/myanmar-pref-after.svg +++ b/images/myanmar/myanmar-pref-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-pref-before.svg b/images/myanmar/myanmar-pref-before.svg index 232a31d..b98b47d 100644 --- a/images/myanmar/myanmar-pref-before.svg +++ b/images/myanmar/myanmar-pref-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/myanmar/myanmar-pref.svg b/images/myanmar/myanmar-pref.svg index 4a40a48..647b595 100644 --- a/images/myanmar/myanmar-pref.svg +++ b/images/myanmar/myanmar-pref.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -30,31 +30,31 @@ - + - + - - - + + + - + - + - - + + diff --git a/images/myanmar/myanmar-pres-after.svg b/images/myanmar/myanmar-pres-after.svg index 1b9fb8a..e03b0a0 100644 --- a/images/myanmar/myanmar-pres-after.svg +++ b/images/myanmar/myanmar-pres-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-pres-before.svg b/images/myanmar/myanmar-pres-before.svg index 0c81162..ce02888 100644 --- a/images/myanmar/myanmar-pres-before.svg +++ b/images/myanmar/myanmar-pres-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-pres.svg b/images/myanmar/myanmar-pres.svg index faad0cc..3b912f5 100644 --- a/images/myanmar/myanmar-pres.svg +++ b/images/myanmar/myanmar-pres.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - - + + - + - + - - + + diff --git a/images/myanmar/myanmar-pstf-after.svg b/images/myanmar/myanmar-pstf-after.svg index 5b4da9c..3d31d55 100644 --- a/images/myanmar/myanmar-pstf-after.svg +++ b/images/myanmar/myanmar-pstf-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-pstf-before.svg b/images/myanmar/myanmar-pstf-before.svg index b190fcc..04ad267 100644 --- a/images/myanmar/myanmar-pstf-before.svg +++ b/images/myanmar/myanmar-pstf-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-pstf.svg b/images/myanmar/myanmar-pstf.svg index 80ac7a6..16ec7ef 100644 --- a/images/myanmar/myanmar-pstf.svg +++ b/images/myanmar/myanmar-pstf.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - - + + - + - + - - + + diff --git a/images/myanmar/myanmar-psts-after.svg b/images/myanmar/myanmar-psts-after.svg index 34f5b54..aa1fd56 100644 --- a/images/myanmar/myanmar-psts-after.svg +++ b/images/myanmar/myanmar-psts-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-psts-before.svg b/images/myanmar/myanmar-psts-before.svg index 190620c..ac486b3 100644 --- a/images/myanmar/myanmar-psts-before.svg +++ b/images/myanmar/myanmar-psts-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/myanmar/myanmar-psts.svg b/images/myanmar/myanmar-psts.svg index 46b50da..12ae2f4 100644 --- a/images/myanmar/myanmar-psts.svg +++ b/images/myanmar/myanmar-psts.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - - + + - + - + - - + + From 0c64ea2010eb353c433ba1e2250b5640e4d24c3d Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Mon, 23 Sep 2024 14:30:38 +0100 Subject: [PATCH 06/24] Images: Switch to NotoSerif for Hangul. Still need to debug some changed behavior, but might as well change to serif font first. --- images/hangul/hangul-compose-after.svg | 6 ++-- images/hangul/hangul-compose-before.svg | 18 +++++------ images/hangul/hangul-compose.svg | 26 ++++++++-------- images/hangul/hangul-decompose-after.svg | 18 +++++------ images/hangul/hangul-decompose-before.svg | 6 ++-- images/hangul/hangul-decompose.svg | 26 ++++++++-------- images/hangul/hangul-ljmo-after.svg | 18 +++++------ images/hangul/hangul-ljmo-before.svg | 18 +++++------ images/hangul/hangul-ljmo.svg | 38 +++++++++++------------ images/hangul/hangul-lv-syllable.svg | 6 ++-- images/hangul/hangul-lvt-syllable.svg | 10 +++--- images/hangul/hangul-tjmo-after.svg | 18 +++++------ images/hangul/hangul-tjmo-before.svg | 16 +++++----- images/hangul/hangul-tjmo.svg | 36 ++++++++++----------- images/hangul/hangul-tone-after.svg | 10 +++--- images/hangul/hangul-tone-before.svg | 16 +++++----- images/hangul/hangul-vjmo-after.svg | 16 +++++----- images/hangul/hangul-vjmo-before.svg | 18 +++++------ images/hangul/hangul-vjmo.svg | 36 ++++++++++----------- 19 files changed, 178 insertions(+), 178 deletions(-) diff --git a/images/hangul/hangul-compose-after.svg b/images/hangul/hangul-compose-after.svg index 5ec0fc7..c221f91 100644 --- a/images/hangul/hangul-compose-after.svg +++ b/images/hangul/hangul-compose-after.svg @@ -1,18 +1,18 @@ - + - + - + diff --git a/images/hangul/hangul-compose-before.svg b/images/hangul/hangul-compose-before.svg index c066d66..807c663 100644 --- a/images/hangul/hangul-compose-before.svg +++ b/images/hangul/hangul-compose-before.svg @@ -1,31 +1,31 @@ - + - + - + - + - - - - - + + + + + diff --git a/images/hangul/hangul-compose.svg b/images/hangul/hangul-compose.svg index cf3dc18..1973f8c 100644 --- a/images/hangul/hangul-compose.svg +++ b/images/hangul/hangul-compose.svg @@ -2,22 +2,22 @@ - + - + - + - + @@ -33,29 +33,29 @@ - + - - - - - + + + + + - + - + - + diff --git a/images/hangul/hangul-decompose-after.svg b/images/hangul/hangul-decompose-after.svg index 224249e..e109f89 100644 --- a/images/hangul/hangul-decompose-after.svg +++ b/images/hangul/hangul-decompose-after.svg @@ -1,31 +1,31 @@ - + - + - + - + - - - - - + + + + + diff --git a/images/hangul/hangul-decompose-before.svg b/images/hangul/hangul-decompose-before.svg index 3c1aa20..07d2197 100644 --- a/images/hangul/hangul-decompose-before.svg +++ b/images/hangul/hangul-decompose-before.svg @@ -1,18 +1,18 @@ - + - + - + diff --git a/images/hangul/hangul-decompose.svg b/images/hangul/hangul-decompose.svg index da71a28..7fb879d 100644 --- a/images/hangul/hangul-decompose.svg +++ b/images/hangul/hangul-decompose.svg @@ -2,13 +2,13 @@ - + - + @@ -24,38 +24,38 @@ - + - + - + - + - + - + - - - - - + + + + + diff --git a/images/hangul/hangul-ljmo-after.svg b/images/hangul/hangul-ljmo-after.svg index eb7897f..102357e 100644 --- a/images/hangul/hangul-ljmo-after.svg +++ b/images/hangul/hangul-ljmo-after.svg @@ -1,31 +1,31 @@ - + - + - + - + - - - - - + + + + + diff --git a/images/hangul/hangul-ljmo-before.svg b/images/hangul/hangul-ljmo-before.svg index c4f8ed7..5b4122a 100644 --- a/images/hangul/hangul-ljmo-before.svg +++ b/images/hangul/hangul-ljmo-before.svg @@ -1,31 +1,31 @@ - + - + - + - + - - - - - + + + + + diff --git a/images/hangul/hangul-ljmo.svg b/images/hangul/hangul-ljmo.svg index 2732783..0978eeb 100644 --- a/images/hangul/hangul-ljmo.svg +++ b/images/hangul/hangul-ljmo.svg @@ -2,22 +2,22 @@ - + - + - + - + @@ -33,42 +33,42 @@ - + - + - + - - - - - + + + + + - + - + - - - - - + + + + + diff --git a/images/hangul/hangul-lv-syllable.svg b/images/hangul/hangul-lv-syllable.svg index 69c8183..7e12648 100644 --- a/images/hangul/hangul-lv-syllable.svg +++ b/images/hangul/hangul-lv-syllable.svg @@ -1,18 +1,18 @@ - + - + - + diff --git a/images/hangul/hangul-lvt-syllable.svg b/images/hangul/hangul-lvt-syllable.svg index 34bfcee..07076d8 100644 --- a/images/hangul/hangul-lvt-syllable.svg +++ b/images/hangul/hangul-lvt-syllable.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hangul/hangul-tjmo-after.svg b/images/hangul/hangul-tjmo-after.svg index b4adb05..cdd2397 100644 --- a/images/hangul/hangul-tjmo-after.svg +++ b/images/hangul/hangul-tjmo-after.svg @@ -1,31 +1,31 @@ - + - + - + - + - - - - - + + + + + diff --git a/images/hangul/hangul-tjmo-before.svg b/images/hangul/hangul-tjmo-before.svg index 71f48b9..ff910c4 100644 --- a/images/hangul/hangul-tjmo-before.svg +++ b/images/hangul/hangul-tjmo-before.svg @@ -1,18 +1,18 @@ - + - + - + @@ -21,11 +21,11 @@ - - - - - + + + + + diff --git a/images/hangul/hangul-tjmo.svg b/images/hangul/hangul-tjmo.svg index 54c3b38..8da5d71 100644 --- a/images/hangul/hangul-tjmo.svg +++ b/images/hangul/hangul-tjmo.svg @@ -2,19 +2,19 @@ - + - + - + @@ -33,42 +33,42 @@ - + - + - + - - - - - + + + + + - + - + - - - - - + + + + + diff --git a/images/hangul/hangul-tone-after.svg b/images/hangul/hangul-tone-after.svg index 80d4cd9..40086f8 100644 --- a/images/hangul/hangul-tone-after.svg +++ b/images/hangul/hangul-tone-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hangul/hangul-tone-before.svg b/images/hangul/hangul-tone-before.svg index 2ad09cb..a052a2a 100644 --- a/images/hangul/hangul-tone-before.svg +++ b/images/hangul/hangul-tone-before.svg @@ -1,30 +1,30 @@ - + - + - + - + - - - - + + + + diff --git a/images/hangul/hangul-vjmo-after.svg b/images/hangul/hangul-vjmo-after.svg index 71f48b9..ff910c4 100644 --- a/images/hangul/hangul-vjmo-after.svg +++ b/images/hangul/hangul-vjmo-after.svg @@ -1,18 +1,18 @@ - + - + - + @@ -21,11 +21,11 @@ - - - - - + + + + + diff --git a/images/hangul/hangul-vjmo-before.svg b/images/hangul/hangul-vjmo-before.svg index eb7897f..102357e 100644 --- a/images/hangul/hangul-vjmo-before.svg +++ b/images/hangul/hangul-vjmo-before.svg @@ -1,31 +1,31 @@ - + - + - + - + - - - - - + + + + + diff --git a/images/hangul/hangul-vjmo.svg b/images/hangul/hangul-vjmo.svg index ca94164..3a42517 100644 --- a/images/hangul/hangul-vjmo.svg +++ b/images/hangul/hangul-vjmo.svg @@ -2,22 +2,22 @@ - + - + - + - + @@ -33,13 +33,13 @@ - + - + @@ -48,27 +48,27 @@ - - - - - + + + + + - + - + - - - - - + + + + + From da8622d68c7c03da67773db4fd4091bb07e05821 Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Mon, 23 Sep 2024 14:37:09 +0100 Subject: [PATCH 07/24] Images: Switch to NotoSerif for Hebrew. --- images/hebrew/hebrew-apf-after.svg | 10 +++++----- images/hebrew/hebrew-apf-before.svg | 10 +++++----- images/hebrew/hebrew-apf.svg | 24 ++++++++++++------------ images/hebrew/hebrew-ccmp-after.svg | 10 +++++----- images/hebrew/hebrew-ccmp-before.svg | 10 +++++----- images/hebrew/hebrew-ccmp.svg | 20 ++++++++++---------- images/hebrew/hebrew-dlig-after.svg | 6 +++--- images/hebrew/hebrew-dlig-before.svg | 10 +++++----- images/hebrew/hebrew-dlig.svg | 20 ++++++++++---------- images/hebrew/hebrew-liga-after.svg | 10 +++++----- images/hebrew/hebrew-liga-before.svg | 10 +++++----- images/hebrew/hebrew-liga.svg | 24 ++++++++++++------------ images/hebrew/hebrew-mark-after.svg | 10 +++++----- images/hebrew/hebrew-mark-before.svg | 10 +++++----- images/hebrew/hebrew-mark.svg | 24 ++++++++++++------------ 15 files changed, 104 insertions(+), 104 deletions(-) diff --git a/images/hebrew/hebrew-apf-after.svg b/images/hebrew/hebrew-apf-after.svg index 3481692..47b1c93 100644 --- a/images/hebrew/hebrew-apf-after.svg +++ b/images/hebrew/hebrew-apf-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hebrew/hebrew-apf-before.svg b/images/hebrew/hebrew-apf-before.svg index 3481692..47b1c93 100644 --- a/images/hebrew/hebrew-apf-before.svg +++ b/images/hebrew/hebrew-apf-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hebrew/hebrew-apf.svg b/images/hebrew/hebrew-apf.svg index 8dd1f10..6400748 100644 --- a/images/hebrew/hebrew-apf.svg +++ b/images/hebrew/hebrew-apf.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - + - - + + - + - + - - + + diff --git a/images/hebrew/hebrew-ccmp-after.svg b/images/hebrew/hebrew-ccmp-after.svg index 0002d46..f95da75 100644 --- a/images/hebrew/hebrew-ccmp-after.svg +++ b/images/hebrew/hebrew-ccmp-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hebrew/hebrew-ccmp-before.svg b/images/hebrew/hebrew-ccmp-before.svg index 8b5687f..5e10e09 100644 --- a/images/hebrew/hebrew-ccmp-before.svg +++ b/images/hebrew/hebrew-ccmp-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hebrew/hebrew-ccmp.svg b/images/hebrew/hebrew-ccmp.svg index a10cbd2..9903ec7 100644 --- a/images/hebrew/hebrew-ccmp.svg +++ b/images/hebrew/hebrew-ccmp.svg @@ -8,10 +8,10 @@ - + - + @@ -27,17 +27,17 @@ - + - + - + - - + + @@ -47,10 +47,10 @@ - + - - + + diff --git a/images/hebrew/hebrew-dlig-after.svg b/images/hebrew/hebrew-dlig-after.svg index 636893e..45fdf9c 100644 --- a/images/hebrew/hebrew-dlig-after.svg +++ b/images/hebrew/hebrew-dlig-after.svg @@ -1,18 +1,18 @@ - + - + - + diff --git a/images/hebrew/hebrew-dlig-before.svg b/images/hebrew/hebrew-dlig-before.svg index 8d797e7..3b9215d 100644 --- a/images/hebrew/hebrew-dlig-before.svg +++ b/images/hebrew/hebrew-dlig-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hebrew/hebrew-dlig.svg b/images/hebrew/hebrew-dlig.svg index 9955bd5..94d7c8a 100644 --- a/images/hebrew/hebrew-dlig.svg +++ b/images/hebrew/hebrew-dlig.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,26 +27,26 @@ - + - + - - + + - + - + - + diff --git a/images/hebrew/hebrew-liga-after.svg b/images/hebrew/hebrew-liga-after.svg index b24e638..0204116 100644 --- a/images/hebrew/hebrew-liga-after.svg +++ b/images/hebrew/hebrew-liga-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hebrew/hebrew-liga-before.svg b/images/hebrew/hebrew-liga-before.svg index 445230f..77b81dd 100644 --- a/images/hebrew/hebrew-liga-before.svg +++ b/images/hebrew/hebrew-liga-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hebrew/hebrew-liga.svg b/images/hebrew/hebrew-liga.svg index 254e7a4..7e05695 100644 --- a/images/hebrew/hebrew-liga.svg +++ b/images/hebrew/hebrew-liga.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - + - - + + - + - + - - + + diff --git a/images/hebrew/hebrew-mark-after.svg b/images/hebrew/hebrew-mark-after.svg index 1492826..bce8ce4 100644 --- a/images/hebrew/hebrew-mark-after.svg +++ b/images/hebrew/hebrew-mark-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hebrew/hebrew-mark-before.svg b/images/hebrew/hebrew-mark-before.svg index c737dad..12be264 100644 --- a/images/hebrew/hebrew-mark-before.svg +++ b/images/hebrew/hebrew-mark-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hebrew/hebrew-mark.svg b/images/hebrew/hebrew-mark.svg index 6b5e37b..82d3e36 100644 --- a/images/hebrew/hebrew-mark.svg +++ b/images/hebrew/hebrew-mark.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - + - - + + - + - + - - + + From 40ec3dd9715847fb53fa4ad580271830b36730fa Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Sat, 28 Sep 2024 15:44:46 +0100 Subject: [PATCH 08/24] Images: switch to Noto Serif for Gurmukhi. --- images/gurmukhi/gurmukhi-abvm-after.svg | 10 ++-- images/gurmukhi/gurmukhi-abvm-before.svg | 10 ++-- images/gurmukhi/gurmukhi-abvm.svg | 24 ++++---- images/gurmukhi/gurmukhi-abvs-after.svg | 6 +- images/gurmukhi/gurmukhi-abvs-before.svg | 10 ++-- images/gurmukhi/gurmukhi-abvs.svg | 20 +++---- images/gurmukhi/gurmukhi-blwf-ha-after.svg | 10 ++-- images/gurmukhi/gurmukhi-blwf-ha-before.svg | 14 ++--- images/gurmukhi/gurmukhi-blwf-ha.svg | 28 ++++----- images/gurmukhi/gurmukhi-blwf-ra-after.svg | 10 ++-- images/gurmukhi/gurmukhi-blwf-ra-before.svg | 14 ++--- images/gurmukhi/gurmukhi-blwf-ra.svg | 28 ++++----- images/gurmukhi/gurmukhi-blwf-va-after.svg | 10 ++-- images/gurmukhi/gurmukhi-blwf-va-before.svg | 14 ++--- images/gurmukhi/gurmukhi-blwf-va.svg | 28 ++++----- images/gurmukhi/gurmukhi-blwm-after.svg | 10 ++-- images/gurmukhi/gurmukhi-blwm-before.svg | 22 +++++++ images/gurmukhi/gurmukhi-blwm.svg | 57 +++++++++++++++++++ images/gurmukhi/gurmukhi-blws-after.svg | 6 +- images/gurmukhi/gurmukhi-blws-before.svg | 14 ++--- images/gurmukhi/gurmukhi-blws.svg | 24 ++++---- images/gurmukhi/gurmukhi-half-after.svg | 10 +++- images/gurmukhi/gurmukhi-half-before.svg | 10 ++-- images/gurmukhi/gurmukhi-half.svg | 24 ++++---- images/gurmukhi/gurmukhi-haln-after.svg | 10 +++- images/gurmukhi/gurmukhi-haln-before.svg | 10 ++-- images/gurmukhi/gurmukhi-haln.svg | 24 ++++---- .../gurmukhi-matra-position-after.svg | 26 +++++---- .../gurmukhi-matra-position-before.svg | 26 +++++---- images/gurmukhi/gurmukhi-matra-position.svg | 56 ++++++++++-------- images/gurmukhi/gurmukhi-nukt-after.svg | 6 +- images/gurmukhi/gurmukhi-nukt-before.svg | 14 ++--- images/gurmukhi/gurmukhi-nukt.svg | 24 ++++---- images/gurmukhi/gurmukhi-pstf-after.svg | 10 ++-- images/gurmukhi/gurmukhi-pstf-before.svg | 14 ++--- images/gurmukhi/gurmukhi-pstf.svg | 28 ++++----- 36 files changed, 386 insertions(+), 275 deletions(-) create mode 100644 images/gurmukhi/gurmukhi-blwm-before.svg diff --git a/images/gurmukhi/gurmukhi-abvm-after.svg b/images/gurmukhi/gurmukhi-abvm-after.svg index 5c58f54..ae0cf6f 100644 --- a/images/gurmukhi/gurmukhi-abvm-after.svg +++ b/images/gurmukhi/gurmukhi-abvm-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-abvm-before.svg b/images/gurmukhi/gurmukhi-abvm-before.svg index 42a99e5..ae0cf6f 100644 --- a/images/gurmukhi/gurmukhi-abvm-before.svg +++ b/images/gurmukhi/gurmukhi-abvm-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-abvm.svg b/images/gurmukhi/gurmukhi-abvm.svg index 2b7ecab..7ebc172 100644 --- a/images/gurmukhi/gurmukhi-abvm.svg +++ b/images/gurmukhi/gurmukhi-abvm.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - + - - + + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-abvs-after.svg b/images/gurmukhi/gurmukhi-abvs-after.svg index 2d4e290..e29861f 100644 --- a/images/gurmukhi/gurmukhi-abvs-after.svg +++ b/images/gurmukhi/gurmukhi-abvs-after.svg @@ -1,18 +1,18 @@ - + - + - + diff --git a/images/gurmukhi/gurmukhi-abvs-before.svg b/images/gurmukhi/gurmukhi-abvs-before.svg index 8e368e5..06fb5d3 100644 --- a/images/gurmukhi/gurmukhi-abvs-before.svg +++ b/images/gurmukhi/gurmukhi-abvs-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-abvs.svg b/images/gurmukhi/gurmukhi-abvs.svg index aab4b7e..d54dfca 100644 --- a/images/gurmukhi/gurmukhi-abvs.svg +++ b/images/gurmukhi/gurmukhi-abvs.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,26 +27,26 @@ - + - + - - + + - + - + - + diff --git a/images/gurmukhi/gurmukhi-blwf-ha-after.svg b/images/gurmukhi/gurmukhi-blwf-ha-after.svg index 2e418a6..cc701ee 100644 --- a/images/gurmukhi/gurmukhi-blwf-ha-after.svg +++ b/images/gurmukhi/gurmukhi-blwf-ha-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-blwf-ha-before.svg b/images/gurmukhi/gurmukhi-blwf-ha-before.svg index 923ded7..26e11ac 100644 --- a/images/gurmukhi/gurmukhi-blwf-ha-before.svg +++ b/images/gurmukhi/gurmukhi-blwf-ha-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/gurmukhi/gurmukhi-blwf-ha.svg b/images/gurmukhi/gurmukhi-blwf-ha.svg index 2f68039..5dbd3ad 100644 --- a/images/gurmukhi/gurmukhi-blwf-ha.svg +++ b/images/gurmukhi/gurmukhi-blwf-ha.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -30,31 +30,31 @@ - + - + - + - - - + + + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-blwf-ra-after.svg b/images/gurmukhi/gurmukhi-blwf-ra-after.svg index 781593f..b84a937 100644 --- a/images/gurmukhi/gurmukhi-blwf-ra-after.svg +++ b/images/gurmukhi/gurmukhi-blwf-ra-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-blwf-ra-before.svg b/images/gurmukhi/gurmukhi-blwf-ra-before.svg index 3e8b885..2bb9aa4 100644 --- a/images/gurmukhi/gurmukhi-blwf-ra-before.svg +++ b/images/gurmukhi/gurmukhi-blwf-ra-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/gurmukhi/gurmukhi-blwf-ra.svg b/images/gurmukhi/gurmukhi-blwf-ra.svg index 4cba088..2a9f332 100644 --- a/images/gurmukhi/gurmukhi-blwf-ra.svg +++ b/images/gurmukhi/gurmukhi-blwf-ra.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -30,31 +30,31 @@ - + - + - + - - - + + + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-blwf-va-after.svg b/images/gurmukhi/gurmukhi-blwf-va-after.svg index 75947a2..bb9c484 100644 --- a/images/gurmukhi/gurmukhi-blwf-va-after.svg +++ b/images/gurmukhi/gurmukhi-blwf-va-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-blwf-va-before.svg b/images/gurmukhi/gurmukhi-blwf-va-before.svg index 0a734de..745b330 100644 --- a/images/gurmukhi/gurmukhi-blwf-va-before.svg +++ b/images/gurmukhi/gurmukhi-blwf-va-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/gurmukhi/gurmukhi-blwf-va.svg b/images/gurmukhi/gurmukhi-blwf-va.svg index cfcd89a..bbee48c 100644 --- a/images/gurmukhi/gurmukhi-blwf-va.svg +++ b/images/gurmukhi/gurmukhi-blwf-va.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -30,31 +30,31 @@ - + - + - + - - - + + + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-blwm-after.svg b/images/gurmukhi/gurmukhi-blwm-after.svg index 3003b7e..5d68180 100644 --- a/images/gurmukhi/gurmukhi-blwm-after.svg +++ b/images/gurmukhi/gurmukhi-blwm-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-blwm-before.svg b/images/gurmukhi/gurmukhi-blwm-before.svg new file mode 100644 index 0000000..5d68180 --- /dev/null +++ b/images/gurmukhi/gurmukhi-blwm-before.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/gurmukhi/gurmukhi-blwm.svg b/images/gurmukhi/gurmukhi-blwm.svg index e69de29..1332727 100644 --- a/images/gurmukhi/gurmukhi-blwm.svg +++ b/images/gurmukhi/gurmukhi-blwm.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/gurmukhi/gurmukhi-blws-after.svg b/images/gurmukhi/gurmukhi-blws-after.svg index 995a670..d933834 100644 --- a/images/gurmukhi/gurmukhi-blws-after.svg +++ b/images/gurmukhi/gurmukhi-blws-after.svg @@ -1,18 +1,18 @@ - + - + - + diff --git a/images/gurmukhi/gurmukhi-blws-before.svg b/images/gurmukhi/gurmukhi-blws-before.svg index 152a51e..92924d6 100644 --- a/images/gurmukhi/gurmukhi-blws-before.svg +++ b/images/gurmukhi/gurmukhi-blws-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/gurmukhi/gurmukhi-blws.svg b/images/gurmukhi/gurmukhi-blws.svg index 379bd10..48454a7 100644 --- a/images/gurmukhi/gurmukhi-blws.svg +++ b/images/gurmukhi/gurmukhi-blws.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -30,27 +30,27 @@ - + - + - - - + + + - + - + - + diff --git a/images/gurmukhi/gurmukhi-half-after.svg b/images/gurmukhi/gurmukhi-half-after.svg index 010ed4f..d8632e8 100644 --- a/images/gurmukhi/gurmukhi-half-after.svg +++ b/images/gurmukhi/gurmukhi-half-after.svg @@ -1,18 +1,22 @@ - + - + + + + - + + diff --git a/images/gurmukhi/gurmukhi-half-before.svg b/images/gurmukhi/gurmukhi-half-before.svg index 5fcb313..d8632e8 100644 --- a/images/gurmukhi/gurmukhi-half-before.svg +++ b/images/gurmukhi/gurmukhi-half-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-half.svg b/images/gurmukhi/gurmukhi-half.svg index e5832ec..70f3f8a 100644 --- a/images/gurmukhi/gurmukhi-half.svg +++ b/images/gurmukhi/gurmukhi-half.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,26 +27,30 @@ - + + + + - + - - + + - + - + - + + diff --git a/images/gurmukhi/gurmukhi-haln-after.svg b/images/gurmukhi/gurmukhi-haln-after.svg index b2199e9..c21569d 100644 --- a/images/gurmukhi/gurmukhi-haln-after.svg +++ b/images/gurmukhi/gurmukhi-haln-after.svg @@ -1,18 +1,22 @@ - + - + + + + - + + diff --git a/images/gurmukhi/gurmukhi-haln-before.svg b/images/gurmukhi/gurmukhi-haln-before.svg index 5a110c7..c21569d 100644 --- a/images/gurmukhi/gurmukhi-haln-before.svg +++ b/images/gurmukhi/gurmukhi-haln-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-haln.svg b/images/gurmukhi/gurmukhi-haln.svg index 6089c65..e691846 100644 --- a/images/gurmukhi/gurmukhi-haln.svg +++ b/images/gurmukhi/gurmukhi-haln.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,26 +27,30 @@ - + + + + - + - - + + - + - + - + + diff --git a/images/gurmukhi/gurmukhi-matra-position-after.svg b/images/gurmukhi/gurmukhi-matra-position-after.svg index 9b85227..702e9d8 100644 --- a/images/gurmukhi/gurmukhi-matra-position-after.svg +++ b/images/gurmukhi/gurmukhi-matra-position-after.svg @@ -1,34 +1,38 @@ - + - + - + - + - + - + + + + - - - - - + + + + + + diff --git a/images/gurmukhi/gurmukhi-matra-position-before.svg b/images/gurmukhi/gurmukhi-matra-position-before.svg index 1597e38..d6c0cf7 100644 --- a/images/gurmukhi/gurmukhi-matra-position-before.svg +++ b/images/gurmukhi/gurmukhi-matra-position-before.svg @@ -1,34 +1,38 @@ - + - + - + - + - + - + + + + - - - - - + + + + + + diff --git a/images/gurmukhi/gurmukhi-matra-position.svg b/images/gurmukhi/gurmukhi-matra-position.svg index 1a870d8..af0196a 100644 --- a/images/gurmukhi/gurmukhi-matra-position.svg +++ b/images/gurmukhi/gurmukhi-matra-position.svg @@ -2,25 +2,28 @@ - + - + - + - + - + - + + + + @@ -36,45 +39,50 @@ - + - + - + - + - + + + + - + - - - - - + + + + + + - + - + - - - - - + + + + + + diff --git a/images/gurmukhi/gurmukhi-nukt-after.svg b/images/gurmukhi/gurmukhi-nukt-after.svg index 546b102..8d28bb9 100644 --- a/images/gurmukhi/gurmukhi-nukt-after.svg +++ b/images/gurmukhi/gurmukhi-nukt-after.svg @@ -1,18 +1,18 @@ - + - + - + diff --git a/images/gurmukhi/gurmukhi-nukt-before.svg b/images/gurmukhi/gurmukhi-nukt-before.svg index fc0a5f4..eece8ab 100644 --- a/images/gurmukhi/gurmukhi-nukt-before.svg +++ b/images/gurmukhi/gurmukhi-nukt-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/gurmukhi/gurmukhi-nukt.svg b/images/gurmukhi/gurmukhi-nukt.svg index eeef5c1..0159587 100644 --- a/images/gurmukhi/gurmukhi-nukt.svg +++ b/images/gurmukhi/gurmukhi-nukt.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -30,27 +30,27 @@ - + - + - - - + + + - + - + - + diff --git a/images/gurmukhi/gurmukhi-pstf-after.svg b/images/gurmukhi/gurmukhi-pstf-after.svg index 22a003e..7bb9e49 100644 --- a/images/gurmukhi/gurmukhi-pstf-after.svg +++ b/images/gurmukhi/gurmukhi-pstf-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-pstf-before.svg b/images/gurmukhi/gurmukhi-pstf-before.svg index 31f2d4c..6d9fa59 100644 --- a/images/gurmukhi/gurmukhi-pstf-before.svg +++ b/images/gurmukhi/gurmukhi-pstf-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/gurmukhi/gurmukhi-pstf.svg b/images/gurmukhi/gurmukhi-pstf.svg index 2fe8ee2..8aad4f3 100644 --- a/images/gurmukhi/gurmukhi-pstf.svg +++ b/images/gurmukhi/gurmukhi-pstf.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -30,31 +30,31 @@ - + - + - + - - - + + + - + - + - - + + From 0a99d1a3d23ce3cd1a3d4b692402dcb04c0475f7 Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Sun, 29 Sep 2024 23:16:33 +0100 Subject: [PATCH 09/24] Images: switch to Noto Serif for Oriya. --- images/oriya/oriya-abvm-after.svg | 20 +++--- images/oriya/oriya-abvm-before.svg | 20 +++--- images/oriya/oriya-abvm.svg | 44 +++++++----- images/oriya/oriya-abvs-after.svg | 16 ++--- images/oriya/oriya-abvs-before.svg | 14 ++-- images/oriya/oriya-abvs.svg | 34 ++++----- images/oriya/oriya-akhn-jnya-after.svg | 8 +-- images/oriya/oriya-akhn-jnya-before.svg | 12 ++-- images/oriya/oriya-akhn-jnya.svg | 24 ++++--- images/oriya/oriya-akhn-kssa-after.svg | 8 +-- images/oriya/oriya-akhn-kssa-before.svg | 8 +-- images/oriya/oriya-akhn-kssa.svg | 20 +++--- images/oriya/oriya-blwf-after.svg | 12 ++-- images/oriya/oriya-blwf-before.svg | 16 ++--- images/oriya/oriya-blwf.svg | 32 ++++----- images/oriya/oriya-blwm-after.svg | 12 ++-- images/oriya/oriya-blwm-before.svg | 12 ++-- images/oriya/oriya-blwm.svg | 28 ++++---- images/oriya/oriya-blws-after.svg | 12 ++-- images/oriya/oriya-blws-before.svg | 16 ++--- images/oriya/oriya-blws.svg | 32 ++++----- images/oriya/oriya-cjct-after.svg | 16 ++--- images/oriya/oriya-cjct-before.svg | 25 ++++--- images/oriya/oriya-cjct.svg | 45 ++++++------ images/oriya/oriya-haln-after.svg | 12 ++-- images/oriya/oriya-haln-before.svg | 12 ++-- images/oriya/oriya-haln.svg | 28 ++++---- images/oriya/oriya-matra-decompose-after.svg | 18 ++--- images/oriya/oriya-matra-decompose-before.svg | 16 ++--- images/oriya/oriya-matra-decompose.svg | 38 +++++----- images/oriya/oriya-matra-position-after.svg | 32 ++++----- images/oriya/oriya-matra-position-before.svg | 36 +++++----- images/oriya/oriya-matra-position.svg | 72 +++++++++---------- images/oriya/oriya-nukt-after.svg | 12 ++-- images/oriya/oriya-nukt-before.svg | 16 ++--- images/oriya/oriya-nukt.svg | 32 ++++----- images/oriya/oriya-pres-after.svg | 8 +-- images/oriya/oriya-pres-before.svg | 12 ++-- images/oriya/oriya-pres.svg | 24 +++---- images/oriya/oriya-pstf-ya-after.svg | 12 ++-- images/oriya/oriya-pstf-ya-before.svg | 16 +++-- images/oriya/oriya-pstf-ya.svg | 32 +++++---- images/oriya/oriya-pstf-yya-after.svg | 12 ++-- images/oriya/oriya-pstf-yya-before.svg | 16 ++--- images/oriya/oriya-pstf-yya.svg | 32 ++++----- images/oriya/oriya-psts-after.svg | 20 +++--- images/oriya/oriya-psts-before.svg | 20 +++--- images/oriya/oriya-psts.svg | 44 ++++++------ images/oriya/oriya-reph-position-after.svg | 24 +++---- images/oriya/oriya-reph-position-before.svg | 28 ++++---- images/oriya/oriya-reph-position.svg | 56 +++++++-------- images/oriya/oriya-rphf-after.svg | 12 ++-- images/oriya/oriya-rphf-before.svg | 16 ++--- images/oriya/oriya-rphf.svg | 32 ++++----- 54 files changed, 596 insertions(+), 630 deletions(-) diff --git a/images/oriya/oriya-abvm-after.svg b/images/oriya/oriya-abvm-after.svg index 24284a4..3510508 100644 --- a/images/oriya/oriya-abvm-after.svg +++ b/images/oriya/oriya-abvm-after.svg @@ -1,26 +1,30 @@ - + - + - + - + - + + + + - - - + + + + diff --git a/images/oriya/oriya-abvm-before.svg b/images/oriya/oriya-abvm-before.svg index e1803c4..517dc63 100644 --- a/images/oriya/oriya-abvm-before.svg +++ b/images/oriya/oriya-abvm-before.svg @@ -1,26 +1,30 @@ - + - + - + - + - + + + + - - - + + + + diff --git a/images/oriya/oriya-abvm.svg b/images/oriya/oriya-abvm.svg index 06aca86..f10f5ce 100644 --- a/images/oriya/oriya-abvm.svg +++ b/images/oriya/oriya-abvm.svg @@ -2,19 +2,22 @@ - + - + - + - + - + + + + @@ -27,38 +30,43 @@ - + - + - + - + + + + - + - - - + + + + - + - + - - - + + + + diff --git a/images/oriya/oriya-abvs-after.svg b/images/oriya/oriya-abvs-after.svg index 87a3944..fa87fe9 100644 --- a/images/oriya/oriya-abvs-after.svg +++ b/images/oriya/oriya-abvs-after.svg @@ -1,26 +1,18 @@ - + - + - - - - - - - + - - - + diff --git a/images/oriya/oriya-abvs-before.svg b/images/oriya/oriya-abvs-before.svg index 87a3944..4cb8c82 100644 --- a/images/oriya/oriya-abvs-before.svg +++ b/images/oriya/oriya-abvs-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - - - + + + diff --git a/images/oriya/oriya-abvs.svg b/images/oriya/oriya-abvs.svg index 01a1a3e..5e375a0 100644 --- a/images/oriya/oriya-abvs.svg +++ b/images/oriya/oriya-abvs.svg @@ -2,19 +2,19 @@ - + - + - + - + @@ -27,38 +27,30 @@ - + - - - - - - - + - + - - - + + + - + - + - - - + diff --git a/images/oriya/oriya-akhn-jnya-after.svg b/images/oriya/oriya-akhn-jnya-after.svg index 30833fb..27d4b4b 100644 --- a/images/oriya/oriya-akhn-jnya-after.svg +++ b/images/oriya/oriya-akhn-jnya-after.svg @@ -1,18 +1,18 @@ - + - + - + - + diff --git a/images/oriya/oriya-akhn-jnya-before.svg b/images/oriya/oriya-akhn-jnya-before.svg index 30833fb..17d112c 100644 --- a/images/oriya/oriya-akhn-jnya-before.svg +++ b/images/oriya/oriya-akhn-jnya-before.svg @@ -1,18 +1,22 @@ - + - + - + + + + - + + diff --git a/images/oriya/oriya-akhn-jnya.svg b/images/oriya/oriya-akhn-jnya.svg index 0e9b750..d2088ed 100644 --- a/images/oriya/oriya-akhn-jnya.svg +++ b/images/oriya/oriya-akhn-jnya.svg @@ -2,13 +2,16 @@ - + - + - + + + + @@ -21,28 +24,29 @@ - + - + - + - + + - + - + - + diff --git a/images/oriya/oriya-akhn-kssa-after.svg b/images/oriya/oriya-akhn-kssa-after.svg index baa2610..3becf97 100644 --- a/images/oriya/oriya-akhn-kssa-after.svg +++ b/images/oriya/oriya-akhn-kssa-after.svg @@ -1,18 +1,18 @@ - + - + - + - + diff --git a/images/oriya/oriya-akhn-kssa-before.svg b/images/oriya/oriya-akhn-kssa-before.svg index baa2610..3becf97 100644 --- a/images/oriya/oriya-akhn-kssa-before.svg +++ b/images/oriya/oriya-akhn-kssa-before.svg @@ -1,18 +1,18 @@ - + - + - + - + diff --git a/images/oriya/oriya-akhn-kssa.svg b/images/oriya/oriya-akhn-kssa.svg index 41e669a..adcebcd 100644 --- a/images/oriya/oriya-akhn-kssa.svg +++ b/images/oriya/oriya-akhn-kssa.svg @@ -2,13 +2,13 @@ - + - + - + @@ -21,28 +21,28 @@ - + - + - + - + - + - + - + diff --git a/images/oriya/oriya-blwf-after.svg b/images/oriya/oriya-blwf-after.svg index ca6a227..87889c7 100644 --- a/images/oriya/oriya-blwf-after.svg +++ b/images/oriya/oriya-blwf-after.svg @@ -1,22 +1,22 @@ - + - + - + - + - - + + diff --git a/images/oriya/oriya-blwf-before.svg b/images/oriya/oriya-blwf-before.svg index 26b9444..60aced8 100644 --- a/images/oriya/oriya-blwf-before.svg +++ b/images/oriya/oriya-blwf-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - + - - - + + + diff --git a/images/oriya/oriya-blwf.svg b/images/oriya/oriya-blwf.svg index c775d01..83d871e 100644 --- a/images/oriya/oriya-blwf.svg +++ b/images/oriya/oriya-blwf.svg @@ -2,19 +2,19 @@ - + - + - + - + - + @@ -27,34 +27,34 @@ - + - + - + - + - - - + + + - + - + - - + + diff --git a/images/oriya/oriya-blwm-after.svg b/images/oriya/oriya-blwm-after.svg index 41429db..bdad5ca 100644 --- a/images/oriya/oriya-blwm-after.svg +++ b/images/oriya/oriya-blwm-after.svg @@ -1,22 +1,22 @@ - + - + - + - + - - + + diff --git a/images/oriya/oriya-blwm-before.svg b/images/oriya/oriya-blwm-before.svg index 2b881e7..bdad5ca 100644 --- a/images/oriya/oriya-blwm-before.svg +++ b/images/oriya/oriya-blwm-before.svg @@ -1,22 +1,22 @@ - + - + - + - + - - + + diff --git a/images/oriya/oriya-blwm.svg b/images/oriya/oriya-blwm.svg index dfbd024..8c3743b 100644 --- a/images/oriya/oriya-blwm.svg +++ b/images/oriya/oriya-blwm.svg @@ -2,16 +2,16 @@ - + - + - + - + @@ -24,33 +24,33 @@ - + - + - + - + - - + + - + - + - - + + diff --git a/images/oriya/oriya-blws-after.svg b/images/oriya/oriya-blws-after.svg index 9d7bfbe..e283b0e 100644 --- a/images/oriya/oriya-blws-after.svg +++ b/images/oriya/oriya-blws-after.svg @@ -1,22 +1,22 @@ - + - + - + - + - - + + diff --git a/images/oriya/oriya-blws-before.svg b/images/oriya/oriya-blws-before.svg index 490a83d..91b377c 100644 --- a/images/oriya/oriya-blws-before.svg +++ b/images/oriya/oriya-blws-before.svg @@ -1,26 +1,22 @@ - + - + - + - - - - + - - - + + diff --git a/images/oriya/oriya-blws.svg b/images/oriya/oriya-blws.svg index 67f56b8..43e3cba 100644 --- a/images/oriya/oriya-blws.svg +++ b/images/oriya/oriya-blws.svg @@ -2,19 +2,16 @@ - + - + - + - - - - + @@ -27,34 +24,33 @@ - + - + - + - + - - - + + - + - + - - + + diff --git a/images/oriya/oriya-cjct-after.svg b/images/oriya/oriya-cjct-after.svg index 6e49387..59fe8a1 100644 --- a/images/oriya/oriya-cjct-after.svg +++ b/images/oriya/oriya-cjct-after.svg @@ -1,26 +1,26 @@ - + - + - + - + - + - - - + + + diff --git a/images/oriya/oriya-cjct-before.svg b/images/oriya/oriya-cjct-before.svg index 51c2b33..add18da 100644 --- a/images/oriya/oriya-cjct-before.svg +++ b/images/oriya/oriya-cjct-before.svg @@ -1,35 +1,34 @@ - + - + - + - + - + - + - + - - - - - - + + + + + diff --git a/images/oriya/oriya-cjct.svg b/images/oriya/oriya-cjct.svg index f4c48f3..b6765b5 100644 --- a/images/oriya/oriya-cjct.svg +++ b/images/oriya/oriya-cjct.svg @@ -2,25 +2,25 @@ - + - + - + - + - + - + - + @@ -33,41 +33,40 @@ - + - + - + - + - + - - - - - - + + + + + - + - + - - - + + + diff --git a/images/oriya/oriya-haln-after.svg b/images/oriya/oriya-haln-after.svg index 1eb2273..6c6ffe2 100644 --- a/images/oriya/oriya-haln-after.svg +++ b/images/oriya/oriya-haln-after.svg @@ -1,22 +1,18 @@ - + - + - - - - + - - + diff --git a/images/oriya/oriya-haln-before.svg b/images/oriya/oriya-haln-before.svg index 1270291..ed72713 100644 --- a/images/oriya/oriya-haln-before.svg +++ b/images/oriya/oriya-haln-before.svg @@ -1,22 +1,22 @@ - + - + - + - + - - + + diff --git a/images/oriya/oriya-haln.svg b/images/oriya/oriya-haln.svg index 2317492..37a2335 100644 --- a/images/oriya/oriya-haln.svg +++ b/images/oriya/oriya-haln.svg @@ -2,16 +2,16 @@ - + - + - + - + @@ -24,33 +24,29 @@ - + - - - - + - + - - + + - + - + - - + diff --git a/images/oriya/oriya-matra-decompose-after.svg b/images/oriya/oriya-matra-decompose-after.svg index 1adcf93..2a96810 100644 --- a/images/oriya/oriya-matra-decompose-after.svg +++ b/images/oriya/oriya-matra-decompose-after.svg @@ -1,27 +1,27 @@ - + - + - + - + - + - - - - + + + + diff --git a/images/oriya/oriya-matra-decompose-before.svg b/images/oriya/oriya-matra-decompose-before.svg index c307987..dabd976 100644 --- a/images/oriya/oriya-matra-decompose-before.svg +++ b/images/oriya/oriya-matra-decompose-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - + - - - + + + diff --git a/images/oriya/oriya-matra-decompose.svg b/images/oriya/oriya-matra-decompose.svg index a785454..d99786a 100644 --- a/images/oriya/oriya-matra-decompose.svg +++ b/images/oriya/oriya-matra-decompose.svg @@ -2,19 +2,19 @@ - + - + - + - + - + @@ -27,39 +27,39 @@ - + - + - + - + - + - - - + + + - + - + - - - - + + + + diff --git a/images/oriya/oriya-matra-position-after.svg b/images/oriya/oriya-matra-position-after.svg index d723cd3..9847a88 100644 --- a/images/oriya/oriya-matra-position-after.svg +++ b/images/oriya/oriya-matra-position-after.svg @@ -1,42 +1,38 @@ - + - + - + - + - + - + - + - - - - + - - - - - - - + + + + + + diff --git a/images/oriya/oriya-matra-position-before.svg b/images/oriya/oriya-matra-position-before.svg index 3d6f6a0..e5ae924 100644 --- a/images/oriya/oriya-matra-position-before.svg +++ b/images/oriya/oriya-matra-position-before.svg @@ -1,46 +1,42 @@ - + - + - + - + - + - + - + - + - - - - + - - - - - - - - + + + + + + + diff --git a/images/oriya/oriya-matra-position.svg b/images/oriya/oriya-matra-position.svg index 20bb85e..662072b 100644 --- a/images/oriya/oriya-matra-position.svg +++ b/images/oriya/oriya-matra-position.svg @@ -2,34 +2,31 @@ - + - + - + - + - + - + - + - + - - - - + @@ -42,59 +39,54 @@ - + - + - + - + - + - + - - - - + - + - - - - - - - - + + + + + + + - + - + - - - - - - - + + + + + + diff --git a/images/oriya/oriya-nukt-after.svg b/images/oriya/oriya-nukt-after.svg index 4d3ed79..9015cb8 100644 --- a/images/oriya/oriya-nukt-after.svg +++ b/images/oriya/oriya-nukt-after.svg @@ -1,22 +1,18 @@ - + - + - - - - + - - + diff --git a/images/oriya/oriya-nukt-before.svg b/images/oriya/oriya-nukt-before.svg index f65571e..0095632 100644 --- a/images/oriya/oriya-nukt-before.svg +++ b/images/oriya/oriya-nukt-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - + - - - + + + diff --git a/images/oriya/oriya-nukt.svg b/images/oriya/oriya-nukt.svg index 6c4f1d8..20e5aa8 100644 --- a/images/oriya/oriya-nukt.svg +++ b/images/oriya/oriya-nukt.svg @@ -2,19 +2,19 @@ - + - + - + - + - + @@ -27,34 +27,30 @@ - + - - - - + - + - - - + + + - + - + - - + diff --git a/images/oriya/oriya-pres-after.svg b/images/oriya/oriya-pres-after.svg index 27a0c59..772a0ce 100644 --- a/images/oriya/oriya-pres-after.svg +++ b/images/oriya/oriya-pres-after.svg @@ -1,18 +1,18 @@ - + - + - + - + diff --git a/images/oriya/oriya-pres-before.svg b/images/oriya/oriya-pres-before.svg index 52d3e4a..22903d4 100644 --- a/images/oriya/oriya-pres-before.svg +++ b/images/oriya/oriya-pres-before.svg @@ -1,22 +1,22 @@ - + - + - + - + - - + + diff --git a/images/oriya/oriya-pres.svg b/images/oriya/oriya-pres.svg index 75fbe80..f2e432c 100644 --- a/images/oriya/oriya-pres.svg +++ b/images/oriya/oriya-pres.svg @@ -2,16 +2,16 @@ - + - + - + - + @@ -24,29 +24,29 @@ - + - + - + - - + + - + - + - + diff --git a/images/oriya/oriya-pstf-ya-after.svg b/images/oriya/oriya-pstf-ya-after.svg index 26f9c9b..b53f430 100644 --- a/images/oriya/oriya-pstf-ya-after.svg +++ b/images/oriya/oriya-pstf-ya-after.svg @@ -1,22 +1,22 @@ - + - + - + - + - - + + diff --git a/images/oriya/oriya-pstf-ya-before.svg b/images/oriya/oriya-pstf-ya-before.svg index 26f9c9b..d0d2820 100644 --- a/images/oriya/oriya-pstf-ya-before.svg +++ b/images/oriya/oriya-pstf-ya-before.svg @@ -1,22 +1,26 @@ - + - + - + - + + + + - - + + + diff --git a/images/oriya/oriya-pstf-ya.svg b/images/oriya/oriya-pstf-ya.svg index 547933d..99fa93a 100644 --- a/images/oriya/oriya-pstf-ya.svg +++ b/images/oriya/oriya-pstf-ya.svg @@ -2,16 +2,19 @@ - + - + - + - + + + + @@ -24,33 +27,34 @@ - + - + - + - + - - + + + - + - + - - + + diff --git a/images/oriya/oriya-pstf-yya-after.svg b/images/oriya/oriya-pstf-yya-after.svg index d402935..b53f430 100644 --- a/images/oriya/oriya-pstf-yya-after.svg +++ b/images/oriya/oriya-pstf-yya-after.svg @@ -1,22 +1,22 @@ - + - + - + - + - - + + diff --git a/images/oriya/oriya-pstf-yya-before.svg b/images/oriya/oriya-pstf-yya-before.svg index 7a62153..652b6f7 100644 --- a/images/oriya/oriya-pstf-yya-before.svg +++ b/images/oriya/oriya-pstf-yya-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - + - - - + + + diff --git a/images/oriya/oriya-pstf-yya.svg b/images/oriya/oriya-pstf-yya.svg index 19cbb66..67ebea5 100644 --- a/images/oriya/oriya-pstf-yya.svg +++ b/images/oriya/oriya-pstf-yya.svg @@ -2,19 +2,19 @@ - + - + - + - + - + @@ -27,34 +27,34 @@ - + - + - + - + - - - + + + - + - + - - + + diff --git a/images/oriya/oriya-psts-after.svg b/images/oriya/oriya-psts-after.svg index 3a86235..268bd61 100644 --- a/images/oriya/oriya-psts-after.svg +++ b/images/oriya/oriya-psts-after.svg @@ -1,30 +1,30 @@ - + - + - + - + - + - + - - - - + + + + diff --git a/images/oriya/oriya-psts-before.svg b/images/oriya/oriya-psts-before.svg index 3a86235..a9d6f48 100644 --- a/images/oriya/oriya-psts-before.svg +++ b/images/oriya/oriya-psts-before.svg @@ -1,30 +1,30 @@ - + - + - + - + - + - + - - - - + + + + diff --git a/images/oriya/oriya-psts.svg b/images/oriya/oriya-psts.svg index 1350395..21156fb 100644 --- a/images/oriya/oriya-psts.svg +++ b/images/oriya/oriya-psts.svg @@ -2,22 +2,22 @@ - + - + - + - + - + - + @@ -30,43 +30,43 @@ - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + diff --git a/images/oriya/oriya-reph-position-after.svg b/images/oriya/oriya-reph-position-after.svg index 1b6385c..87b96c4 100644 --- a/images/oriya/oriya-reph-position-after.svg +++ b/images/oriya/oriya-reph-position-after.svg @@ -1,34 +1,34 @@ - + - + - + - + - + - + - + - - - - - + + + + + diff --git a/images/oriya/oriya-reph-position-before.svg b/images/oriya/oriya-reph-position-before.svg index c92bda3..6cf01d5 100644 --- a/images/oriya/oriya-reph-position-before.svg +++ b/images/oriya/oriya-reph-position-before.svg @@ -1,38 +1,38 @@ - + - + - + - + - + - + - + - + - - - - - - + + + + + + diff --git a/images/oriya/oriya-reph-position.svg b/images/oriya/oriya-reph-position.svg index 53616ab..dbb90a6 100644 --- a/images/oriya/oriya-reph-position.svg +++ b/images/oriya/oriya-reph-position.svg @@ -2,28 +2,28 @@ - + - + - + - + - + - + - + - + @@ -36,49 +36,49 @@ - + - + - + - + - + - + - + - - - - - - + + + + + + - + - + - - - - - + + + + + diff --git a/images/oriya/oriya-rphf-after.svg b/images/oriya/oriya-rphf-after.svg index e1eaec6..6532a24 100644 --- a/images/oriya/oriya-rphf-after.svg +++ b/images/oriya/oriya-rphf-after.svg @@ -1,22 +1,22 @@ - + - + - + - + - - + + diff --git a/images/oriya/oriya-rphf-before.svg b/images/oriya/oriya-rphf-before.svg index 9598fe2..04bf75f 100644 --- a/images/oriya/oriya-rphf-before.svg +++ b/images/oriya/oriya-rphf-before.svg @@ -1,26 +1,22 @@ - + - + - + - - - - + - - - + + diff --git a/images/oriya/oriya-rphf.svg b/images/oriya/oriya-rphf.svg index 96e83ad..55d904d 100644 --- a/images/oriya/oriya-rphf.svg +++ b/images/oriya/oriya-rphf.svg @@ -2,19 +2,16 @@ - + - + - + - - - - + @@ -27,34 +24,33 @@ - + - + - + - + - - - + + - + - + - - + + From 2036358488189f1cccd0319f90fce66312f3decc Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Mon, 30 Sep 2024 16:51:47 +0100 Subject: [PATCH 10/24] Malayalam, images: fix broken examples and bad cropping. --- images/malayalam/malayalam-abvm-after.svg | 6 ++-- images/malayalam/malayalam-abvm.svg | 12 ++++---- images/malayalam/malayalam-blwm-after.svg | 10 +++++-- images/malayalam/malayalam-blwm-before.svg | 18 ++++++++++-- images/malayalam/malayalam-blwm.svg | 32 ++++++++++++++++------ images/malayalam/malayalam-half-after.svg | 12 ++------ images/malayalam/malayalam-half-before.svg | 10 +++---- images/malayalam/malayalam-half.svg | 24 ++++++---------- 8 files changed, 70 insertions(+), 54 deletions(-) diff --git a/images/malayalam/malayalam-abvm-after.svg b/images/malayalam/malayalam-abvm-after.svg index a83a448..e86dc14 100644 --- a/images/malayalam/malayalam-abvm-after.svg +++ b/images/malayalam/malayalam-abvm-after.svg @@ -1,5 +1,5 @@ - + @@ -15,8 +15,8 @@ - - + + diff --git a/images/malayalam/malayalam-abvm.svg b/images/malayalam/malayalam-abvm.svg index fe960a0..0cf74cb 100644 --- a/images/malayalam/malayalam-abvm.svg +++ b/images/malayalam/malayalam-abvm.svg @@ -2,7 +2,7 @@ - + @@ -34,23 +34,23 @@ - + - + - + - - + + diff --git a/images/malayalam/malayalam-blwm-after.svg b/images/malayalam/malayalam-blwm-after.svg index eb967b6..59a6ea2 100644 --- a/images/malayalam/malayalam-blwm-after.svg +++ b/images/malayalam/malayalam-blwm-after.svg @@ -1,18 +1,22 @@ - + - + + + + - + + diff --git a/images/malayalam/malayalam-blwm-before.svg b/images/malayalam/malayalam-blwm-before.svg index eb967b6..6f1f868 100644 --- a/images/malayalam/malayalam-blwm-before.svg +++ b/images/malayalam/malayalam-blwm-before.svg @@ -1,18 +1,30 @@ - + - + + + + + + + + + + - + + + + diff --git a/images/malayalam/malayalam-blwm.svg b/images/malayalam/malayalam-blwm.svg index 9a31509..3c96b3a 100644 --- a/images/malayalam/malayalam-blwm.svg +++ b/images/malayalam/malayalam-blwm.svg @@ -2,13 +2,22 @@ - + - + + + + + + + + + + @@ -24,25 +33,32 @@ - + + + + - + - + + + + - + - + - + + diff --git a/images/malayalam/malayalam-half-after.svg b/images/malayalam/malayalam-half-after.svg index 90e447c..4ee9164 100644 --- a/images/malayalam/malayalam-half-after.svg +++ b/images/malayalam/malayalam-half-after.svg @@ -1,26 +1,18 @@ - + - - - - - - - + - - diff --git a/images/malayalam/malayalam-half-before.svg b/images/malayalam/malayalam-half-before.svg index def9cd2..91d1f5a 100644 --- a/images/malayalam/malayalam-half-before.svg +++ b/images/malayalam/malayalam-half-before.svg @@ -1,12 +1,12 @@ - + - + @@ -22,9 +22,9 @@ - - - + + + diff --git a/images/malayalam/malayalam-half.svg b/images/malayalam/malayalam-half.svg index 514b5fa..c85b13d 100644 --- a/images/malayalam/malayalam-half.svg +++ b/images/malayalam/malayalam-half.svg @@ -2,13 +2,13 @@ - + - + @@ -33,36 +33,28 @@ - - - - - - - + - - - + + + - + - + - - From 31ddeacc609c6366f364e9f8e9ff95a55846d69a Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Mon, 30 Sep 2024 17:00:06 +0100 Subject: [PATCH 11/24] Myanmar, images: fix broken examples and bad cropping. --- images/myanmar/myanmar-abvm-before.svg | 2 +- images/myanmar/myanmar-abvm.svg | 6 +++--- images/myanmar/myanmar-blwm-after.svg | 8 ++++---- images/myanmar/myanmar-blwm-before.svg | 8 ++++---- images/myanmar/myanmar-blwm.svg | 18 +++++++++--------- 5 files changed, 21 insertions(+), 21 deletions(-) diff --git a/images/myanmar/myanmar-abvm-before.svg b/images/myanmar/myanmar-abvm-before.svg index c7456fd..04a7ec1 100644 --- a/images/myanmar/myanmar-abvm-before.svg +++ b/images/myanmar/myanmar-abvm-before.svg @@ -1,5 +1,5 @@ - + diff --git a/images/myanmar/myanmar-abvm.svg b/images/myanmar/myanmar-abvm.svg index 9591194..b95f508 100644 --- a/images/myanmar/myanmar-abvm.svg +++ b/images/myanmar/myanmar-abvm.svg @@ -2,7 +2,7 @@ - + @@ -41,13 +41,13 @@ - + - + diff --git a/images/myanmar/myanmar-blwm-after.svg b/images/myanmar/myanmar-blwm-after.svg index 6f6f6c2..8053ae8 100644 --- a/images/myanmar/myanmar-blwm-after.svg +++ b/images/myanmar/myanmar-blwm-after.svg @@ -1,22 +1,22 @@ - + - + - + - + diff --git a/images/myanmar/myanmar-blwm-before.svg b/images/myanmar/myanmar-blwm-before.svg index 6f6f6c2..13c76da 100644 --- a/images/myanmar/myanmar-blwm-before.svg +++ b/images/myanmar/myanmar-blwm-before.svg @@ -1,22 +1,22 @@ - + - + - + - + diff --git a/images/myanmar/myanmar-blwm.svg b/images/myanmar/myanmar-blwm.svg index 439a291..973c6e2 100644 --- a/images/myanmar/myanmar-blwm.svg +++ b/images/myanmar/myanmar-blwm.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - + - + - + - + From 6834c177c4484abca0c1f1541ca4dc19f70c4ba2 Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Mon, 30 Sep 2024 18:17:10 +0100 Subject: [PATCH 12/24] Hangul, images: fix broken examples and bad cropping. --- images/hangul/hangul-compose-before.svg | 6 +++--- images/hangul/hangul-compose.svg | 6 +++--- images/hangul/hangul-decompose-after.svg | 2 +- images/hangul/hangul-decompose.svg | 2 +- images/hangul/hangul-ljmo-after.svg | 6 +++--- images/hangul/hangul-ljmo-before.svg | 6 +++--- images/hangul/hangul-ljmo.svg | 12 ++++++------ images/hangul/hangul-lvt-syllable.svg | 8 ++------ images/hangul/hangul-tjmo-after.svg | 12 ++++-------- images/hangul/hangul-tjmo-before.svg | 11 +++-------- images/hangul/hangul-tjmo.svg | 25 ++++++++---------------- 11 files changed, 37 insertions(+), 59 deletions(-) diff --git a/images/hangul/hangul-compose-before.svg b/images/hangul/hangul-compose-before.svg index 807c663..a8fa583 100644 --- a/images/hangul/hangul-compose-before.svg +++ b/images/hangul/hangul-compose-before.svg @@ -6,16 +6,16 @@ - + - + - + diff --git a/images/hangul/hangul-compose.svg b/images/hangul/hangul-compose.svg index 1973f8c..66d2edf 100644 --- a/images/hangul/hangul-compose.svg +++ b/images/hangul/hangul-compose.svg @@ -8,16 +8,16 @@ - + - + - + diff --git a/images/hangul/hangul-decompose-after.svg b/images/hangul/hangul-decompose-after.svg index e109f89..8094edd 100644 --- a/images/hangul/hangul-decompose-after.svg +++ b/images/hangul/hangul-decompose-after.svg @@ -6,7 +6,7 @@ - + diff --git a/images/hangul/hangul-decompose.svg b/images/hangul/hangul-decompose.svg index 7fb879d..6ea65ae 100644 --- a/images/hangul/hangul-decompose.svg +++ b/images/hangul/hangul-decompose.svg @@ -24,7 +24,7 @@ - + diff --git a/images/hangul/hangul-ljmo-after.svg b/images/hangul/hangul-ljmo-after.svg index 102357e..c1eed38 100644 --- a/images/hangul/hangul-ljmo-after.svg +++ b/images/hangul/hangul-ljmo-after.svg @@ -6,16 +6,16 @@ - + - + - + diff --git a/images/hangul/hangul-ljmo-before.svg b/images/hangul/hangul-ljmo-before.svg index 5b4122a..5e08a71 100644 --- a/images/hangul/hangul-ljmo-before.svg +++ b/images/hangul/hangul-ljmo-before.svg @@ -6,16 +6,16 @@ - + - + - + diff --git a/images/hangul/hangul-ljmo.svg b/images/hangul/hangul-ljmo.svg index 0978eeb..bcb5511 100644 --- a/images/hangul/hangul-ljmo.svg +++ b/images/hangul/hangul-ljmo.svg @@ -8,16 +8,16 @@ - + - + - + @@ -33,16 +33,16 @@ - + - + - + diff --git a/images/hangul/hangul-lvt-syllable.svg b/images/hangul/hangul-lvt-syllable.svg index 07076d8..287518c 100644 --- a/images/hangul/hangul-lvt-syllable.svg +++ b/images/hangul/hangul-lvt-syllable.svg @@ -1,22 +1,18 @@ - + - - - - + - diff --git a/images/hangul/hangul-tjmo-after.svg b/images/hangul/hangul-tjmo-after.svg index cdd2397..0b0e6b8 100644 --- a/images/hangul/hangul-tjmo-after.svg +++ b/images/hangul/hangul-tjmo-after.svg @@ -1,21 +1,18 @@ - + - + - - - - + @@ -23,9 +20,8 @@ - - + diff --git a/images/hangul/hangul-tjmo-before.svg b/images/hangul/hangul-tjmo-before.svg index ff910c4..91118db 100644 --- a/images/hangul/hangul-tjmo-before.svg +++ b/images/hangul/hangul-tjmo-before.svg @@ -1,21 +1,18 @@ - + - + - - - - + @@ -24,8 +21,6 @@ - - diff --git a/images/hangul/hangul-tjmo.svg b/images/hangul/hangul-tjmo.svg index 8da5d71..6642440 100644 --- a/images/hangul/hangul-tjmo.svg +++ b/images/hangul/hangul-tjmo.svg @@ -2,22 +2,19 @@ - + - + - - - - + @@ -33,16 +30,13 @@ - + - - - - + @@ -51,24 +45,21 @@ - - - + - + - - + From d800223c8b6efedd9c367bd1bb8f79ad012dacce Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Tue, 1 Oct 2024 12:46:14 +0100 Subject: [PATCH 13/24] Hangul, images: fix vjmo example and add missing tone image. The vjmo example is still far from perfect.... --- images/hangul/hangul-tone.svg | 65 ++++++++++++++++++++++++++++ images/hangul/hangul-vjmo-after.svg | 11 ++--- images/hangul/hangul-vjmo-before.svg | 6 +-- images/hangul/hangul-vjmo.svg | 17 +++----- 4 files changed, 77 insertions(+), 22 deletions(-) create mode 100644 images/hangul/hangul-tone.svg diff --git a/images/hangul/hangul-tone.svg b/images/hangul/hangul-tone.svg new file mode 100644 index 0000000..22e3e83 --- /dev/null +++ b/images/hangul/hangul-tone.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/hangul/hangul-vjmo-after.svg b/images/hangul/hangul-vjmo-after.svg index ff910c4..91118db 100644 --- a/images/hangul/hangul-vjmo-after.svg +++ b/images/hangul/hangul-vjmo-after.svg @@ -1,21 +1,18 @@ - + - + - - - - + @@ -24,8 +21,6 @@ - - diff --git a/images/hangul/hangul-vjmo-before.svg b/images/hangul/hangul-vjmo-before.svg index 102357e..c1eed38 100644 --- a/images/hangul/hangul-vjmo-before.svg +++ b/images/hangul/hangul-vjmo-before.svg @@ -6,16 +6,16 @@ - + - + - + diff --git a/images/hangul/hangul-vjmo.svg b/images/hangul/hangul-vjmo.svg index 3a42517..a2b6841 100644 --- a/images/hangul/hangul-vjmo.svg +++ b/images/hangul/hangul-vjmo.svg @@ -2,22 +2,22 @@ - + - + - + - + @@ -33,16 +33,13 @@ - + - - - - + @@ -67,8 +64,6 @@ - - From b96a2eaacf05caa7d635ffddf9f279dc00706788 Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Tue, 1 Oct 2024 13:38:19 +0100 Subject: [PATCH 14/24] Hebrew, images: fix broken examples and bad cropping --- images/hebrew/hebrew-apf-after.svg | 10 +++------- images/hebrew/hebrew-apf-before.svg | 10 +++++++--- images/hebrew/hebrew-apf.svg | 22 +++++++++++----------- images/hebrew/hebrew-ccmp-after.svg | 10 +++------- images/hebrew/hebrew-ccmp-before.svg | 6 +++++- images/hebrew/hebrew-ccmp.svg | 18 +++++++++--------- images/hebrew/hebrew-liga-after.svg | 6 +----- images/hebrew/hebrew-liga-before.svg | 10 +++++----- images/hebrew/hebrew-liga.svg | 18 +++++++----------- 9 files changed, 51 insertions(+), 59 deletions(-) diff --git a/images/hebrew/hebrew-apf-after.svg b/images/hebrew/hebrew-apf-after.svg index 47b1c93..2ec68f2 100644 --- a/images/hebrew/hebrew-apf-after.svg +++ b/images/hebrew/hebrew-apf-after.svg @@ -1,22 +1,18 @@ - + - - - - + - - + diff --git a/images/hebrew/hebrew-apf-before.svg b/images/hebrew/hebrew-apf-before.svg index 47b1c93..8adb0cf 100644 --- a/images/hebrew/hebrew-apf-before.svg +++ b/images/hebrew/hebrew-apf-before.svg @@ -1,5 +1,5 @@ - + @@ -9,14 +9,18 @@ - + + + + - + + diff --git a/images/hebrew/hebrew-apf.svg b/images/hebrew/hebrew-apf.svg index 6400748..4f527f6 100644 --- a/images/hebrew/hebrew-apf.svg +++ b/images/hebrew/hebrew-apf.svg @@ -2,7 +2,7 @@ - + @@ -11,7 +11,10 @@ - + + + + @@ -27,30 +30,27 @@ - - - - + - + + - + - + - - + diff --git a/images/hebrew/hebrew-ccmp-after.svg b/images/hebrew/hebrew-ccmp-after.svg index f95da75..149973d 100644 --- a/images/hebrew/hebrew-ccmp-after.svg +++ b/images/hebrew/hebrew-ccmp-after.svg @@ -1,22 +1,18 @@ - + - - - - + - - + diff --git a/images/hebrew/hebrew-ccmp-before.svg b/images/hebrew/hebrew-ccmp-before.svg index 5e10e09..5a5fbfa 100644 --- a/images/hebrew/hebrew-ccmp-before.svg +++ b/images/hebrew/hebrew-ccmp-before.svg @@ -1,5 +1,5 @@ - + @@ -9,6 +9,9 @@ + + + @@ -17,6 +20,7 @@ + diff --git a/images/hebrew/hebrew-ccmp.svg b/images/hebrew/hebrew-ccmp.svg index 9903ec7..56948f2 100644 --- a/images/hebrew/hebrew-ccmp.svg +++ b/images/hebrew/hebrew-ccmp.svg @@ -2,7 +2,7 @@ - + @@ -11,6 +11,9 @@ + + + @@ -27,10 +30,7 @@ - - - - + @@ -38,19 +38,19 @@ + - + - + - - + diff --git a/images/hebrew/hebrew-liga-after.svg b/images/hebrew/hebrew-liga-after.svg index 0204116..05c5ee9 100644 --- a/images/hebrew/hebrew-liga-after.svg +++ b/images/hebrew/hebrew-liga-after.svg @@ -1,14 +1,11 @@ - + - - - @@ -16,7 +13,6 @@ - diff --git a/images/hebrew/hebrew-liga-before.svg b/images/hebrew/hebrew-liga-before.svg index 77b81dd..d3fa5a2 100644 --- a/images/hebrew/hebrew-liga-before.svg +++ b/images/hebrew/hebrew-liga-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/hebrew/hebrew-liga.svg b/images/hebrew/hebrew-liga.svg index 7e05695..be84d20 100644 --- a/images/hebrew/hebrew-liga.svg +++ b/images/hebrew/hebrew-liga.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,26 @@ - - - - - + + - + - + - From 39eab9d121a2284e492637dbb28682c86d97bda2 Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Tue, 1 Oct 2024 14:20:23 +0100 Subject: [PATCH 15/24] Devanagari, images: fix confusing matra-position example --- images/devanagari/devanagari-matra-position-after.svg | 2 +- images/devanagari/devanagari-matra-position.svg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/devanagari/devanagari-matra-position-after.svg b/images/devanagari/devanagari-matra-position-after.svg index b51658b..006b136 100644 --- a/images/devanagari/devanagari-matra-position-after.svg +++ b/images/devanagari/devanagari-matra-position-after.svg @@ -15,7 +15,7 @@ - + diff --git a/images/devanagari/devanagari-matra-position.svg b/images/devanagari/devanagari-matra-position.svg index f2becee..458db01 100644 --- a/images/devanagari/devanagari-matra-position.svg +++ b/images/devanagari/devanagari-matra-position.svg @@ -51,7 +51,7 @@ - + From 91d77cdbab298a5d66c990b1dfb7f9f7391af023 Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Tue, 1 Oct 2024 17:35:35 +0100 Subject: [PATCH 16/24] Gurmukhi, images: fix abvm and blwm examples. --- images/gurmukhi/gurmukhi-abvm-after.svg | 10 +++++----- images/gurmukhi/gurmukhi-abvm-before.svg | 10 +++++----- images/gurmukhi/gurmukhi-abvm.svg | 22 +++++++++++----------- images/gurmukhi/gurmukhi-blwm-after.svg | 10 +++++----- images/gurmukhi/gurmukhi-blwm-before.svg | 10 +++++----- images/gurmukhi/gurmukhi-blwm.svg | 22 +++++++++++----------- 6 files changed, 42 insertions(+), 42 deletions(-) diff --git a/images/gurmukhi/gurmukhi-abvm-after.svg b/images/gurmukhi/gurmukhi-abvm-after.svg index ae0cf6f..884773d 100644 --- a/images/gurmukhi/gurmukhi-abvm-after.svg +++ b/images/gurmukhi/gurmukhi-abvm-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-abvm-before.svg b/images/gurmukhi/gurmukhi-abvm-before.svg index ae0cf6f..f23572a 100644 --- a/images/gurmukhi/gurmukhi-abvm-before.svg +++ b/images/gurmukhi/gurmukhi-abvm-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-abvm.svg b/images/gurmukhi/gurmukhi-abvm.svg index 7ebc172..fab8c07 100644 --- a/images/gurmukhi/gurmukhi-abvm.svg +++ b/images/gurmukhi/gurmukhi-abvm.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - - + + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-blwm-after.svg b/images/gurmukhi/gurmukhi-blwm-after.svg index 5d68180..1646261 100644 --- a/images/gurmukhi/gurmukhi-blwm-after.svg +++ b/images/gurmukhi/gurmukhi-blwm-after.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-blwm-before.svg b/images/gurmukhi/gurmukhi-blwm-before.svg index 5d68180..31f92d6 100644 --- a/images/gurmukhi/gurmukhi-blwm-before.svg +++ b/images/gurmukhi/gurmukhi-blwm-before.svg @@ -1,22 +1,22 @@ - + - + - + - - + + diff --git a/images/gurmukhi/gurmukhi-blwm.svg b/images/gurmukhi/gurmukhi-blwm.svg index 1332727..d36eaad 100644 --- a/images/gurmukhi/gurmukhi-blwm.svg +++ b/images/gurmukhi/gurmukhi-blwm.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,30 +27,30 @@ - + - + - - + + - + - + - - + + From cb8deafeee30e94ccb6c861f9250af775e8e99ff Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Tue, 1 Oct 2024 18:12:38 +0100 Subject: [PATCH 17/24] Malayalam images: switch blwf example to Noto Serif. --- images/malayalam/malayalam-blwf-after.svg | 12 +++----- images/malayalam/malayalam-blwf-before.svg | 16 +++++------ images/malayalam/malayalam-blwf.svg | 32 ++++++++++------------ 3 files changed, 26 insertions(+), 34 deletions(-) diff --git a/images/malayalam/malayalam-blwf-after.svg b/images/malayalam/malayalam-blwf-after.svg index 6d84544..daa3442 100644 --- a/images/malayalam/malayalam-blwf-after.svg +++ b/images/malayalam/malayalam-blwf-after.svg @@ -1,22 +1,18 @@ - + - + - - - - + - - + diff --git a/images/malayalam/malayalam-blwf-before.svg b/images/malayalam/malayalam-blwf-before.svg index c146354..e115581 100644 --- a/images/malayalam/malayalam-blwf-before.svg +++ b/images/malayalam/malayalam-blwf-before.svg @@ -1,26 +1,26 @@ - + - + - + - + - + - - - + + + diff --git a/images/malayalam/malayalam-blwf.svg b/images/malayalam/malayalam-blwf.svg index b20f2a7..c6ff3d3 100644 --- a/images/malayalam/malayalam-blwf.svg +++ b/images/malayalam/malayalam-blwf.svg @@ -2,19 +2,19 @@ - + - + - + - + - + @@ -27,34 +27,30 @@ - + - - - - + - + - - - + + + - + - + - - + From f1fbeea17b54cc6227019603c0f746c9cf6840de Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Wed, 2 Oct 2024 11:15:45 +0100 Subject: [PATCH 18/24] Gujarati images: fix broken examples. --- images/gujarati/gujarati-haln-after.svg | 12 ++---------- images/gujarati/gujarati-haln-before.svg | 10 +++------- images/gujarati/gujarati-haln.svg | 24 ++++++------------------ images/gujarati/gujarati-psts-after.svg | 4 ++-- images/gujarati/gujarati-psts-before.svg | 8 ++++++-- images/gujarati/gujarati-psts.svg | 14 +++++++++----- 6 files changed, 28 insertions(+), 44 deletions(-) diff --git a/images/gujarati/gujarati-haln-after.svg b/images/gujarati/gujarati-haln-after.svg index 6e6fcc0..b2e4802 100644 --- a/images/gujarati/gujarati-haln-after.svg +++ b/images/gujarati/gujarati-haln-after.svg @@ -1,26 +1,18 @@ - + - - - - - - - + - - diff --git a/images/gujarati/gujarati-haln-before.svg b/images/gujarati/gujarati-haln-before.svg index 6e6fcc0..3b2dd36 100644 --- a/images/gujarati/gujarati-haln-before.svg +++ b/images/gujarati/gujarati-haln-before.svg @@ -1,17 +1,14 @@ - + - + - - - @@ -19,8 +16,7 @@ - - + diff --git a/images/gujarati/gujarati-haln.svg b/images/gujarati/gujarati-haln.svg index 74775c5..84e12c9 100644 --- a/images/gujarati/gujarati-haln.svg +++ b/images/gujarati/gujarati-haln.svg @@ -2,18 +2,15 @@ - + - + - - - @@ -30,35 +27,26 @@ - - - - - - - + - - + - + - + - - diff --git a/images/gujarati/gujarati-psts-after.svg b/images/gujarati/gujarati-psts-after.svg index f30af9c..7eabadc 100644 --- a/images/gujarati/gujarati-psts-after.svg +++ b/images/gujarati/gujarati-psts-after.svg @@ -1,12 +1,12 @@ - + - + diff --git a/images/gujarati/gujarati-psts-before.svg b/images/gujarati/gujarati-psts-before.svg index f30af9c..8d119d9 100644 --- a/images/gujarati/gujarati-psts-before.svg +++ b/images/gujarati/gujarati-psts-before.svg @@ -1,18 +1,22 @@ - + - + + + + + diff --git a/images/gujarati/gujarati-psts.svg b/images/gujarati/gujarati-psts.svg index 94ddccb..21a46d5 100644 --- a/images/gujarati/gujarati-psts.svg +++ b/images/gujarati/gujarati-psts.svg @@ -2,13 +2,16 @@ - + - + + + + @@ -24,23 +27,24 @@ - + + - + - + From 11b27e534ce8e9cf7cb86aa2ad0c770745582779 Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Wed, 2 Oct 2024 12:40:51 +0100 Subject: [PATCH 19/24] Telugu images: fix blwm example. --- images/telugu/telugu-blwm-after.svg | 4 ++-- images/telugu/telugu-blwm-before.svg | 2 +- images/telugu/telugu-blwm.svg | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/images/telugu/telugu-blwm-after.svg b/images/telugu/telugu-blwm-after.svg index 22ac446..28874d0 100644 --- a/images/telugu/telugu-blwm-after.svg +++ b/images/telugu/telugu-blwm-after.svg @@ -9,14 +9,14 @@ - + - + diff --git a/images/telugu/telugu-blwm-before.svg b/images/telugu/telugu-blwm-before.svg index 22ac446..0e9b2e1 100644 --- a/images/telugu/telugu-blwm-before.svg +++ b/images/telugu/telugu-blwm-before.svg @@ -9,7 +9,7 @@ - + diff --git a/images/telugu/telugu-blwm.svg b/images/telugu/telugu-blwm.svg index 2129ac1..fe52916 100644 --- a/images/telugu/telugu-blwm.svg +++ b/images/telugu/telugu-blwm.svg @@ -11,7 +11,7 @@ - + @@ -30,7 +30,7 @@ - + @@ -50,7 +50,7 @@ - + From 0b2c76443a07e5b03ba1797e3fbc85a0482cd34d Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Wed, 2 Oct 2024 13:20:57 +0100 Subject: [PATCH 20/24] Telugu images: add new examples for rphf and pstf. --- images/telugu/telugu-pstf-after.svg | 30 ++++++++++++ images/telugu/telugu-pstf-before.svg | 26 +++++++++++ images/telugu/telugu-pstf.svg | 69 ++++++++++++++++++++++++++++ images/telugu/telugu-rphf-after.svg | 18 ++++++++ images/telugu/telugu-rphf-before.svg | 22 +++++++++ images/telugu/telugu-rphf.svg | 53 +++++++++++++++++++++ 6 files changed, 218 insertions(+) create mode 100644 images/telugu/telugu-pstf-after.svg create mode 100644 images/telugu/telugu-pstf-before.svg create mode 100644 images/telugu/telugu-pstf.svg create mode 100644 images/telugu/telugu-rphf-after.svg create mode 100644 images/telugu/telugu-rphf-before.svg create mode 100644 images/telugu/telugu-rphf.svg diff --git a/images/telugu/telugu-pstf-after.svg b/images/telugu/telugu-pstf-after.svg new file mode 100644 index 0000000..d85540d --- /dev/null +++ b/images/telugu/telugu-pstf-after.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/telugu/telugu-pstf-before.svg b/images/telugu/telugu-pstf-before.svg new file mode 100644 index 0000000..f748366 --- /dev/null +++ b/images/telugu/telugu-pstf-before.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/telugu/telugu-pstf.svg b/images/telugu/telugu-pstf.svg new file mode 100644 index 0000000..7d84e9b --- /dev/null +++ b/images/telugu/telugu-pstf.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/telugu/telugu-rphf-after.svg b/images/telugu/telugu-rphf-after.svg new file mode 100644 index 0000000..9cdf057 --- /dev/null +++ b/images/telugu/telugu-rphf-after.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/images/telugu/telugu-rphf-before.svg b/images/telugu/telugu-rphf-before.svg new file mode 100644 index 0000000..8f440f5 --- /dev/null +++ b/images/telugu/telugu-rphf-before.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/telugu/telugu-rphf.svg b/images/telugu/telugu-rphf.svg new file mode 100644 index 0000000..aa14172 --- /dev/null +++ b/images/telugu/telugu-rphf.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 1fe6efa62376efc921d7870b7314efad5b084a1b Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Wed, 2 Oct 2024 19:23:21 +0100 Subject: [PATCH 21/24] Oriya images: clean up lots of broken examples, add blwf-ra--raphala example. --- images/oriya/oriya-akhn-kssa-before.svg | 8 +++- images/oriya/oriya-akhn-kssa.svg | 12 +++-- images/oriya/oriya-blwf-ra-after.svg | 22 +++++++++ images/oriya/oriya-blwf-ra-before.svg | 26 +++++++++++ images/oriya/oriya-blwf-ra.svg | 61 +++++++++++++++++++++++++ images/oriya/oriya-blwm-before.svg | 2 +- images/oriya/oriya-blwm.svg | 2 +- images/oriya/oriya-haln-after.svg | 4 +- images/oriya/oriya-haln-before.svg | 8 ++-- images/oriya/oriya-haln.svg | 14 +++--- 10 files changed, 138 insertions(+), 21 deletions(-) create mode 100644 images/oriya/oriya-blwf-ra-after.svg create mode 100644 images/oriya/oriya-blwf-ra-before.svg create mode 100644 images/oriya/oriya-blwf-ra.svg diff --git a/images/oriya/oriya-akhn-kssa-before.svg b/images/oriya/oriya-akhn-kssa-before.svg index 3becf97..abf3ca6 100644 --- a/images/oriya/oriya-akhn-kssa-before.svg +++ b/images/oriya/oriya-akhn-kssa-before.svg @@ -1,18 +1,22 @@ - + - + + + + + diff --git a/images/oriya/oriya-akhn-kssa.svg b/images/oriya/oriya-akhn-kssa.svg index adcebcd..3b7ca89 100644 --- a/images/oriya/oriya-akhn-kssa.svg +++ b/images/oriya/oriya-akhn-kssa.svg @@ -2,13 +2,16 @@ - + - + + + + @@ -31,16 +34,17 @@ + - + - + diff --git a/images/oriya/oriya-blwf-ra-after.svg b/images/oriya/oriya-blwf-ra-after.svg new file mode 100644 index 0000000..e6ffbf7 --- /dev/null +++ b/images/oriya/oriya-blwf-ra-after.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/oriya/oriya-blwf-ra-before.svg b/images/oriya/oriya-blwf-ra-before.svg new file mode 100644 index 0000000..39e2a2a --- /dev/null +++ b/images/oriya/oriya-blwf-ra-before.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/oriya/oriya-blwf-ra.svg b/images/oriya/oriya-blwf-ra.svg new file mode 100644 index 0000000..c958b88 --- /dev/null +++ b/images/oriya/oriya-blwf-ra.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/oriya/oriya-blwm-before.svg b/images/oriya/oriya-blwm-before.svg index bdad5ca..02cf319 100644 --- a/images/oriya/oriya-blwm-before.svg +++ b/images/oriya/oriya-blwm-before.svg @@ -16,7 +16,7 @@ - + diff --git a/images/oriya/oriya-blwm.svg b/images/oriya/oriya-blwm.svg index 8c3743b..b0f7d41 100644 --- a/images/oriya/oriya-blwm.svg +++ b/images/oriya/oriya-blwm.svg @@ -37,7 +37,7 @@ - + diff --git a/images/oriya/oriya-haln-after.svg b/images/oriya/oriya-haln-after.svg index 6c6ffe2..ae3ed3c 100644 --- a/images/oriya/oriya-haln-after.svg +++ b/images/oriya/oriya-haln-after.svg @@ -1,12 +1,12 @@ - + - + diff --git a/images/oriya/oriya-haln-before.svg b/images/oriya/oriya-haln-before.svg index ed72713..fe94005 100644 --- a/images/oriya/oriya-haln-before.svg +++ b/images/oriya/oriya-haln-before.svg @@ -1,22 +1,22 @@ - + - + - + - + diff --git a/images/oriya/oriya-haln.svg b/images/oriya/oriya-haln.svg index 37a2335..a542a38 100644 --- a/images/oriya/oriya-haln.svg +++ b/images/oriya/oriya-haln.svg @@ -2,16 +2,16 @@ - + - + - + @@ -27,24 +27,24 @@ - + - + - + - + From f3101c061173b1f6a9c6de4ec298028396a1c971 Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Fri, 4 Oct 2024 12:37:26 +0100 Subject: [PATCH 22/24] Kannada images: fix broken examples and bad crops. --- images/kannada/kannada-abvs-before.svg | 8 ++++++-- images/kannada/kannada-abvs.svg | 12 ++++++++---- images/kannada/kannada-blwf-after.svg | 2 +- images/kannada/kannada-blwf.svg | 2 +- images/kannada/kannada-blwm-before.svg | 2 +- images/kannada/kannada-blwm.svg | 6 +++--- images/kannada/kannada-blws-after.svg | 8 ++++---- images/kannada/kannada-blws-before.svg | 12 ++++++++---- images/kannada/kannada-blws.svg | 22 +++++++++++++--------- images/kannada/kannada-haln-before.svg | 8 ++++++-- images/kannada/kannada-haln.svg | 12 ++++++++---- images/kannada/kannada-psts-after.svg | 8 ++++---- images/kannada/kannada-psts-before.svg | 12 ++++++++---- images/kannada/kannada-psts.svg | 22 +++++++++++++--------- 14 files changed, 84 insertions(+), 52 deletions(-) diff --git a/images/kannada/kannada-abvs-before.svg b/images/kannada/kannada-abvs-before.svg index b25ecbd..1fa86f7 100644 --- a/images/kannada/kannada-abvs-before.svg +++ b/images/kannada/kannada-abvs-before.svg @@ -1,18 +1,22 @@ - + - + + + + + diff --git a/images/kannada/kannada-abvs.svg b/images/kannada/kannada-abvs.svg index dec21b2..0baa311 100644 --- a/images/kannada/kannada-abvs.svg +++ b/images/kannada/kannada-abvs.svg @@ -2,13 +2,16 @@ - + - + + + + @@ -31,16 +34,17 @@ + - + - + diff --git a/images/kannada/kannada-blwf-after.svg b/images/kannada/kannada-blwf-after.svg index 80ac877..76612c9 100644 --- a/images/kannada/kannada-blwf-after.svg +++ b/images/kannada/kannada-blwf-after.svg @@ -1,5 +1,5 @@ - + diff --git a/images/kannada/kannada-blwf.svg b/images/kannada/kannada-blwf.svg index c71e15e..86cc6cd 100644 --- a/images/kannada/kannada-blwf.svg +++ b/images/kannada/kannada-blwf.svg @@ -2,7 +2,7 @@ - + diff --git a/images/kannada/kannada-blwm-before.svg b/images/kannada/kannada-blwm-before.svg index dfffa61..8d19f97 100644 --- a/images/kannada/kannada-blwm-before.svg +++ b/images/kannada/kannada-blwm-before.svg @@ -1,5 +1,5 @@ - + diff --git a/images/kannada/kannada-blwm.svg b/images/kannada/kannada-blwm.svg index b243117..47f9cfb 100644 --- a/images/kannada/kannada-blwm.svg +++ b/images/kannada/kannada-blwm.svg @@ -2,7 +2,7 @@ - + @@ -41,13 +41,13 @@ - + - + diff --git a/images/kannada/kannada-blws-after.svg b/images/kannada/kannada-blws-after.svg index 5372342..e9648e0 100644 --- a/images/kannada/kannada-blws-after.svg +++ b/images/kannada/kannada-blws-after.svg @@ -1,22 +1,22 @@ - + - + - + - + diff --git a/images/kannada/kannada-blws-before.svg b/images/kannada/kannada-blws-before.svg index 5372342..796fefa 100644 --- a/images/kannada/kannada-blws-before.svg +++ b/images/kannada/kannada-blws-before.svg @@ -1,22 +1,26 @@ - + - + - + + + + - + + diff --git a/images/kannada/kannada-blws.svg b/images/kannada/kannada-blws.svg index 9711b6b..5f85ce1 100644 --- a/images/kannada/kannada-blws.svg +++ b/images/kannada/kannada-blws.svg @@ -2,16 +2,19 @@ - + - + - + + + + @@ -27,30 +30,31 @@ - + - + - + + - + - + - + diff --git a/images/kannada/kannada-haln-before.svg b/images/kannada/kannada-haln-before.svg index 74922e5..e1c3676 100644 --- a/images/kannada/kannada-haln-before.svg +++ b/images/kannada/kannada-haln-before.svg @@ -1,18 +1,22 @@ - + - + + + + + diff --git a/images/kannada/kannada-haln.svg b/images/kannada/kannada-haln.svg index b94cc7e..c77ba51 100644 --- a/images/kannada/kannada-haln.svg +++ b/images/kannada/kannada-haln.svg @@ -2,13 +2,16 @@ - + - + + + + @@ -31,16 +34,17 @@ + - + - + diff --git a/images/kannada/kannada-psts-after.svg b/images/kannada/kannada-psts-after.svg index 8e705e4..b23c105 100644 --- a/images/kannada/kannada-psts-after.svg +++ b/images/kannada/kannada-psts-after.svg @@ -1,22 +1,22 @@ - + - + - + - + diff --git a/images/kannada/kannada-psts-before.svg b/images/kannada/kannada-psts-before.svg index 8e705e4..1912f24 100644 --- a/images/kannada/kannada-psts-before.svg +++ b/images/kannada/kannada-psts-before.svg @@ -1,22 +1,26 @@ - + - + - + + + + - + + diff --git a/images/kannada/kannada-psts.svg b/images/kannada/kannada-psts.svg index bbd0d99..5f5c9c9 100644 --- a/images/kannada/kannada-psts.svg +++ b/images/kannada/kannada-psts.svg @@ -2,16 +2,19 @@ - + - + - + + + + @@ -27,30 +30,31 @@ - + - + - + + - + - + - + From 2d81e159a1444f8d09b670c70afed61b68ea812e Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Fri, 4 Oct 2024 12:56:28 +0100 Subject: [PATCH 23/24] Myanmar images: Switch dotted-form example to Noto Serif and fix bad mkmk crop. --- images/myanmar/myanmar-dotted-after.svg | 12 ++++-------- images/myanmar/myanmar-dotted-before.svg | 8 ++++---- images/myanmar/myanmar-dotted.svg | 22 +++++++++------------- images/myanmar/myanmar-mkmk-after.svg | 2 +- images/myanmar/myanmar-mkmk.svg | 6 +++--- 5 files changed, 21 insertions(+), 29 deletions(-) diff --git a/images/myanmar/myanmar-dotted-after.svg b/images/myanmar/myanmar-dotted-after.svg index 6f43970..2e8e64c 100644 --- a/images/myanmar/myanmar-dotted-after.svg +++ b/images/myanmar/myanmar-dotted-after.svg @@ -1,22 +1,18 @@ - + - + - - - - + - - + diff --git a/images/myanmar/myanmar-dotted-before.svg b/images/myanmar/myanmar-dotted-before.svg index 989bc45..4503d52 100644 --- a/images/myanmar/myanmar-dotted-before.svg +++ b/images/myanmar/myanmar-dotted-before.svg @@ -1,18 +1,18 @@ - + - + - + - + diff --git a/images/myanmar/myanmar-dotted.svg b/images/myanmar/myanmar-dotted.svg index a2e3e59..2f4372c 100644 --- a/images/myanmar/myanmar-dotted.svg +++ b/images/myanmar/myanmar-dotted.svg @@ -2,13 +2,13 @@ - + - + - + @@ -21,32 +21,28 @@ - + - - - - + - + - + - + - - + diff --git a/images/myanmar/myanmar-mkmk-after.svg b/images/myanmar/myanmar-mkmk-after.svg index 3cf254c..cbbb0f0 100644 --- a/images/myanmar/myanmar-mkmk-after.svg +++ b/images/myanmar/myanmar-mkmk-after.svg @@ -1,5 +1,5 @@ - + diff --git a/images/myanmar/myanmar-mkmk.svg b/images/myanmar/myanmar-mkmk.svg index e5e285b..ad85bf4 100644 --- a/images/myanmar/myanmar-mkmk.svg +++ b/images/myanmar/myanmar-mkmk.svg @@ -2,7 +2,7 @@ - + @@ -40,7 +40,7 @@ - + @@ -48,7 +48,7 @@ - + From 10b88263cbe7e9fdab35f90aca76e2f8d65d157a Mon Sep 17 00:00:00 2001 From: Nathan Willis Date: Fri, 4 Oct 2024 14:41:09 +0100 Subject: [PATCH 24/24] Oriya, images, minor: bwlf-ra files should be named blwf-raphala. --- .../{oriya-blwf-ra-after.svg => oriya-blwf-raphala-after.svg} | 0 .../{oriya-blwf-ra-before.svg => oriya-blwf-raphala-before.svg} | 0 images/oriya/{oriya-blwf-ra.svg => oriya-blwf-raphala.svg} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename images/oriya/{oriya-blwf-ra-after.svg => oriya-blwf-raphala-after.svg} (100%) rename images/oriya/{oriya-blwf-ra-before.svg => oriya-blwf-raphala-before.svg} (100%) rename images/oriya/{oriya-blwf-ra.svg => oriya-blwf-raphala.svg} (100%) diff --git a/images/oriya/oriya-blwf-ra-after.svg b/images/oriya/oriya-blwf-raphala-after.svg similarity index 100% rename from images/oriya/oriya-blwf-ra-after.svg rename to images/oriya/oriya-blwf-raphala-after.svg diff --git a/images/oriya/oriya-blwf-ra-before.svg b/images/oriya/oriya-blwf-raphala-before.svg similarity index 100% rename from images/oriya/oriya-blwf-ra-before.svg rename to images/oriya/oriya-blwf-raphala-before.svg diff --git a/images/oriya/oriya-blwf-ra.svg b/images/oriya/oriya-blwf-raphala.svg similarity index 100% rename from images/oriya/oriya-blwf-ra.svg rename to images/oriya/oriya-blwf-raphala.svg