Version 4.7.2

This commit is contained in:
Chrystian Huot 2020-09-26 09:55:32 -04:00
parent f63111f2ab
commit d7e1cc67e5
7 changed files with 20 additions and 5 deletions

View file

@ -7,6 +7,13 @@
- Remove Config.options.useGroup, but the feature remains.
- 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
- Fix documentation in regards to load-rrd in install-github.md.

View file

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

View file

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

View file

@ -589,7 +589,15 @@ export class AppRdioScannerService implements OnDestroy {
}
if (this.beepContext) {
const resume = () => {
if (this.beepContext?.state === 'suspended') {
this.beepContext?.resume().then(() => resume());
}
};
await this.beepContext.resume();
this.beepContext.onstatechange = () => resume();
}
if (this.audioContext && this.beepContext) {

View file

@ -11,5 +11,5 @@
"start": "node run",
"update": "node update"
},
"version": "4.7.1"
"version": "4.7.2"
}

View file

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

View file

@ -39,5 +39,5 @@
"build": "webpack",
"start": "nodemon"
},
"version": "4.7.1"
"version": "4.7.2"
}