diff --git a/CHANGELOG.md b/CHANGELOG.md
index 00d5d9dd..2c9b5074 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/README.md b/README.md
index b6bd273c..15daaf4e 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-
+
# Antares
diff --git a/docs/screen-alpha.png b/docs/screen-alpha.png
new file mode 100644
index 00000000..452226d2
Binary files /dev/null and b/docs/screen-alpha.png differ
diff --git a/package.json b/package.json
index fb82e1d1..7783e8ff 100644
--- a/package.json
+++ b/package.json
@@ -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 ",
"build": {
diff --git a/src/main/libs/AntaresConnector.js b/src/main/libs/AntaresConnector.js
index dcc8bbd3..2d03ec70 100644
--- a/src/main/libs/AntaresConnector.js
+++ b/src/main/libs/AntaresConnector.js
@@ -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 = {
diff --git a/src/renderer/components/ModalSettingsUpdate.vue b/src/renderer/components/ModalSettingsUpdate.vue
index 39fb98af..f956526f 100644
--- a/src/renderer/components/ModalSettingsUpdate.vue
+++ b/src/renderer/components/ModalSettingsUpdate.vue
@@ -45,7 +45,7 @@ export default {
computed: {
...mapGetters({
updateStatus: 'application/getUpdateStatus',
- downloadPercentage: 'application/getDownloadProgress'
+ downloadPercentage: 'application/getDownloadProgress'// TODO: remove float
}),
updateMessage () {
switch (this.updateStatus) {