Skip to content

Commit

Permalink
Merge pull request #6 from iLib-js/changeset-release/main
Browse files Browse the repository at this point in the history
Version Packages
  • Loading branch information
gouniLee authored Feb 18, 2025
2 parents 58d4b3f + 4b21a81 commit ba544db
Show file tree
Hide file tree
Showing 18 changed files with 179 additions and 136 deletions.
12 changes: 0 additions & 12 deletions .changeset/five-falcons-try.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fuzzy-carrots-hope.md

This file was deleted.

46 changes: 27 additions & 19 deletions packages/ilib-loctool-webos-c/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# ilib-loctool-webos-c

## 1.7.5

### Patch Changes

- 079439a: Updated dependencies. (loctool: 2.28.1)
- Updated dependencies [079439a]
- [email protected]

## 1.7.4

- Updated dependencies. (loctool: 2.24.0)
Expand All @@ -22,13 +30,13 @@

- Updated dependencies. (loctool: 2.22.0)
- Added ability to disable pseudo-localization in plugin when a project's pseudo-localization is enabled.
~~~~
"settings": {
"c": {
"disablePseudo": true
}
}
~~~~
```
"settings": {
"c": {
"disablePseudo": true
}
}
```

## 1.6.0

Expand Down Expand Up @@ -64,35 +72,35 @@
- Updated dependencies. (loctool: 2.20.0)
- Added ability to define custom locale inheritance.
- e.g. en-AU inherits translations from en-GB
~~~~
```
"settings": {
"localeInherit": {
"en-AU": "en-GB"
}
}
~~~~
```
- Added ability to use common locale data.
- App's xliff data has a higher priority, if there's no matched string there, then loctool checks data in the commonXliff directory.
~~~~
```
"settings": {
"webos": {
"commonXliff": "./common"
}
}
~~~~
```
## 1.2.0
- Updated dependencies. (loctool: 2.18.0)
- Updated to support loctool's generate mode.
- Added ability to override language default locale.
~~~~
"settings": {
"localeMap": {
"es-CO": "es"
}
}
~~~~
```
"settings": {
"localeMap": {
"es-CO": "es"
}
}
```
## 1.1.7
Expand Down Expand Up @@ -137,4 +145,4 @@
## 1.0.0
- Implemented to parse properly regarding resource bundle usage of C files.
- Implemented to parse properly regarding resource bundle usage of C files.
2 changes: 1 addition & 1 deletion packages/ilib-loctool-webos-c/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ilib-loctool-webos-c",
"version": "1.7.4",
"version": "1.7.5",
"main": "./CFileType.js",
"description": "A loctool plugin that knows how to process C files",
"license": "Apache-2.0",
Expand Down
37 changes: 23 additions & 14 deletions packages/ilib-loctool-webos-cpp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# ilib-loctool-webos-cpp

## 1.7.5

### Patch Changes

- 079439a: Updated dependencies. (loctool: 2.28.1)
- Updated dependencies [079439a]
- [email protected]

## 1.7.4

- Updated dependencies. (loctool: 2.24.0)
Expand All @@ -23,13 +31,14 @@
- Updated dependencies. (loctool: 2.22.0)
- Updated to support more file extsnsions.
- Added ability to disable pseudo-localization in plugin when a project's pseudo-localization is enabled.
~~~~

```
"settings": {
"cpp": {
"disablePseudo": true
}
}
~~~~
```

## 1.6.0

Expand Down Expand Up @@ -65,35 +74,35 @@
- Updated dependencies. (loctool: 2.20.0)
- Added ability to define custom locale inheritance.
- e.g. en-AU inherits translations from en-GB
~~~~
```
"settings": {
"localeInherit": {
"en-AU": "en-GB"
}
}
~~~~
```
- Added ability to use common locale data.
- App's xliff data has a higher priority, if there's no matched string there, then loctool checks data in the commonXliff directory.
~~~~
```
"settings": {
"webos": {
"commonXliff": "./common"
}
}
~~~~
```
## 1.2.0
- Updated dependencies. (loctool: 2.18.0)
- Updated to support loctool's generate mode.
- Added ability to override language default locale.
~~~~
"settings": {
"localeMap": {
"es-CO": "es"
}
}
~~~~
```
"settings": {
"localeMap": {
"es-CO": "es"
}
}
```
## 1.1.7
Expand Down Expand Up @@ -138,4 +147,4 @@
## 1.0.0
- Implemented to parse properly regarding resource bundle usage of Cpp files.
- Implemented to parse properly regarding resource bundle usage of Cpp files.
2 changes: 1 addition & 1 deletion packages/ilib-loctool-webos-cpp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ilib-loctool-webos-cpp",
"version": "1.7.4",
"version": "1.7.5",
"main": "./CppFileType.js",
"description": "A loctool plugin that knows how to process C++ files",
"license": "Apache-2.0",
Expand Down
10 changes: 9 additions & 1 deletion packages/ilib-loctool-webos-dart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# ilib-loctool-webos-dart

## 1.1.1

