jclic 2.1.3 → 2.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +4 -1
- package/CHANGELOG.md +16 -0
- package/dist/jclic-node.js +32066 -2
- package/dist/jclic-node.js.map +1 -1
- package/dist/jclic.components.LICENSE +2420 -2
- package/dist/jclic.min.js +5 -5
- package/dist/jclic.min.js.map +1 -1
- package/jsdoc.config.js +71 -71
- package/package.json +21 -21
- package/src/Deps.js +132 -2
- package/src/GlobalData.js +1 -1
- package/src/JClic.js +1 -132
- package/src/Utils.js +65 -6
- package/src/activities/text/IdentifyText.js +43 -6
- package/src/activities/text/OrderText.js +1 -1
- package/src/activities/text/TextActivityBase.js +58 -15
- package/src/bags/MediaBagElement.js +10 -1
- package/src/skins/Skin.js +1 -1
- package/webpack.config.js +14 -7
package/.eslintrc.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
### v2.1.6 (2022-01-24)
|
|
2
|
+
#### Improvements
|
|
3
|
+
- Upgraded dependencies
|
|
4
|
+
- Use [ink-docstrap-template](https://www.npmjs.com/package/ink-docstrap-template) instead [ink-docstrap](https://www.npmjs.com/package/ink-docstrap) to deal with updated components, thus avoiding security warnings
|
|
5
|
+
- Direct use of [jsdom](https://www.npmjs.com/package/jsdom) instead of [mock-browser](https://www.npmjs.com/package/mock-browser) (outdated) in `test/nodejs`, to avoid security warnings
|
|
6
|
+
|
|
7
|
+
#### Bug fixes
|
|
8
|
+
- `IdentifyText` activities were not fully implemented: only targets could be selected. You can now select any word (or letter in `identifyChars` mode), although not part of a target. To be successful with the activity, only the targets must be selected.
|
|
9
|
+
|
|
10
|
+
### v2.1.5 (2021-11-07)
|
|
11
|
+
#### Improvements
|
|
12
|
+
- Upgraded dependencies
|
|
13
|
+
|
|
14
|
+
#### Bug fixes
|
|
15
|
+
- Avoid bad URLs in local files when running on NodeJS with JSDOM
|
|
16
|
+
|
|
1
17
|
### v2.1.3 (2021-07-28)
|
|
2
18
|
#### Improvements
|
|
3
19
|
- Recycle HTML audio elements instead of building one for each audio file at startup. This has been motivated by a breaking change
|