remote-calibrator 0.2.2-beta.2 → 0.2.2
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/CHANGELOG.md +4 -1
- package/lib/RemoteCalibrator.min.js +1 -1
- package/lib/RemoteCalibrator.min.js.LICENSE.txt +1 -1
- package/lib/RemoteCalibrator.min.js.map +1 -1
- package/media/measureDistance.png +0 -0
- package/media/panel.png +0 -0
- package/media/screenSize.png +0 -0
- package/media/trackGaze.png +0 -0
- package/package.json +4 -4
- package/src/components/sound.js +2 -2
- package/src/css/main.css +7 -6
- package/src/screenSize.js +1 -1
- package/src/WebGazer4RC/.gitattributes +0 -10
- package/src/WebGazer4RC/LICENSE.md +0 -15
- package/src/WebGazer4RC/README.md +0 -142
- package/src/WebGazer4RC/gnu-lgpl-v3.0.md +0 -163
- package/src/WebGazer4RC/gplv3.md +0 -636
- package/src/WebGazer4RC/package-lock.json +0 -1133
- package/src/WebGazer4RC/package.json +0 -28
- package/src/WebGazer4RC/src/dom_util.mjs +0 -27
- package/src/WebGazer4RC/src/facemesh.mjs +0 -150
- package/src/WebGazer4RC/src/index.mjs +0 -1213
- package/src/WebGazer4RC/src/mat.mjs +0 -301
- package/src/WebGazer4RC/src/params.mjs +0 -29
- package/src/WebGazer4RC/src/pupil.mjs +0 -109
- package/src/WebGazer4RC/src/ridgeReg.mjs +0 -104
- package/src/WebGazer4RC/src/ridgeRegThreaded.mjs +0 -161
- package/src/WebGazer4RC/src/ridgeWeightedReg.mjs +0 -125
- package/src/WebGazer4RC/src/ridgeWorker.mjs +0 -135
- package/src/WebGazer4RC/src/util.mjs +0 -348
- package/src/WebGazer4RC/src/util_regression.mjs +0 -240
- package/src/WebGazer4RC/src/worker_scripts/mat.js +0 -306
- package/src/WebGazer4RC/src/worker_scripts/util.js +0 -398
- package/src/WebGazer4RC/test/regression_test.js +0 -182
- package/src/WebGazer4RC/test/run_tests_and_server.sh +0 -24
- package/src/WebGazer4RC/test/util_test.js +0 -60
- package/src/WebGazer4RC/test/webgazerExtract_test.js +0 -40
- package/src/WebGazer4RC/test/webgazer_test.js +0 -160
- package/src/WebGazer4RC/test/www_page_test.js +0 -41
package/CHANGELOG.md
CHANGED
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [0.2.2] - 2021-10-04
|
11
|
+
|
10
12
|
### Added
|
11
13
|
|
12
14
|
- Sound feedback (2000 Hz, 0.05 s) for responses in blind spot test.
|
@@ -200,7 +202,8 @@ No new feature updates in this release. Updated dependency packages and the lice
|
|
200
202
|
|
201
203
|
The framework and some basic functions, e.g., screen size calibration. Released for integration testing.
|
202
204
|
|
203
|
-
[unreleased]: https://github.com/EasyEyes/remote-calibrator/compare/v0.2.
|
205
|
+
[unreleased]: https://github.com/EasyEyes/remote-calibrator/compare/v0.2.2...develop
|
206
|
+
[0.2.2]: https://github.com/EasyEyes/remote-calibrator/compare/v0.2.1...v0.2.2
|
204
207
|
[0.2.1]: https://github.com/EasyEyes/remote-calibrator/compare/v0.2.0...v0.2.1
|
205
208
|
[0.2.0]: https://github.com/EasyEyes/remote-calibrator/compare/v0.1.1...v0.2.0
|
206
209
|
[0.1.1]: https://github.com/EasyEyes/remote-calibrator/compare/v0.1.0...v0.1.1
|