Releases: iLib-js/flutter_ilib
Releases · iLib-js/flutter_ilib
v1.0.0
1.0.0
- Updated the structure to load separate locale data files.
Previously, the dependent ilib was a fully assembled JS file. Now, the ilib files are divided into the js and locale files.
The JS code is assembled asilib-init.js
, and the locale files are generated with names like[language].js
, e.g.en.js
,ko.js
.
The iLib files are generated using the ilib-assemble tool. This change brings memory savings over previous versions of flutter_ilib.
Initially, when the app is launched, the package automatically loads the locale data by detecting the system's locale. To load the updated locale data file when the locale changes, I suggest adding the following method at the appropriate time when the locale chanages._flutterIlibPlugin.loadLocaleData(curLocale);
- published on pub.dev : https://pub.dev/packages/flutter_ilib/versions/1.0.0
v0.4.0
0.4.0
- Added libquickjs_c_bridge_plugin.so for aarch64-webos
- Updated CMakeLists.txt for webos to support both arm and aarch64
- Update documentation
- Update** documentation regarding the newly added methods in ILibDateFmt class
- Removed locale option in ILibDateOptions example
- Activated some test cases that were commented out