diff --git a/changelog.md b/changelog.md index c76c9900d..4f00b58a4 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,33 @@ # Changelog +## 0.1.4 + +* Use `--view-only` when opening files in a DVM, update `mimeapps.list` (#972). +* Add user icon to clickable area for logout (#976). +* Animate active state on frameless dialog boxes (#940). +* String updates to print/export dialogs (#968). +* Automatically resize status bar to width of error message string (#977). +* Clean up cleanup in run.sh (#949). +* Make `LoginDialog` a modal (#978). +* Make `ExportDialog`, `PrintDialog` modals (#970). +* Switch button order in `ExportDialog`, `PrintDialog` (#989). +* Focus passphrase field in `ExportDialog` (#994). +* Disable cancel button before exporting a file (#1011). +* Ensure logging does not log sensitive info (#965). +* Reset source pending status upon unexpected error when deleting sources (#979). +* Fix star hover state (#1003). +* No longer show drafts in preview snippets (#1002). +* No longer access source database object in snippet (#964). +* Resolve blocked UI on client start for a large number of sources (#944). +* Add functional tests (#788, #957, #983, #1001). +* Bug fix: Show pending deletion status right after deletion job enqueued (#955). +* Bug fix: Fix starring behavior (#952). +* Bug fix: Prevent duplicate file downloads at the UI level (#974). +* Bug fix: Stop selecting a source on sync (#981). +* Bug fix: Fix horizontal scrollbar in source list (#982). +* Bug fix: Update filesize after download and decryption (#969). +* Bug fix: Prevent tooltips on source preview labels (#1006). + ## 0.1.3 * Update login UI messages (#903). diff --git a/securedrop_client/__init__.py b/securedrop_client/__init__.py index 8ce9b3623..7525d1993 100644 --- a/securedrop_client/__init__.py +++ b/securedrop_client/__init__.py @@ -1 +1 @@ -__version__ = '0.1.3' +__version__ = '0.1.4' diff --git a/setup.py b/setup.py index 80d24680b..021a4900a 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setuptools.setup( name="securedrop-client", - version="0.1.3", + version="0.1.4", author="Freedom of the Press Foundation", author_email="securedrop@freedom.press", description="SecureDrop Workstation client application",