mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
Version 2.5.1: minor fixes
This commit is contained in:
parent
98261dd88e
commit
1c62d9d1fc
|
|
@ -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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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 $*",
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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": {
|
||||||
|
|
|
||||||
|
|
@ -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": {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue