forked from Silverfish/proton-bridge
Bridge Golden-Gate v1.5.5
Changed • Improvements to message parsing • Better error handling Fixed • AppleMail crashes (related to timestamps) • Sending messages from aliases in combined inbox mode • Fedora font issues
This commit is contained in:
16
Changelog.md
16
Changelog.md
@ -2,6 +2,22 @@
|
|||||||
|
|
||||||
Changelog [format](http://keepachangelog.com/en/1.0.0/)
|
Changelog [format](http://keepachangelog.com/en/1.0.0/)
|
||||||
|
|
||||||
|
## [Bridge 1.5.5] Golden Gate
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
* GODT-922 Fix panic during restarting the bridge.
|
||||||
|
* GODT-945 Fix panic in integration tests caused by concurrent map writes.
|
||||||
|
* GODT-732 Fix usage of fontawesome.
|
||||||
|
* GODT-951 Properly parse message with long lines in header and long header split to multiple lines (upgrading to latest go-message).
|
||||||
|
* GODT-894 Fix panic when sending while account is logging in.
|
||||||
|
* GODT-858 Bump go-rfc5322 dependency to v0.5.0 to handle some invalid RFC5322 groups and add support for semicolon delimiter in address-list.
|
||||||
|
* GODT-923 Fix listener locking.
|
||||||
|
* GODT-389 Prefer `From` header instead of `MAIL FROM` address.
|
||||||
|
* GODT-898 Only set ContentID for inline attachments.
|
||||||
|
* GODT-773 Replace `INTERNALDATE` older than birthday of RFC822 by birthday of RFC822 to not crash Apple Mail.
|
||||||
|
* GODT-927 Avoid to call API with empty label name.
|
||||||
|
* GODT-915 Bump go-imap dependency and remove go-imap-specialuse dependency.
|
||||||
|
|
||||||
## [Bridge 1.5.4] Golden Gate
|
## [Bridge 1.5.4] Golden Gate
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
2
Makefile
2
Makefile
@ -10,7 +10,7 @@ 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.5.4-git
|
BRIDGE_APP_VERSION?=1.5.5-git
|
||||||
IE_APP_VERSION?=1.2.3-git
|
IE_APP_VERSION?=1.2.3-git
|
||||||
APP_VERSION:=${BRIDGE_APP_VERSION}
|
APP_VERSION:=${BRIDGE_APP_VERSION}
|
||||||
SRC_ICO:=logo.ico
|
SRC_ICO:=logo.ico
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
// Copyright (c) 2021 Proton Technologies AG
|
// Copyright (c) 2020 Proton Technologies AG
|
||||||
//
|
//
|
||||||
// This file is part of ProtonMail Bridge.
|
// This file is part of ProtonMail Bridge.
|
||||||
//
|
//
|
||||||
@ -15,16 +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 'Mon Dec 28 02:39:43 PM CET 2020'. DO NOT EDIT.
|
// Code generated by ./release-notes.sh at 'Wed Jan 13 03:17:24 PM CET 2021'. DO NOT EDIT.
|
||||||
|
|
||||||
package bridge
|
package bridge
|
||||||
|
|
||||||
const ReleaseNotes = `• Support read confirmations
|
const ReleaseNotes = `• Improvements to message parsing
|
||||||
• Adding GPLv3 licence button to the GUI
|
• Better error handling
|
||||||
• Improved testing
|
|
||||||
`
|
`
|
||||||
|
|
||||||
const ReleaseFixedBugs = `• AppleMail crashes (timestamp related)
|
const ReleaseFixedBugs = `• Message corruption - rare cases of overly long headers
|
||||||
• Encoding errors
|
• AppleMail crashes (related to timestamps)
|
||||||
• Installation issues on linux
|
• Sending messages from aliases in combined inbox mode
|
||||||
|
• Fedora font issues
|
||||||
|
|
||||||
|
For more detailed summary of the changes see https://github.com/ProtonMail/proton-bridge/blob/master/Changelog.md
|
||||||
`
|
`
|
||||||
|
|||||||
@ -1,3 +1,8 @@
|
|||||||
• AppleMail crashes (timestamp related)
|
• Message corruption - rare cases of overly long headers
|
||||||
• Encoding errors
|
• AppleMail crashes (related to timestamps)
|
||||||
• Installation issues on linux
|
• Sending messages from aliases in combined inbox mode
|
||||||
|
• Fedora font issues
|
||||||
|
|
||||||
|
For more detailed summary of the changes see https://github.com/ProtonMail/proton-bridge/blob/master/Changelog.md
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,2 @@
|
|||||||
• Support read confirmations
|
• Improvements to message parsing
|
||||||
• Adding GPLv3 licence button to the GUI
|
• Better error handling
|
||||||
• Improved testing
|
|
||||||
|
|||||||
@ -8,20 +8,4 @@ Changelog [format](http://keepachangelog.com/en/1.0.0/)
|
|||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
### Fixed
|
|
||||||
* GODT-922 Fix panic during restarting the bridge.
|
|
||||||
* GODT-945 Fix panic in integration tests caused by concurrent map writes.
|
|
||||||
* GODT-732 Fix usage of fontawesome.
|
|
||||||
* GODT-951 Properly parse message with long lines in header and long header split to multiple lines (upgrading to latest go-message).
|
|
||||||
* GODT-894 Fix panic when sending while account is logging in.
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* GODT-858 Bump go-rfc5322 dependency to v0.5.0 to handle some invalid RFC5322 groups and add support for semicolon delimiter in address-list.
|
|
||||||
* GODT-923 Fix listener locking.
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
* GODT-389 Prefer `From` header instead of `MAIL FROM` address.
|
|
||||||
* GODT-898 Only set ContentID for inline attachments.
|
|
||||||
* GODT-773 Replace `INTERNALDATE` older than birthday of RFC822 by birthday of RFC822 to not crash Apple Mail.
|
|
||||||
* GODT-927 Avoid to call API with empty label name.
|
|
||||||
* GODT-915 Bump go-imap dependency and remove go-imap-specialuse dependency.
|
|
||||||
|
|||||||
Reference in New Issue
Block a user