Skip to content

Commit

Permalink
4.0.14 release
Browse files Browse the repository at this point in the history
  • Loading branch information
enact-bot committed May 14, 2024
2 parents af24809 + 1de2ad8 commit 122b2fa
Show file tree
Hide file tree
Showing 17 changed files with 55 additions and 21 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

The following is a curated list of changes in the Enact project, newest changes on the top.

## [4.0.14] - 2024-05-14

### Fixed

- `i18n` resource loader to prioritize strings from additional resources files

## [4.0.13] - 2022-11-29

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "4.0.0",
"version": "4.0.13",
"version": "4.0.14",
"command": {
"bootstrap": {
"ci": false,
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enact",
"version": "4.0.13",
"version": "4.0.14",
"description": "Monorepo for all Enact front end libraries.",
"private": true,
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

The following is a curated list of changes in the Enact core module, newest changes on the top.

## [4.0.14] - 2024-05-14

No significant changes.

## [4.0.13] - 2022-11-29

No significant changes.
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enact/core",
"version": "4.0.13",
"version": "4.0.14",
"description": "Enact is an open source JavaScript framework containing everything you need to create a fast, scalable mobile or web application.",
"main": "index.js",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions packages/i18n/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

The following is a curated list of changes in the Enact i18n module, newest changes on the top.

## [4.0.14] - 2024-05-14

### Fixed

- `i18n` resource loader to prioritize strings from additional resources files

## [4.0.13] - 2022-11-29

No significant changes.
Expand Down
4 changes: 2 additions & 2 deletions packages/i18n/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@enact/i18n",
"main": "./src/index.js",
"version": "4.0.13",
"version": "4.0.14",
"description": "Internationalization support for Enact using iLib",
"scripts": {
"clean": "enact clean",
Expand Down Expand Up @@ -41,7 +41,7 @@
]
},
"dependencies": {
"@enact/core": "^4.0.13",
"@enact/core": "^4.0.14",
"prop-types": "^15.7.2",
"ramda": "^0.24.1",
"react": "^17.0.1",
Expand Down
8 changes: 5 additions & 3 deletions packages/i18n/src/Loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,10 +253,12 @@ EnyoLoader.prototype.loadFiles = function (paths, sync, params, callback, rootPa
if (this.isAvailable(_root, path)) {
getSync(this._pathjoin(_root, path), handler);

if (this.addPaths && Array.isArray(this.addPaths)) {
if (this.addPaths && Array.isArray(this.addPaths) && index === paths.length - 1) {
for (let addedRoot of this.addPaths) {
if (this.isAvailable(addedRoot, path)) {
getSync(this._pathjoin(addedRoot, path), handleAdditionalResourcesPath);
for (let i = 0; i <= index; i++) {
if (this.isAvailable(addedRoot, paths[i])) {
getSync(this._pathjoin(addedRoot, paths[i]), handleAdditionalResourcesPath);
}
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions packages/sampler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

The following is a curated list of changes in the Enact Sampler, newest changes on the top.

## [4.0.14] - 2024-05-14

No significant changes.

## [4.0.13] - 2022-11-29

- Replaced the deprecated plugin `addon-knobs` with `addon-controls`
Expand Down
12 changes: 6 additions & 6 deletions packages/sampler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enact-sampler",
"version": "4.0.13",
"version": "4.0.14",
"description": "Component and QA samples for Enact",
"private": true,
"main": "index.js",
Expand All @@ -12,11 +12,11 @@
},
"license": "Apache-2.0",
"dependencies": {
"@enact/core": "^4.0.13",
"@enact/i18n": "^4.0.13",
"@enact/spotlight": "^4.0.13",
"@enact/ui": "^4.0.13",
"@enact/webos": "^4.0.13",
"@enact/core": "^4.0.14",
"@enact/i18n": "^4.0.14",
"@enact/spotlight": "^4.0.14",
"@enact/ui": "^4.0.14",
"@enact/webos": "^4.0.14",
"classnames": "^2.2.6",
"ilib": "^14.4.0",
"prop-types": "^15.7.2",
Expand Down
4 changes: 4 additions & 0 deletions packages/spotlight/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

The following is a curated list of changes in the Enact spotlight module, newest changes on the top.

## [4.0.14] - 2024-05-14

No significant changes.

## [4.0.13] - 2022-11-29

No significant changes.
Expand Down
4 changes: 2 additions & 2 deletions packages/spotlight/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enact/spotlight",
"version": "4.0.13",
"version": "4.0.14",
"description": "A focus management library",
"main": "src/spotlight.js",
"scripts": {
Expand All @@ -18,7 +18,7 @@
}
},
"dependencies": {
"@enact/core": "^4.0.13",
"@enact/core": "^4.0.14",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"ramda": "^0.24.1",
Expand Down
4 changes: 4 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

The following is a curated list of changes in the Enact ui module, newest changes on the top.

## [4.0.14] - 2024-05-14

No significant changes.

## [4.0.13] - 2022-11-29

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enact/ui",
"version": "4.0.13",
"version": "4.0.14",
"description": "A collection of simplified unstyled cross-platform UI components for Enact",
"main": "index.js",
"scripts": {
Expand All @@ -25,7 +25,7 @@
}
},
"dependencies": {
"@enact/core": "^4.0.13",
"@enact/core": "^4.0.14",
"classnames": "^2.2.5",
"direction": "^1.0.1",
"invariant": "^2.2.2",
Expand Down
4 changes: 4 additions & 0 deletions packages/webos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

The following is a curated list of changes in the Enact webos module, newest changes on the top.

## [4.0.14] - 2024-05-14

No significant changes.

## [4.0.13] - 2022-11-29

No significant changes.
Expand Down
4 changes: 2 additions & 2 deletions packages/webos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enact/webos",
"version": "4.0.13",
"version": "4.0.14",
"description": "webOS support library",
"main": "index.js",
"scripts": {
Expand All @@ -25,7 +25,7 @@
}
},
"dependencies": {
"@enact/core": "^4.0.13",
"@enact/core": "^4.0.14",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
Expand Down

0 comments on commit 122b2fa

Please sign in to comment.