mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
Version 4.7.2
This commit is contained in:
parent
f63111f2ab
commit
d7e1cc67e5
|
|
@ -7,6 +7,13 @@
|
||||||
- Remove Config.options.useGroup, but the feature remains.
|
- Remove Config.options.useGroup, but the feature remains.
|
||||||
- Bug fixes.
|
- Bug fixes.
|
||||||
|
|
||||||
|
## Version 4.7.1
|
||||||
|
- Fix crash on client when access to talkgroups is restricted with a password.
|
||||||
|
|
||||||
|
## Version 4.7.2
|
||||||
|
- Fix Keypad beeps not working on iOS.
|
||||||
|
- Fix pause not going off due to the above bug.
|
||||||
|
|
||||||
# Version 4.6
|
# Version 4.6
|
||||||
|
|
||||||
- Fix documentation in regards to load-rrd in install-github.md.
|
- Fix documentation in regards to load-rrd in install-github.md.
|
||||||
|
|
|
||||||
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": "4.7.1",
|
"version": "4.7.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": "4.7.1"
|
"version": "4.7.2"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -589,7 +589,15 @@ export class AppRdioScannerService implements OnDestroy {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.beepContext) {
|
if (this.beepContext) {
|
||||||
|
const resume = () => {
|
||||||
|
if (this.beepContext?.state === 'suspended') {
|
||||||
|
this.beepContext?.resume().then(() => resume());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
await this.beepContext.resume();
|
await this.beepContext.resume();
|
||||||
|
|
||||||
|
this.beepContext.onstatechange = () => resume();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.audioContext && this.beepContext) {
|
if (this.audioContext && this.beepContext) {
|
||||||
|
|
|
||||||
|
|
@ -11,5 +11,5 @@
|
||||||
"start": "node run",
|
"start": "node run",
|
||||||
"update": "node update"
|
"update": "node update"
|
||||||
},
|
},
|
||||||
"version": "4.7.1"
|
"version": "4.7.2"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
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": "4.7.1",
|
"version": "4.7.2",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
||||||
|
|
@ -39,5 +39,5 @@
|
||||||
"build": "webpack",
|
"build": "webpack",
|
||||||
"start": "nodemon"
|
"start": "nodemon"
|
||||||
},
|
},
|
||||||
"version": "4.7.1"
|
"version": "4.7.2"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue