released v0.2.2 with critical bug fix

This commit is contained in:
Sam Schott 2019-07-21 13:37:02 +01:00
parent 5ad81301dc
commit 49397e35f1
4 changed files with 5 additions and 6 deletions

View File

@ -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)

View File

@ -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.

View File

@ -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:

View File

@ -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"