diff --git a/CHANGELOG.md b/CHANGELOG.md index 23d0412..2227daf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Version 4.9 + +- Add basic duplicate call detection and rejection. +- Add keyboard shortcuts for the main buttons. +- Add an avoid indicator when the talkgroup is avoided. +- Add an no link indicator when websocket connection is down. +- Node modules update. + # Version 4.8 - Add downstream.system.id_as property to allow export system with a different id. diff --git a/client/package-lock.json b/client/package-lock.json index 5b14bd6..40fd583 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -1,6 +1,6 @@ { "name": "rdio-scanner-client", - "version": "4.8.5", + "version": "4.9.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -1609,9 +1609,9 @@ "dev": true }, "@types/node": { - "version": "14.14.16", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.16.tgz", - "integrity": "sha512-naXYePhweTi+BMv11TgioE2/FXU4fSl29HAH1ffxVciNsH3rYXjNP2yM8wqmSm7jS20gM8TIklKiTen+1iVncw==", + "version": "14.14.19", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.19.tgz", + "integrity": "sha512-4nhBPStMK04rruRVtVc6cDqhu7S9GZai0fpXgPXrFpcPX6Xul8xnrjSdGB4KPBVYG/R5+fXWdCM8qBoiULWGPQ==", "dev": true }, "@types/parse-json": { diff --git a/client/package.json b/client/package.json index 9c57e8d..5e59d49 100644 --- a/client/package.json +++ b/client/package.json @@ -19,7 +19,7 @@ "@angular-devkit/build-angular": "~0.1100.5", "@angular/cli": "^11.0.5", "@angular/compiler-cli": "~11.0.5", - "@types/node": "~14.14.16", + "@types/node": "~14.14.19", "codelyzer": "^6.0.1", "ts-node": "~9.1.1", "tslint": "~6.1.3", @@ -32,5 +32,5 @@ "build": "ng build --base-href ./ --prod", "start": "ng serve" }, - "version": "4.8.5" + "version": "4.9.0" } diff --git a/client/proxy.conf.js b/client/proxy.conf.js index a267276..d8d5e5e 100644 --- a/client/proxy.conf.js +++ b/client/proxy.conf.js @@ -1,6 +1,6 @@ /* * ***************************************************************************** - * Copyright (C) 2019-2020 Chrystian Huot + * Copyright (C) 2019-2021 Chrystian Huot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index eb47637..a648f35 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts @@ -1,6 +1,6 @@ /* * ***************************************************************************** - * Copyright (C) 2019-2020 Chrystian Huot + * Copyright (C) 2019-2021 Chrystian Huot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index c2b3701..54d9921 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts @@ -1,6 +1,6 @@ /* * ***************************************************************************** - * Copyright (C) 2019-2020 Chrystian Huot + * Copyright (C) 2019-2021 Chrystian Huot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/client/src/app/components/rdio-scanner/index.ts b/client/src/app/components/rdio-scanner/index.ts index f7bc574..660ee26 100644 --- a/client/src/app/components/rdio-scanner/index.ts +++ b/client/src/app/components/rdio-scanner/index.ts @@ -1,6 +1,6 @@ /* * ***************************************************************************** - * Copyright (C) 2019-2020 Chrystian Huot + * Copyright (C) 2019-2021 Chrystian Huot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/client/src/app/components/rdio-scanner/main/main.component.html b/client/src/app/components/rdio-scanner/main/main.component.html index 0cf89b9..af85628 100644 --- a/client/src/app/components/rdio-scanner/main/main.component.html +++ b/client/src/app/components/rdio-scanner/main/main.component.html @@ -2,14 +2,18 @@