Version 2.5.1: minor fixes

This commit is contained in:
Chrystian Huot 2020-01-09 12:44:31 -05:00
parent 98261dd88e
commit 1c62d9d1fc
5 changed files with 16 additions and 4 deletions

View file

@ -1,4 +1,4 @@
# Rdio Scanner v2.5 # Rdio Scanner v2.5.1
*Rdio Scanner* is a progressive web interface designed to resemble an old school radio scanner. It integrates all frontend / backend components to manage audio files from different sources. *Rdio Scanner* is a progressive web interface designed to resemble an old school radio scanner. It integrates all frontend / backend components to manage audio files from different sources.

View file

@ -1,6 +1,6 @@
{ {
"name": "rdio-scanner-client", "name": "rdio-scanner-client",
"version": "2.5.0", "version": "2.5.1",
"private": true, "private": true,
"scripts": { "scripts": {
"build": "ng build --cross-origin use-credentials --prod $*", "build": "ng build --cross-origin use-credentials --prod $*",

View file

@ -242,6 +242,8 @@ export class AppRdioScannerComponent implements OnDestroy, OnInit {
this.unsubscribeLivefeed(); this.unsubscribeLivefeed();
this.subscribeLivefeed(); this.subscribeLivefeed();
} }
this.buildGroups();
} }
} }
@ -279,6 +281,8 @@ export class AppRdioScannerComponent implements OnDestroy, OnInit {
this.unsubscribeLivefeed(); this.unsubscribeLivefeed();
this.subscribeLivefeed(); this.subscribeLivefeed();
} }
this.buildGroups();
} }
} }
@ -467,6 +471,14 @@ export class AppRdioScannerComponent implements OnDestroy, OnInit {
toggleGroup(name: string): void { toggleGroup(name: string): void {
const group = this.groups.find((_group) => _group.name === name); const group = this.groups.find((_group) => _group.name === name);
if (this.selectionSystemHold) {
this._selectionSystemHold = null;
}
if (this.selectionTalkgroupHold) {
this._selectionTalkgroupHold = null;
}
if (group) { if (group) {
const status = group.status === RdioScannerGroupStatus.On ? false : true; const status = group.status === RdioScannerGroupStatus.On ? false : true;

View file

@ -1,6 +1,6 @@
{ {
"name": "rdio-scanner", "name": "rdio-scanner",
"version": "2.5.0", "version": "2.5.1",
"private": true, "private": true,
"main": "run.js", "main": "run.js",
"scripts": { "scripts": {

View file

@ -1,6 +1,6 @@
{ {
"name": "rdio-scanner-server", "name": "rdio-scanner-server",
"version": "2.5.0", "version": "2.5.1",
"private": true, "private": true,
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {