From 49397e35f131c821b59c78f1b2ddf91c49c9edc1 Mon Sep 17 00:00:00 2001 From: Sam Schott Date: Sun, 21 Jul 2019 13:37:02 +0100 Subject: [PATCH] released v0.2.2 with critical bug fix --- CHANGELOG.md | 4 +++- README.md | 3 --- maestral/gui/main.py | 2 +- maestral/main.py | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6356feea..909eb884 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -### v0.2.2-dev1 (2019-07-19) +### v0.2.2 (2019-07-19) _Added_: @@ -17,10 +17,12 @@ _Changed_: will not be downloadable but can only be exported. Maestral will ignore such files. - Moved deprecated API calls to v2. - Better handling of `OSErrors` on download. +- Tweaks to logo. _Fixed_: - Fixed a bug which would prevent some error dialogs from being shown to the user. +- Fixed a bug which would cause the setup dialog to crash after linking to Dropbox. ### v0.2.1 (2019-07-18) diff --git a/README.md b/README.md index c197bfe3..d0f600da 100644 --- a/README.md +++ b/README.md @@ -108,9 +108,6 @@ The following tasks could need your help: - Meastral is still in beta status. Even through highly unlikely, using it may potentially result in loss of data. - Known issues: - - File and folder names with two periods are currently not supported. This prevents - syncing of temporary files which are created during the save process on some file - systems. - Network drives and some external hard drives are not supported as locations for the Dropbox folder. diff --git a/maestral/gui/main.py b/maestral/gui/main.py index 63903748..92f2a277 100644 --- a/maestral/gui/main.py +++ b/maestral/gui/main.py @@ -371,9 +371,9 @@ class MaestralApp(QtWidgets.QSystemTrayIcon): def run(): + QtCore.QCoreApplication.setAttribute(QtCore.Qt.AA_UseHighDpiPixmaps) app = QtWidgets.QApplication(["Maestral"]) app.setAttribute(QtCore.Qt.AA_UseHighDpiPixmaps) - app.setAttribute(QtCore.Qt.AA_EnableHighDpiScaling) app.setQuitOnLastWindowClosed(False) if FIRST_SYNC: diff --git a/maestral/main.py b/maestral/main.py index 429f812a..7ce24a5f 100644 --- a/maestral/main.py +++ b/maestral/main.py @@ -6,7 +6,7 @@ Created on Wed Oct 31 16:23:13 2018 @author: samschott """ -__version__ = "0.2.2-dev1" +__version__ = "0.2.2" __author__ = "Sam Schott" __url__ = "https://github.com/SamSchott/maestral"