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. - Remove the EBU R128 loudness normalization as it's not working as intended.
- Fix the API key validation when using the complex syntax. - 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 # Version 4.9
- Add basic duplicate call detection and rejection. - Add basic duplicate call detection and rejection.

View file

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

View file

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

View file

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

View file

@ -545,7 +545,8 @@ class Controller extends EventEmitter {
if (!system || !talkgroup) { if (!system || !talkgroup) {
console.log(`NewCall: system=${call.system || 'unknown'} talkgroup=${call.talkgroup || 'unknown'} ` 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; return;
} }
@ -573,7 +574,7 @@ class Controller extends EventEmitter {
return; return;
} }
if (!this.config.disableAudioConversion) { if (!this.config.options.disableAudioConversion) {
try { try {
call = await this.convertCallAudio(call); call = await this.convertCallAudio(call);

View file

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

View file

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