Version 5.2.3

This commit is contained in:
Chrystian Huot 2021-08-05 12:44:09 -04:00
parent 86adba5907
commit 3edfa3f9ec
8 changed files with 23 additions and 20 deletions

View file

@ -5,18 +5,23 @@
- Fix issue with iframe.
- Node modules updated for security fixes.
_v.5.2.1_
_v5.2.1_
- Fix talkgroup header on the search panel (issue #47).
- Update dirwatch meta tags #DATE, #TIME and #ZTIME for SDRSharp compatibility (issue #48).
- Fix dirwath date and time parsing bug.
- Configurable call duplicate detection time frame.
_v.5.2.2_
_v5.2.2_
- Little changes to the main screen history layout, more room for the second and third columns.
- Node modules updates.
_v5.2.3_
- Change history columns padding from 1px to 6px on the main screen.
- Fix a bug in the admin api where the server crash when saving new config from the admin dashboard.
# Version 5.1
This one is a big one... **Be sure to backup your config.json and your database.sqlite before updating.**

View file

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

View file

@ -34,5 +34,5 @@
"build": "ng build --base-href ./ --configuration production",
"start": "ng serve"
},
"version": "5.2.2"
"version": "5.2.3"
}

View file

@ -14,5 +14,5 @@
"update": "node update"
},
"type": "module",
"version": "5.2.2"
"version": "5.2.3"
}

View file

@ -72,8 +72,6 @@ export class Config {
if (ws.isAlive === false) {
ws.terminate();
this.logClientsCount();
} else {
ws.isAlive = false;

View file

@ -19,6 +19,6 @@
'use strict';
export const version = '5.2.2';
export const version = '5.2.3';
export default version;

View file

@ -1,6 +1,6 @@
{
"name": "rdio-scanner-server",
"version": "5.2.2",
"version": "5.2.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -2724,9 +2724,9 @@
}
},
"mysql2": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/mysql2/-/mysql2-2.2.5.tgz",
"integrity": "sha512-XRqPNxcZTpmFdXbJqb+/CtYVLCx14x1RTeNMD4954L331APu75IC74GDqnZMEt1kwaXy6TySo55rF2F3YJS78g==",
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/mysql2/-/mysql2-2.3.0.tgz",
"integrity": "sha512-0t5Ivps5Tdy5YHk5NdKwQhe/4Qyn2pload+S+UooDBvsqngtzujG1BaTWBihQLfeKO3t3122/GtusBtmHEHqww==",
"requires": {
"denque": "^1.4.1",
"generate-function": "^2.3.1",
@ -2739,9 +2739,9 @@
},
"dependencies": {
"iconv-lite": {
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz",
"integrity": "sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==",
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
"requires": {
"safer-buffer": ">= 2.1.2 < 3.0.0"
}
@ -4079,9 +4079,9 @@
"dev": true
},
"tar": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz",
"integrity": "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==",
"version": "6.1.6",
"resolved": "https://registry.npmjs.org/tar/-/tar-6.1.6.tgz",
"integrity": "sha512-oaWyu5dQbHaYcyZCTfyPpC+VmI62/OM2RTUYavTk1MDr1cwW5Boi3baeYQKiZbY2uSQJGr+iMOzb/JFxLrft+g==",
"requires": {
"chownr": "^2.0.0",
"fs-minipass": "^2.0.0",

View file

@ -13,7 +13,7 @@
"mariadb": "^2.5.4",
"mime-types": "^2.1.32",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"mysql2": "^2.3.0",
"pg": "^8.7.1",
"sequelize": "^6.6.5",
"sqlite3": "^5.0.2",
@ -46,5 +46,5 @@
"start": "nodemon"
},
"type": "module",
"version": "5.2.2"
"version": "5.2.3"
}