Skip to content

Commit

Permalink
Merge branch 'feature-kmc-kmw' into chore/developer/cleanup-wasm-data…
Browse files Browse the repository at this point in the history
…-passing
  • Loading branch information
mcdurdin authored Jun 23, 2023
2 parents 9216a69 + 3730f2d commit c67c21d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/schemas/displaymap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ adjustments to the generated font.

## Standard conventions for use of displayMaps

In the Keyman keyboards repository, the PUA range used should start at `U+9100`.
In the Keyman keyboards repository, the PUA range used should start at `U+F100`.

`&displayMap` JSON files should be named `Kbd<script>.json` where `<script>` is
a [4 letter script subtag][4], for example `KbdKhmr.json`, and the corresponding
Expand Down
4 changes: 3 additions & 1 deletion developer/src/kmc-kmn/src/kmw-compiler/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export const
CSpecialText10: string = '*Shift*\0*Enter*\0*Tab*\0*BkSp*\0*Menu*\0*Hide*\0*Alt*\0*Ctrl*\0*Caps*\0' +
'*ABC*\0*abc*\0*123*\0*Symbol*\0*Currency*\0*Shifted*\0*AltGr*\0*TabLeft*',
// these names were added in Keyman 14
CSpecialText14: string = '*LTREnter*\0*LTRBkSp*\0*RTLEnter*\0*RTLBkSp*\0*ShiftLock*\0*ShiftedLock*\0*ZWNJ*\0*ZWNJiOS*\0*ZWNJAndroid*', CSpecialText14ZWNJ: string = '*ZWNJ*\0*ZWNJiOS*\0*ZWNJAndroid*', CSpecialText14Map: string[][] = [
CSpecialText14: string = '*LTREnter*\0*LTRBkSp*\0*RTLEnter*\0*RTLBkSp*\0*ShiftLock*\0*ShiftedLock*\0*ZWNJ*\0*ZWNJiOS*\0*ZWNJAndroid*',
CSpecialText14ZWNJ: string = '*ZWNJ*\0*ZWNJiOS*\0*ZWNJAndroid*',
CSpecialText14Map: string[][] = [
['*LTREnter*', '*Enter*'],
['*LTRBkSp*', '*BkSp*'],
['*RTLEnter*', '*Enter*'],
Expand Down

0 comments on commit c67c21d

Please sign in to comment.