mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-15 17:33:01 -06:00
Version 5.0.2
This commit is contained in:
parent
896f1c0c03
commit
ab31503b1f
|
|
@ -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.
|
||||||
|
|
|
||||||
2
client/package-lock.json
generated
2
client/package-lock.json
generated
|
|
@ -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": {
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,5 @@
|
||||||
"start": "node run",
|
"start": "node run",
|
||||||
"update": "node update"
|
"update": "node update"
|
||||||
},
|
},
|
||||||
"version": "5.0.1"
|
"version": "5.0.2"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
||||||
|
|
|
||||||
2
server/package-lock.json
generated
2
server/package-lock.json
generated
|
|
@ -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": {
|
||||||
|
|
|
||||||
|
|
@ -39,5 +39,5 @@
|
||||||
"build": "webpack",
|
"build": "webpack",
|
||||||
"start": "nodemon"
|
"start": "nodemon"
|
||||||
},
|
},
|
||||||
"version": "5.0.1"
|
"version": "5.0.2"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue