remote-calibrator 0.3.0-rc.3 → 0.5.0-beta.10
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 +35 -3
- package/README.md +34 -49
- package/homepage/example.css +4 -3
- package/homepage/example.js +42 -22
- package/homepage/index.html +19 -4
- package/i18n/fetch-languages-sheets.js +11 -1
- package/lib/RemoteCalibrator.min.js +1 -1
- package/lib/RemoteCalibrator.min.js.LICENSE.txt +19 -2
- package/lib/RemoteCalibrator.min.js.map +1 -1
- package/netlify.toml +1 -1
- package/package.json +25 -24
- package/src/WebGazer4RC/package-lock.json +198 -143
- package/src/WebGazer4RC/package.json +2 -2
- package/src/WebGazer4RC/src/index.mjs +161 -52
- package/src/WebGazer4RC/test/webgazer_test.js +1 -1
- package/src/check/checkScreenSize.js +84 -0
- package/src/components/buttons.js +21 -4
- package/src/components/input.js +82 -0
- package/src/components/keyBinder.js +5 -6
- package/src/components/language.js +5 -0
- package/src/components/mediaPermission.js +21 -0
- package/src/components/onCanvas.js +2 -2
- package/src/components/sound.js +30 -2
- package/src/components/swalOptions.js +6 -3
- package/src/components/utils.js +27 -1
- package/src/components/video.js +9 -6
- package/src/const.js +15 -0
- package/src/core.js +103 -48
- package/src/css/buttons.scss +34 -7
- package/src/css/components.scss +57 -0
- package/src/css/distance.scss +71 -1
- package/src/css/gaze.css +9 -5
- package/src/css/main.css +22 -6
- package/src/css/panel.scss +33 -3
- package/src/css/screenSize.css +6 -5
- package/src/css/swal.css +1 -1
- package/src/css/video.scss +19 -0
- package/src/distance/distance.js +194 -41
- package/src/distance/distanceCheck.js +241 -0
- package/src/distance/distanceTrack.js +165 -68
- package/src/{interpupillaryDistance.js → distance/interPupillaryDistance.js} +27 -19
- package/src/gaze/gaze.js +4 -7
- package/src/gaze/gazeAccuracy.js +9 -4
- package/src/gaze/gazeCalibration.js +14 -4
- package/src/gaze/gazeTracker.js +40 -9
- package/src/i18n.js +1 -1
- package/src/index.js +7 -2
- package/src/media/two-side-arrow.svg +1 -0
- package/src/media/two-sided-horizontal.svg +1 -0
- package/src/media/two-sided-vertical.svg +3 -0
- package/src/panel.js +130 -65
- package/src/screenSize.js +38 -5
- package/webpack.config.js +7 -4
- 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/src/displaySize.js +0 -28
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
localForage -- Offline Storage, Improved
|
3
|
-
Version 1.
|
3
|
+
Version 1.10.0
|
4
4
|
https://localforage.github.io/localForage
|
5
5
|
(c) 2013-2017 Mozilla, Apache License 2.0
|
6
6
|
*/
|
@@ -8,7 +8,7 @@
|
|
8
8
|
/*!
|
9
9
|
*
|
10
10
|
* @license
|
11
|
-
* EasyEyes Remote Calibrator (remote-calibrator) Version 0.
|
11
|
+
* EasyEyes Remote Calibrator (remote-calibrator) Version 0.5.0-beta.10
|
12
12
|
* https://github.com/EasyEyes/remote-calibrator
|
13
13
|
*
|
14
14
|
* Copyright 2021 Denis Pelli Lab
|
@@ -240,3 +240,20 @@
|
|
240
240
|
* @license http://opensource.org/licenses/MIT MIT License
|
241
241
|
* @copyright 2014-2019 Yotam Mann
|
242
242
|
*/
|
243
|
+
|
244
|
+
/**
|
245
|
+
* @license
|
246
|
+
* Copyright 2018 Google LLC. All Rights Reserved.
|
247
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
248
|
+
* you may not use this file except in compliance with the License.
|
249
|
+
* You may obtain a copy of the License at
|
250
|
+
*
|
251
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
252
|
+
*
|
253
|
+
* Unless required by applicable law or agreed to in writing, software
|
254
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
255
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
256
|
+
* See the License for the specific language governing permissions and
|
257
|
+
* limitations under the License.
|
258
|
+
* =============================================================================
|
259
|
+
*/
|