1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-02-02 18:36:52 +01:00

Text connection fix

This commit is contained in:
Fabio 2020-06-20 21:58:57 +02:00
parent 42e0353393
commit baea5c26e2
6 changed files with 6 additions and 10 deletions

View File

@ -1,6 +1,6 @@
# Changelog
## [0.0.1-alpha]() - Coming Soon
## [0.0.1-alpha](https://github.com/Fabio286/antares/releases/tag/v0.0.1-alpha) - 2020-06-19
### Features

View File

@ -1,5 +1,5 @@
<p align="center">
<img width="256" src="https://raw.githubusercontent.com/Fabio286/antares/master/docs/logo.png">
<img width="256" src="https://raw.githubusercontent.com/Fabio286/antares/master/docs/screen-alpha.png">
</p>
# Antares

BIN
docs/screen-alpha.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

View File

@ -10,7 +10,7 @@
"compile": "electron-webpack",
"dist": "cross-env NODE_ENV=production npm run compile && electron-builder",
"dist:dir": "cross-env NODE_ENV=production npm run dist --dir -c.compression=store -c.mac.identity=null",
"publish": "build -p always"
"publish": "cross-env NODE_ENV=production npm run dist -p always"
},
"author": "Fabio Di Stasio <fabio286@gmail.com>",
"build": {

View File

@ -73,14 +73,10 @@ export class AntaresConnector {
switch (this._client) {
case 'maria':
case 'mysql':
if (!this._poolSize) {
const connection = mysql.createConnection(this._params);
this._connection = connection.promise();
}
if (!this._poolSize)
this._connection = mysql.createConnection(this._params);
else
this._connection = mysql.createPool({ ...this._params, connectionLimit: this._poolSize });
// this._connection = pool.promise();
break;
case 'mssql': {
const mssqlParams = {

View File

@ -45,7 +45,7 @@ export default {
computed: {
...mapGetters({
updateStatus: 'application/getUpdateStatus',
downloadPercentage: 'application/getDownloadProgress'
downloadPercentage: 'application/getDownloadProgress'// TODO: remove float
}),
updateMessage () {
switch (this.updateStatus) {