Version 5.0.2

This commit is contained in:
Chrystian Huot 2021-01-09 11:12:16 -05:00
parent 896f1c0c03
commit ab31503b1f
7 changed files with 12 additions and 7 deletions

View file

@ -10,6 +10,10 @@ _v5.0.1_
- Remove the EBU R128 loudness normalization as it's not working as intended.
- Fix the API key validation when using the complex syntax.
_v5.0.2_
- Fix rdioScanner.options.disableAudioConversion which was ignored when true.
# Version 4.9
- Add basic duplicate call detection and rejection.

View file

@ -1,6 +1,6 @@
{
"name": "rdio-scanner-client",
"version": "5.0.1",
"version": "5.0.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View file

@ -32,5 +32,5 @@
"build": "ng build --base-href ./ --prod",
"start": "ng serve"
},
"version": "5.0.1"
"version": "5.0.2"
}

View file

@ -10,5 +10,5 @@
"start": "node run",
"update": "node update"
},
"version": "5.0.1"
"version": "5.0.2"
}

View file

@ -545,7 +545,8 @@ class Controller extends EventEmitter {
if (!system || !talkgroup) {
console.log(`NewCall: system=${call.system || 'unknown'} talkgroup=${call.talkgroup || 'unknown'} `
+ `file=${call.audioName} No matching system/talkgroup`);
+ `file=${call.audioName} No m
atching system/talkgroup`);
return;
}
@ -573,7 +574,7 @@ class Controller extends EventEmitter {
return;
}
if (!this.config.disableAudioConversion) {
if (!this.config.options.disableAudioConversion) {
try {
call = await this.convertCallAudio(call);

View file

@ -1,6 +1,6 @@
{
"name": "rdio-scanner-server",
"version": "5.0.1",
"version": "5.0.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View file

@ -39,5 +39,5 @@
"build": "webpack",
"start": "nodemon"
},
"version": "5.0.1"
"version": "5.0.2"
}