Release Danube: notes, version bump, change log

This commit is contained in:
Jakub
2020-10-29 12:57:59 +01:00
parent 1286e57b63
commit 881cb64beb
5 changed files with 21 additions and 18 deletions

View File

@ -4,6 +4,8 @@ Changelog [format](http://keepachangelog.com/en/1.0.0/)
## Unreleased ## Unreleased
## [IE 1.2.0] Elbe
### Added ### Added
* GODT-763 Detect Gmail labels from All Mail mbox export (using X-Gmail-Label header). * GODT-763 Detect Gmail labels from All Mail mbox export (using X-Gmail-Label header).
* GODT-834 Info about tags in BUILDS.md and link to Import-Export page in README.md. * GODT-834 Info about tags in BUILDS.md and link to Import-Export page in README.md.
@ -12,7 +14,6 @@ Changelog [format](http://keepachangelog.com/en/1.0.0/)
### Fixed ### Fixed
* GODT-677 Windows IE: global import settings not fit in window. * GODT-677 Windows IE: global import settings not fit in window.
* GODT-794 Congo fails to update to Danube * GODT-794 Congo fails to update to Danube
* GODT-794 Congo fails to update to Danube.
* GODT-749 Don't force PGP/Inline when sending plaintext messages. * GODT-749 Don't force PGP/Inline when sending plaintext messages.
* GODT-764 Fix deadlock in integration tests for Import-Export. * GODT-764 Fix deadlock in integration tests for Import-Export.
* GODT-662 Do not resume paused transfer progress after dismissing cancel popup. * GODT-662 Do not resume paused transfer progress after dismissing cancel popup.

View File

@ -10,8 +10,8 @@ TARGET_OS?=${GOOS}
.PHONY: build build-ie build-nogui build-ie-nogui check-has-go .PHONY: build build-ie build-nogui build-ie-nogui check-has-go
# Keep version hardcoded so app build works also without Git repository. # Keep version hardcoded so app build works also without Git repository.
BRIDGE_APP_VERSION?=1.4.0-git BRIDGE_APP_VERSION?=1.4.5-git
IE_APP_VERSION?=1.1.0-git IE_APP_VERSION?=1.2.0-git
APP_VERSION:=${BRIDGE_APP_VERSION} APP_VERSION:=${BRIDGE_APP_VERSION}
SRC_ICO:=logo.ico SRC_ICO:=logo.ico
SRC_ICNS:=Bridge.icns SRC_ICNS:=Bridge.icns

View File

@ -15,17 +15,18 @@
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with ProtonMail Bridge. If not, see <https://www.gnu.org/licenses/>. // along with ProtonMail Bridge. If not, see <https://www.gnu.org/licenses/>.
// Code generated by ./release-notes.sh at 'Wed Sep 23 01:31:53 PM CEST 2020'. DO NOT EDIT. // Code generated by ./release-notes.sh at 'Thu Oct 29 12:57:32 PM CET 2020'. DO NOT EDIT.
package importexport package importexport
const ReleaseNotes = `Speed up import by implementing parallel processing (parallel fetch, encrypt and upload of messages) const ReleaseNotes = `Improvements to the import from large mbox files with multiple labels
Optimising the initial fetch of messages from external accounts Not allow to run multiple instances of the app or transfers at the same time
Better handling of attachments and non-standard formatting Various enhancements of the import process related to parsing
Improved stability of the message parser Cosmetic GUI changes
Added persistent anonymous API cookies Better error handling
` `
const ReleaseFixedBugs = `Import from mbox files with long lines const ReleaseFixedBugs = `Linux font issues - Fedora specific
Improvements to import from Yahoo accounts App response to the user pausing and canceling import or export
• Handling errors during update
` `

View File

@ -1,2 +1,3 @@
Import from mbox files with long lines Linux font issues - Fedora specific
Improvements to import from Yahoo accounts App response to the user pausing and canceling import or export
• Handling errors during update

View File

@ -1,5 +1,5 @@
Speed up import by implementing parallel processing (parallel fetch, encrypt and upload of messages) Improvements to the import from large mbox files with multiple labels
Optimising the initial fetch of messages from external accounts Not allow to run multiple instances of the app or transfers at the same time
Better handling of attachments and non-standard formatting Various enhancements of the import process related to parsing
Improved stability of the message parser Cosmetic GUI changes
Added persistent anonymous API cookies Better error handling