Skip to content

Commit

Permalink
Merge pull request #27 from iLib-js/release_v1.14.0
Browse files Browse the repository at this point in the history
Release for v1.14.0
  • Loading branch information
gouniLee authored Jul 11, 2023
2 parents 2c1262b + 64183f6 commit 10fd434
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 11 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
## 1.14.0
* Updated fixed loctool and plugins version
* note) The last release of `ilib-loctool-webos-appinfo-json` plugin. `ilib-loctool-webos-json` plugin is going to cover `appinfo.json` file localization features as well.
* loctool
* added new `resourceDir` parameter support to util's `formatPath()` which is for modifying the resource root path.
* Fixes in plugins
* webos-javascript/webos-qml/webos-c/webos-cpp/webos-appinfo-json
* Updated not to load common data repeatedly if it's loaded from another plugin in a project.
* webos-c/webos-cpp
* Fixed an issue where didn't handle single quotes properly.
* Supported pseudo localization.
* webos-ts-resource
* Fixed not to have file extension in name element with js file.
* webos-appinfo-json
* Added feature not to do localization if the file is already located in the localization directory.
* Added the mappings configuration of the mapping which is a mapping between a file and an object that gives info used to localize the files that match it.
* webos-json
* Implement for webOS json file (appinfo.json and qcardinfo.json) of localization.
* Most of the code is the same as the ilib-loctool-webos-appinfo-json plugin.
This plugin, however, expands upon the other plugin to support many different types of json files as used in webOS.
* The plugin contains a built-in version of the schema file for the appinfo.json file type.
* For other json file types such as qcardinfo.json, the plugin looks for the schema file in the same directory as the json file.
~~~
"ilib-loctool-webos-appinfo-json": "1.7.0",
"ilib-loctool-webos-c": "1.6.0",
"ilib-loctool-webos-cpp": "1.6.0",
"ilib-loctool-webos-javascript": "1.9.0",
"ilib-loctool-webos-json": "^1.0.0",
"ilib-loctool-webos-json-resource": "1.5.2",
"ilib-loctool-webos-qml": "1.6.0",
"ilib-loctool-webos-ts-resource": "1.4.2",
"loctool": "2.21.0"
~~~

## 1.13.1
* Updated plugins version
* (webos-json-resource/webos-appinfo-json) Fixed to generate `ilibmanifest.json` file correctly even when a dummy file exists.
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Plugins are optimized for the webOS platform.
* [ilib-loctool-webos-cpp](https://github.com/iLib-js/ilib-loctool-webos-cpp): Cpp file handler
* [ilib-loctool-webos-qml](https://github.com/iLib-js/ilib-loctool-webos-qml): QML file handler
* [ilib-loctool-webos-javascript](https://github.com/iLib-js/ilib-loctool-webos-javascript): Javascript file handler
* [ilib-loctool-webos-appinfo-json](https://github.com/iLib-js/ilib-loctool-webos-appinfo-json):`appinfo.json` file handler
* [ilib-loctool-webos-json](https://github.com/iLib-js/ilib-loctool-webos-appinfo-json): JSON file handler
* [ilib-loctool-webos-appinfo-json](https://github.com/iLib-js/ilib-loctool-webos-appinfo-json): `appinfo.json` file handler (It will be deprecated.)
* [ilib-loctool-webos-json-resource](https://github.com/iLib-js/ilib-loctool-webos-json-resource): JSON resource file handler
* [ilib-loctool-webos-ts-resource](https://github.com/iLib-js/ilib-loctool-webos-ts-resource): TS resource file handler

Expand Down
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ilib-loctool-webos-dist",
"version": "1.13.1",
"version": "1.14.0",
"description": "Full-featured build environment for webOS localization",
"main": "index.js",
"repository": {
Expand Down Expand Up @@ -31,13 +31,14 @@
"loctool"
],
"dependencies": {
"ilib-loctool-webos-appinfo-json": "1.6.1",
"ilib-loctool-webos-c": "1.5.2",
"ilib-loctool-webos-cpp": "1.5.2",
"ilib-loctool-webos-javascript": "1.8.2",
"ilib-loctool-webos-json-resource": "1.5.1",
"ilib-loctool-webos-qml": "1.5.1",
"ilib-loctool-webos-ts-resource": "1.4.1",
"loctool": "2.20.2"
"ilib-loctool-webos-appinfo-json": "1.7.0",
"ilib-loctool-webos-c": "1.6.0",
"ilib-loctool-webos-cpp": "1.6.0",
"ilib-loctool-webos-javascript": "1.9.0",
"ilib-loctool-webos-json": "^1.0.0",
"ilib-loctool-webos-json-resource": "1.5.2",
"ilib-loctool-webos-qml": "1.6.0",
"ilib-loctool-webos-ts-resource": "1.4.2",
"loctool": "2.21.0"
}
}
}

0 comments on commit 10fd434

Please sign in to comment.