Skip to content

Commit

Permalink
chore: prepare release
Browse files Browse the repository at this point in the history
- bump version numbers
- recompile .wasm files with recent binaryen
  • Loading branch information
mnater committed Dec 1, 2020
1 parent 5991e0e commit fe8c056
Show file tree
Hide file tree
Showing 159 changed files with 85 additions and 69 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Version History

## Version 4.9.0 (not yet released)
## Version 4.9.0 (2020-12-01)
### Fixed
* Add compatibility to node v10 (thanks to yashha and danburzo, #154)

Expand Down
2 changes: 1 addition & 1 deletion Hyphenopoly.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Hyphenopoly 4.8.1 - client side hyphenation for webbrowsers
* @license Hyphenopoly 4.9.0 - client side hyphenation for webbrowsers
* ©2020 Mathias Nater, Güttingen (mathiasnater at gmail dot com)
* https://github.com/mnater/Hyphenopoly
*
Expand Down
2 changes: 1 addition & 1 deletion Hyphenopoly_Loader.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Hyphenopoly_Loader 4.8.1 - client side hyphenation
* @license Hyphenopoly_Loader 4.9.0 - client side hyphenation
* ©2020 Mathias Nater, Güttingen (mathiasnater at gmail dot com)
* https://github.com/mnater/Hyphenopoly
*
Expand Down
2 changes: 1 addition & 1 deletion hyphenopoly.module.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Hyphenopoly.module.js 4.8.1 - hyphenation for node
* @license Hyphenopoly.module.js 4.9.0 - hyphenation for node
* ©2020 Mathias Nater, Güttingen (mathiasnater at gmail dot com)
* https://github.com/mnater/Hyphenopoly
*
Expand Down
Binary file modified lang/af/af.wasm
Binary file not shown.
Binary file modified lang/as/as.wasm
Binary file not shown.
Binary file modified lang/be/be.wasm
Binary file not shown.
Binary file modified lang/bg/bg.wasm
Binary file not shown.
Binary file modified lang/bn/bn.wasm
Binary file not shown.
Binary file modified lang/ca/ca.wasm
Binary file not shown.
Binary file modified lang/cs/cs.wasm
Binary file not shown.
Binary file modified lang/cy/cy.wasm
Binary file not shown.
Binary file modified lang/da/da.wasm
Binary file not shown.
Binary file modified lang/de/de.wasm
Binary file not shown.
Binary file modified lang/el-monoton/el-monoton.wasm
Binary file not shown.
Binary file modified lang/el-polyton/el-polyton.wasm
Binary file not shown.
Binary file modified lang/en-gb/en-gb.wasm
Binary file not shown.
Binary file modified lang/en-us/en-us.wasm
Binary file not shown.
Binary file modified lang/eo/eo.wasm
Binary file not shown.
Binary file modified lang/es/es.wasm
Binary file not shown.
Binary file modified lang/et/et.wasm
Binary file not shown.
Binary file modified lang/eu/eu.wasm
Binary file not shown.
Binary file modified lang/fi/fi.wasm
Binary file not shown.
Binary file modified lang/fr/fr.wasm
Binary file not shown.
Binary file modified lang/fur/fur.wasm
Binary file not shown.
Binary file modified lang/ga/ga.wasm
Binary file not shown.
Binary file modified lang/gl/gl.wasm
Binary file not shown.
Binary file modified lang/gu/gu.wasm
Binary file not shown.
Binary file modified lang/hi/hi.wasm
Binary file not shown.
Binary file modified lang/hr/hr.wasm
Binary file not shown.
Binary file modified lang/hsb/hsb.wasm
Binary file not shown.
Binary file modified lang/hu/hu.wasm
Binary file not shown.
Binary file modified lang/hy/hy.wasm
Binary file not shown.
Binary file modified lang/ia/ia.wasm
Binary file not shown.
Binary file modified lang/id/id.wasm
Binary file not shown.
Binary file modified lang/is/is.wasm
Binary file not shown.
Binary file modified lang/it/it.wasm
Binary file not shown.
Binary file modified lang/ka/ka.wasm
Binary file not shown.
Binary file modified lang/kmr/kmr.wasm
Binary file not shown.
Binary file modified lang/kn/kn.wasm
Binary file not shown.
Binary file modified lang/la/la.wasm
Binary file not shown.
Binary file modified lang/lt/lt.wasm
Binary file not shown.
Binary file modified lang/lv/lv.wasm
Binary file not shown.
Binary file modified lang/mk/mk.wasm
Binary file not shown.
Binary file modified lang/ml/ml.wasm
Binary file not shown.
Binary file modified lang/mn-cyrl/mn-cyrl.wasm
Binary file not shown.
Binary file modified lang/mr/mr.wasm
Binary file not shown.
Binary file modified lang/nb/nb.wasm
Binary file not shown.
Binary file modified lang/nl/nl.wasm
Binary file not shown.
Binary file modified lang/nn/nn.wasm
Binary file not shown.
Binary file modified lang/no/no.wasm
Binary file not shown.
Binary file modified lang/oc/oc.wasm
Binary file not shown.
Binary file modified lang/or/or.wasm
Binary file not shown.
Binary file modified lang/pa/pa.wasm
Binary file not shown.
Binary file modified lang/pl/pl.wasm
Binary file not shown.
Binary file modified lang/pms/pms.wasm
Binary file not shown.
Binary file modified lang/pt/pt.wasm
Binary file not shown.
Binary file modified lang/rm/rm.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/rm/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/ro/ro.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/ro/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/ru/ru.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/ru/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/sh-cyrl/sh-cyrl.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/sh-cyrl/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/sh-latn/sh-latn.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/sh-latn/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/sk/sk.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/sk/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/sl/sl.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/sl/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/sr-cyrl/sr-cyrl.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/sr-cyrl/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
9 changes: 5 additions & 4 deletions lang/sv/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/sv/sv.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/ta/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/ta/ta.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/te/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/te/te.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/th/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/th/th.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/tk/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/tk/tk.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/tr/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/tr/tr.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/uk/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/uk/uk.wasm
Binary file not shown.
9 changes: 5 additions & 4 deletions lang/zh-latn-pinyin/src/hyphenEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,14 @@ export function hyphenate(lmin: i32, rmin: i32, hc: i32): i32 {
rmin = wordLength - rmin - 1;
while (charOffset < wordLength) {
store<u16>(
hw + ((charOffset + hyphenPointsCount) << 1),
load<u16>(wo + (charOffset << 1), 2)
(charOffset + hyphenPointsCount) << 1,
load<u16>(charOffset << 1, wo + 2),
hw
);
if ((charOffset >= lmin - 1) && (charOffset <= rmin)) {
if (load<u8>(hp + charOffset, 2) & 1) {
if (load<u8>(charOffset, hp + 2) & 1) {
hyphenPointsCount += 1;
store<u16>(hw + ((charOffset + hyphenPointsCount) << 1), hc);
store<u16>((charOffset + hyphenPointsCount) << 1, hc, hw);
}
}
charOffset += 1;
Expand Down
Binary file modified lang/zh-latn-pinyin/zh-latn-pinyin.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hyphenopoly",
"version": "4.8.1",
"version": "4.9.0",
"description": "Hyphenation for node and Polyfill for client-side hyphenation.",
"keywords": [
"hyphenation",
Expand Down
Binary file modified patterns/af.wasm
Binary file not shown.
Binary file modified patterns/as.wasm
Binary file not shown.
Binary file modified patterns/be.wasm
Binary file not shown.
Binary file modified patterns/bg.wasm
Binary file not shown.
Binary file modified patterns/bn.wasm
Binary file not shown.
Binary file modified patterns/ca.wasm
Binary file not shown.
Binary file modified patterns/cs.wasm
Binary file not shown.
Binary file modified patterns/cy.wasm
Binary file not shown.
Binary file modified patterns/da.wasm
Binary file not shown.
Binary file modified patterns/de.wasm
Binary file not shown.
Binary file modified patterns/el-monoton.wasm
Binary file not shown.
Binary file modified patterns/el-polyton.wasm
Binary file not shown.
Binary file modified patterns/en-gb.wasm
Binary file not shown.
Binary file modified patterns/en-us.wasm
Binary file not shown.
Binary file modified patterns/eo.wasm
Binary file not shown.
Binary file modified patterns/es.wasm
Binary file not shown.
Binary file modified patterns/et.wasm
Binary file not shown.
Binary file modified patterns/eu.wasm
Binary file not shown.
Binary file modified patterns/fi.wasm
Binary file not shown.
Binary file modified patterns/fr.wasm
Binary file not shown.
Binary file modified patterns/fur.wasm
Binary file not shown.
Binary file modified patterns/ga.wasm
Binary file not shown.
Binary file modified patterns/gl.wasm
Binary file not shown.
Binary file modified patterns/gu.wasm
Binary file not shown.
Binary file modified patterns/hi.wasm
Binary file not shown.
Binary file modified patterns/hr.wasm
Binary file not shown.
Binary file modified patterns/hsb.wasm
Binary file not shown.
Binary file modified patterns/hu.wasm
Binary file not shown.
Binary file modified patterns/hy.wasm
Binary file not shown.
Binary file modified patterns/ia.wasm
Binary file not shown.
Binary file modified patterns/id.wasm
Binary file not shown.
Binary file modified patterns/is.wasm
Binary file not shown.
Binary file modified patterns/it.wasm
Binary file not shown.
Binary file modified patterns/ka.wasm
Binary file not shown.
Binary file modified patterns/kmr.wasm
Binary file not shown.
Binary file modified patterns/kn.wasm
Binary file not shown.
Binary file modified patterns/la.wasm
Binary file not shown.
Binary file modified patterns/lt.wasm
Binary file not shown.
Binary file modified patterns/lv.wasm
Binary file not shown.
Binary file modified patterns/mk.wasm
Binary file not shown.
Binary file modified patterns/ml.wasm
Binary file not shown.
Binary file modified patterns/mn-cyrl.wasm
Binary file not shown.
Binary file modified patterns/mr.wasm
Binary file not shown.
Binary file modified patterns/nb.wasm
Binary file not shown.
Binary file modified patterns/nl.wasm
Binary file not shown.
Binary file modified patterns/nn.wasm
Binary file not shown.
Binary file modified patterns/no.wasm
Binary file not shown.
Binary file modified patterns/oc.wasm
Binary file not shown.
Binary file modified patterns/or.wasm
Binary file not shown.
Binary file modified patterns/pa.wasm
Binary file not shown.
Binary file modified patterns/pl.wasm
Binary file not shown.
Binary file modified patterns/pms.wasm
Binary file not shown.
Binary file modified patterns/pt.wasm
Binary file not shown.
Binary file modified patterns/rm.wasm
Binary file not shown.
Binary file modified patterns/ro.wasm
Binary file not shown.
Binary file modified patterns/ru.wasm
Binary file not shown.
Binary file modified patterns/sh-cyrl.wasm
Binary file not shown.
Binary file modified patterns/sh-latn.wasm
Binary file not shown.
Binary file modified patterns/sk.wasm
Binary file not shown.
Binary file modified patterns/sl.wasm
Binary file not shown.
Binary file modified patterns/sr-cyrl.wasm
Binary file not shown.
Binary file modified patterns/sv.wasm
Binary file not shown.
Binary file modified patterns/ta.wasm
Binary file not shown.
Binary file modified patterns/te.wasm
Binary file not shown.
Binary file modified patterns/th.wasm
Binary file not shown.
Binary file modified patterns/tk.wasm
Binary file not shown.
Binary file modified patterns/tr.wasm
Binary file not shown.
Binary file modified patterns/uk.wasm
Binary file not shown.
Binary file modified patterns/zh-latn-pinyin.wasm
Binary file not shown.

0 comments on commit fe8c056

Please sign in to comment.