Skip to content

Commit

Permalink
Merge branch 'beta' into fix/core/10955-reset-on-frame
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 committed Apr 16, 2024
2 parents 37530ac + 6a2b901 commit 5c04599
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Keyman Version History

## 17.0.308 beta 2024-04-13

* chore(developer): use keyboard3 tag rather than DTD to identify LDML keyboard xml files (#11214)

## 17.0.307 beta 2024-04-12

* fix(common): specify title explicitly when opening PR with hub (#11173)
* refactor(web): better centralizes OSK layout internals to prepare for optimization efforts 🪠 (#11176)
* feat(web): VisualKeyboard layout-reflow optimization 🪠 (#11177)
* change(web): OSK optimization, improved responsiveness 🪠 (#11140)
* (#11216)

## 17.0.306 beta 2024-04-11

* docs(ios): updates iOS app help for 17.0 banner changes (#11200)
Expand Down
2 changes: 1 addition & 1 deletion VERSION.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17.0.307
17.0.309
2 changes: 1 addition & 1 deletion common/web/types/src/kpj/keyman-developer-project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class KeymanDeveloperProject {
try {
const data = this.callbacks.loadFile(fullPath);
const text = new TextDecoder().decode(data);
if(!text?.match(/ldmlKeyboard3\.dtd/)) {
if(!text?.match(/<keyboard3/)) {
// Skip this .xml because we assume it isn't really a keyboard .xml
continue;
}
Expand Down

0 comments on commit 5c04599

Please sign in to comment.