From c502875f464245697f92574f191b0a0a9f9daf09 Mon Sep 17 00:00:00 2001 From: Sam Schott Date: Sun, 18 Aug 2019 23:44:16 +0100 Subject: [PATCH] version bump to v0.3.2 --- CHANGELOG.md | 18 ++++++++++++++++-- maestral/main.py | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f65e3e8..6edc6bd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ -### v0.3.2-dev +### v0.3.2 + +This release fixes a bug that could result in only changes of top-level items being +synced. This affects users who carried out the initial linking with Maestral v0.2.5 or +later and selected to exclude folders before the first download. Users affected by this +should rebuild Maestral's index by selecting "Rebuild index..." in the main menu. + +Other improvements include expanded command line scripts with more useful output, minor +bug fixes and small tweaks to the UI. #### Added: @@ -27,7 +35,8 @@ - Set minimum version requirement for click package. - Reduced the startup time by downloading profile picture in a thread. Periodically update in the background (every 20 min). -- Check hashes before uploading modified files. +- Check hashes before uploading modified files. This speeds up re-linking an old folder by + orders of magnitude. - Enable the creation of multiple autostart entries for different configurations. - Fall back to PNG tray icons if the platform may not support our svg format. @@ -43,6 +52,11 @@ - Automatic allocation of ports for the communication between daemon and client. - Show the (Dropbox) file path in the string representation of `MaestralApiError`. Previously, one could not see from the traceback which file caused the error. +- Fixed a bug that would result in only changes of top-level items being synced. This + affects users who carrier out the initial linking with Maestral v0.2.5 or later + (commit 40be316b49f2198a01cc9ce9b804f8e6336e36f8) and selected to exclude folders + before the initial sync. Users affected by this bug should rebuild Maestral's index by + selecting "Rebuild index..." in the main menu. #### Removed: diff --git a/maestral/main.py b/maestral/main.py index 1154b07a..54186c4b 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.3.2-dev2" +__version__ = "0.3.2" __author__ = "Sam Schott" __url__ = "https://github.com/SamSchott/maestral"