speaker-calibration 2.2.145 → 2.2.146

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speaker-calibration",
3
- "version": "2.2.145",
3
+ "version": "2.2.146",
4
4
  "description": "Speaker calibration library for auditory testing",
5
5
  "main": "dist/main.js",
6
6
  "directories": {
@@ -99,6 +99,7 @@ class Speaker extends AudioPeer {
99
99
  params.calibrateSoundBurstDb,
100
100
  params.calibrateSoundBurstFilteredExtraDb,
101
101
  params.calibrateSoundBurstLevelReTBool,
102
+ params.calibrateSoundBurstUses1000HzGainBool,
102
103
  params.calibrateSoundBurstRepeats,
103
104
  params.calibrateSoundBurstSec,
104
105
  params.calibrateSoundBurstsWarmup,
@@ -503,6 +504,7 @@ class Speaker extends AudioPeer {
503
504
  params.calibrateSoundBurstDb,
504
505
  params.calibrateSoundBurstFilteredExtraDb,
505
506
  params.calibrateSoundBurstLevelReTBool,
507
+ params.calibrateSoundBurstUses1000HzGainBool,
506
508
  params.calibrateSoundBurstRepeats,
507
509
  params.calibrateSoundBurstSec,
508
510
  params.calibrateSoundBurstsWarmup,
@@ -2470,6 +2470,7 @@ class Combination extends AudioCalibrator {
2470
2470
  _calibrateSoundBurstDb = -18,
2471
2471
  _calibrateSoundBurstFilteredExtraDb = 6,
2472
2472
  _calibrateSoundBurstLevelReTBool = false,
2473
+ _calibrateSoundBurstUses1000HzGainBool = false,
2473
2474
  _calibrateSoundBurstRepeats = 3,
2474
2475
  _calibrateSoundBurstSec = 1,
2475
2476
  _calibrateSoundBurstsWarmup = 1,
@@ -2517,6 +2518,7 @@ class Combination extends AudioCalibrator {
2517
2518
  this._calibrateSoundBackgroundSecs = _calibrateSoundBackgroundSecs;
2518
2519
  this._calibrateSoundSmoothOctaves = _calibrateSoundSmoothOctaves;
2519
2520
  this._calibrateSoundPowerBinDesiredSec = _calibrateSoundPowerBinDesiredSec;
2521
+ this._calibrateSoundBurstUses1000HzGainBool = _calibrateSoundBurstUses1000HzGainBool;
2520
2522
  this._calibrateSoundPowerDbSDToleratedDb = _calibrateSoundPowerDbSDToleratedDb;
2521
2523
  this.webAudioDeviceNames = webAudioDeviceNames;
2522
2524
  if (isSmartPhone) this.webAudioDeviceNames.microphone = this.deviceInfo.microphoneFromAPI;