### Patch Changes

- 079439a: Updated dependencies. (loctool: 2.28.1)
- Updated dependencies [079439a]
- [email protected]

## 1.1.0

- Fixed to generate the pseudo localization data correctly.
Expand All @@ -11,4 +19,4 @@

## 1.0.0

- initial version
- initial version
2 changes: 1 addition & 1 deletion packages/ilib-loctool-webos-dart/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ilib-loctool-webos-dart",
"version": "1.1.0",
"version": "1.1.1",
"main": "./DartFileType.js",
"description": "A loctool plugin that knows how to process JS files",
"license": "Apache-2.0",
Expand Down
55 changes: 32 additions & 23 deletions packages/ilib-loctool-webos-javascript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# ilib-loctool-webos-javascript

## 1.10.7

### Patch Changes

- 079439a: Updated dependencies. (loctool: 2.28.1)
- 96e8bf4: Update dependencies. (loctool: 2.28.1)
- Updated dependencies [079439a]
- [email protected]

## 1.10.6

- Updated dependencies. (loctool: 2.24.0)
Expand Down Expand Up @@ -31,13 +40,13 @@

- Updated dependencies. (loctool: 2.22.0)
- Added ability to disable pseudo-localization in plugin when a project's pseudo-localization is enabled.
~~~~
"settings": {
"javascript": {
"disablePseudo": true
}
}
~~~~
```
"settings": {
"javascript": {
"disablePseudo": true
}
}
```

## 1.9.0

Expand Down Expand Up @@ -71,35 +80,35 @@

- Updated dependencies. (loctool: 2.20.0)
- Added ability to define custom locale inheritance.
~~~~
"settings": {
"localeInherit": {
"en-AU": "en-GB"
}
}
~~~~
```
"settings": {
"localeInherit": {
"en-AU": "en-GB"
}
}
```
- Added ability to use common locale data.
- App's xliff data has a higher priority, if there's no matched string there, then loctool checks data in the commonXliff directory.
~~~~
```
"settings": {
"webos": {
"commonXliff": "./common"
}
}
~~~~
```
- Fixed an issue where multi-space could not be properly parsed in key-value use cases.
## 1.5.0
- Updated dependencies. (loctool: 2.18.0)
- Added ability to override language default locale.
~~~~
"settings": {
"localeMap": {
"es-CO": "es"
}
}
~~~~
```
"settings": {
"localeMap": {
"es-CO": "es"
}
}
```
- Updated generate mode to use loctool's new public method.
## 1.4.7
Expand Down
2 changes: 1 addition & 1 deletion packages/ilib-loctool-webos-javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ilib-loctool-webos-javascript",
"version": "1.10.6",
"version": "1.10.7",
"main": "./JavaScriptFileType.js",
"description": "A loctool plugin that knows how to process JS files",
"license": "Apache-2.0",
Expand Down
32 changes: 19 additions & 13 deletions packages/ilib-loctool-webos-json-resource/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# ilib-loctool-webos-json-resource

## 1.7.1

### Patch Changes

- 079439a: Updated dependencies. (loctool: 2.28.1)

## 1.7.0

- Updated to generate the plural pseudo data for the DartFileType correctly.
Expand Down Expand Up @@ -81,8 +87,8 @@

- Updated dependencies. (loctool: 2.17.0)
- Removed source and target comparison code when generating resources.
- en(en-US) (source: Programme, target: Channel)
- en/GB (source: Programme, target: Programme)
- en(en-US) (source: Programme, target: Channel)
- en/GB (source: Programme, target: Programme)

## 1.3.10

Expand Down Expand Up @@ -139,16 +145,16 @@
## 1.2.0

- Supported various resourceOutput file name. It can be specified according to project type.
- If the project type is c or cpp program, it should be written in project configuration.
~~~~json
"settings": {
"locales": ["en-US", "ko-KR", "zh-Hans-CN"],
"resourceFileNames": {
"c": "cstrings.json",
"cpp": "cppstrings.json"
}
- If the project type is c or cpp program, it should be written in project configuration.
```json
"settings": {
"locales": ["en-US", "ko-KR", "zh-Hans-CN"],
"resourceFileNames": {
"c": "cstrings.json",
"cpp": "cppstrings.json"
}
~~~~
}
```

## 1.1.1

Expand All @@ -157,5 +163,5 @@
## 1.1.0

- Generated `ilibmanifest.json` file.
- Updated code to generate `ilibmanifest.json` file not to load unnecessary locale directories.
It's implemented in projectClose()
- Updated code to generate `ilibmanifest.json` file not to load unnecessary locale directories.
It's implemented in projectClose()
2 changes: 1 addition & 1 deletion packages/ilib-loctool-webos-json-resource/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ilib-loctool-webos-json-resource",
"version": "1.7.0",
"version": "1.7.1",
"main": "./JSONResourceFileType.js",
"description": "A loctool plugin that knows how to process JSON resource files",
"license": "Apache-2.0",
Expand Down
Loading

0 comments on commit ba544db

Please sign in to comment.