Skip to content

Commit

Permalink
chore(web): Merge branch 'master' into chore/web/feature-gestures-upd…
Browse files Browse the repository at this point in the history
…ate-a17s23-mid
  • Loading branch information
jahorton committed Oct 10, 2023
2 parents a60cd7e + 7806192 commit d6072f6
Show file tree
Hide file tree
Showing 363 changed files with 7,649 additions and 8,247 deletions.
25 changes: 25 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Keyman Version History

## 17.0.186 alpha 2023-10-04

* feat(developer): show an INFO message when warnings have failed a build (#9652)
* chore(developer): reduce duplicate words warning to hint (#9653)
* feat(developer): issue hint if package includes keyboard source files (#9658)
* chore(developer): switch on code coverage reporting for kmc (#9662)
* fix(core): clean cached ICU in core (#9668)
* feat(developer): warn if .kps includes a .js which is not touch-capable (#9667)

## 17.0.185 alpha 2023-10-03

* chore(web): Add non-printing characters to the OSK (#9547)
* feat(developer): support `store(&version) '17.0'` (#9656)
* chore(developer): add test for `checkFilenameConventions == false` or unset (#9661)
* feat(developer): ldml scan codes support (#9615)

## 17.0.184 alpha 2023-10-02

* fix(web): fixes toolbar refocus timing after a keyboard change (#9618)

## 17.0.183 alpha 2023-09-29

* feat(web): browser-KMW support for default subkeys (#9496)
* refactor(linux): Add more tests for `keymanutil.c` ️ (#9595)

## 17.0.182 alpha 2023-09-28

* chore(web): builds that output to web/build/publish should also clean it (#9613)
Expand Down
2 changes: 1 addition & 1 deletion VERSION.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17.0.183
17.0.187
Binary file not shown.
Binary file modified android/Tests/KeyboardHarness/app/src/main/assets/test9469.kmp
Binary file not shown.
2 changes: 2 additions & 0 deletions android/Tests/KeyboardHarness/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and consists of these engineering keyboards:
* web/testing/chirality/chirality.js
* web/testing/platform/platformtest.js

test9469.kmp is another engineering keyboard to show non-printing characters on the OSK.

### Compiling From Command Line
1. Launch a command prompt to the `android/` folder
2. Compile KMEA. This will build and copy `keyman-engine.aar` to the Samples and Test projects
Expand Down
12 changes: 6 additions & 6 deletions common/include/km_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ typedef uint8_t KMX_BYTE;
typedef uint16_t KMX_WORD;

#if defined(__cplusplus)
typedef char16_t km_kbp_cp;
typedef char32_t km_kbp_usv;
typedef char16_t km_core_cp;
typedef char32_t km_core_usv;
#else
typedef uint16_t km_kbp_cp; // code point
typedef uint32_t km_kbp_usv; // Unicode Scalar Value
typedef uint16_t km_core_cp; // code point
typedef uint32_t km_core_usv; // Unicode Scalar Value
#endif

typedef km_kbp_cp KMX_WCHAR; // wc, 16-bit UNICODE character
typedef km_core_cp KMX_WCHAR; // wc, 16-bit UNICODE character
typedef KMX_WCHAR* PKMX_WCHAR;

typedef char KMX_CHAR;
Expand All @@ -60,7 +60,7 @@ typedef KMX_DWORD* PKMX_DWORD;

#ifdef USE_CHAR16_T
#define lpuch(x) u ## x
typedef km_kbp_cp KMX_UCHAR;
typedef km_core_cp KMX_UCHAR;
#else
#define lpuch(x) L ## x
typedef wchar_t KMX_UCHAR;
Expand Down
3 changes: 2 additions & 1 deletion common/include/kmx_file.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ namespace kmx {
#define VERSION_150 0x00000F00

#define VERSION_160 0x00001000
#define VERSION_170 0x00001100

#define VERSION_MIN VERSION_50
#define VERSION_MAX VERSION_160
#define VERSION_MAX VERSION_170

//
// Backspace types
Expand Down
2 changes: 1 addition & 1 deletion common/include/test_assert.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#endif
#define try_status(expr) { \
auto __s = (expr); \
if (__s != KM_KBP_STATUS_OK) { \
if (__s != KM_CORE_STATUS_OK) { \
_assert_failed(__s, u ## #expr); \
} \
}
Expand Down
4 changes: 1 addition & 3 deletions common/models/templates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@
"exports": {
".": "./build/obj/index.js",
"./lib": {
"types": "./build/lib/index.d.ts",
"import": "./build/lib/index.mjs",
"require": "./build/lib/index.cjs"
"types": "./build/lib/index.d.ts"
},
"./obj/*.js": "./build/obj/*.js"
},
Expand Down
3 changes: 1 addition & 2 deletions common/models/wordbreakers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
"exports": {
".": "./build/obj/index.js",
"./lib": {
"import": "./build/lib/index.mjs",
"require": "./build/lib/index.cjs"
"types": "./build/lib/index.d.ts"
},
"./obj/*.js": "./build/obj/*.js"
},
Expand Down
28 changes: 0 additions & 28 deletions common/predictive-text/testing/index.html

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

72 changes: 0 additions & 72 deletions common/predictive-text/testing/post-blob-webworker/index.html

This file was deleted.

Loading

0 comments on commit d6072f6

Please sign in to comment.