forked from Silverfish/proton-bridge
Bridge Golden-Gate 1.5.3
• Support read confirmations • Adding GPLv3 licence button to the GUI • Improved testing • AppleMail crashes (timestamp related) • Encoding errors • Installation issues on linux
This commit is contained in:
22
Changelog.md
22
Changelog.md
@ -2,6 +2,28 @@
|
|||||||
|
|
||||||
Changelog [format](http://keepachangelog.com/en/1.0.0/)
|
Changelog [format](http://keepachangelog.com/en/1.0.0/)
|
||||||
|
|
||||||
|
## [Bridge 1.5.3] Golden Gate
|
||||||
|
|
||||||
|
### Added
|
||||||
|
* GODT-906 Handle RFC2047-encoded content transfer encoding values.
|
||||||
|
* GODT-887 Make supports build with native Qt.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
* GODT-893 Bump go-rfc5322 dependency to v0.2.1 to properly detect syntax errors during parsing.
|
||||||
|
* GODT-892 Swap type and value from sentry exception and cut panic handlers from the traceback.
|
||||||
|
* GODT-854 EXPUNGE and FETCH unilateral responses are returned before OK EXPUNGE or OK STORE, respectively.
|
||||||
|
* #109 Renamed COPYING.md to not be read by [pkg-go-dev](https://pkg.go.dev/license-policy).
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
* GODT-651 Build creates proper binary names.
|
||||||
|
* GODT-148 Allow import (using the Import-Export app) of already encrypted messages as is.
|
||||||
|
* GODT-202 Update to latest go-smtp.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
* GODT-135 Support parameters in SMTP `FROM MAIL` command, such as `BODY=7BIT`, or empty value `FROM MAIL:<>` used by some clients.
|
||||||
|
* GODT-338 GODT-781 GODT-857 GODT-866 Flaky tests.
|
||||||
|
* GODT-773 Replace old dates with birthday of RFC822 to not crash Apple Mail. Original is available under `X-Original-Date` header.
|
||||||
|
|
||||||
## [Bridge 1.5.2] Golden Gate
|
## [Bridge 1.5.2] Golden Gate
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
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.2-git
|
BRIDGE_APP_VERSION?=1.5.3-git
|
||||||
IE_APP_VERSION?=1.2.2-git
|
IE_APP_VERSION?=1.2.2-git
|
||||||
APP_VERSION:=${BRIDGE_APP_VERSION}
|
APP_VERSION:=${BRIDGE_APP_VERSION}
|
||||||
SRC_ICO:=logo.ico
|
SRC_ICO:=logo.ico
|
||||||
|
|||||||
@ -15,18 +15,16 @@
|
|||||||
// 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 Nov 23 07:38:53 AM CET 2020'. DO NOT EDIT.
|
// Code generated by ./release-notes.sh at 'Wed Dec 9 05:55:04 PM CET 2020'. DO NOT EDIT.
|
||||||
|
|
||||||
package bridge
|
package bridge
|
||||||
|
|
||||||
const ReleaseNotes = `• Improved package creation logic
|
const ReleaseNotes = `• Support read confirmations
|
||||||
• Refactor of sending functions to simplify code maintenance
|
• Adding GPLv3 licence button to the GUI
|
||||||
• Added tests for package creation
|
• Improved testing
|
||||||
• For more detailed summary of the changes see https://github.com/ProtonMail/proton-bridge/blob/master/Changelog.md
|
|
||||||
`
|
`
|
||||||
|
|
||||||
const ReleaseFixedBugs = `• Bridge crashes related to labels handling
|
const ReleaseFixedBugs = `• AppleMail crashes (timestamp related)
|
||||||
• GUI popup related to TLS connection error
|
• Encoding errors
|
||||||
• An issue where a random session key is included in the data payload
|
• Installation issues on linux
|
||||||
• Error handling (including improved detection)
|
|
||||||
`
|
`
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
• Bridge crashes related to labels handling
|
• AppleMail crashes (timestamp related)
|
||||||
• GUI popup related to TLS connection error
|
• Encoding errors
|
||||||
• An issue where a random session key is included in the data payload
|
• Installation issues on linux
|
||||||
• Error handling (including improved detection)
|
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
• Improved package creation logic
|
• Support read confirmations
|
||||||
• Refactor of sending functions to simplify code maintenance
|
• Adding GPLv3 licence button to the GUI
|
||||||
• Added tests for package creation
|
• Improved testing
|
||||||
• For more detailed summary of the changes see https://github.com/ProtonMail/proton-bridge/blob/master/Changelog.md
|
|
||||||
|
|||||||
@ -9,17 +9,7 @@ Changelog [format](http://keepachangelog.com/en/1.0.0/)
|
|||||||
* GODT-270 Added license button in footer to open LICENSE file.
|
* GODT-270 Added license button in footer to open LICENSE file.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* GODT-893 Bump go-rfc5322 dependency to v0.2.1 to properly detect syntax errors during parsing.
|
|
||||||
* GODT-892 Swap type and value from sentry exception and cut panic handlers from the traceback.
|
|
||||||
* GODT-854 EXPUNGE and FETCH unilateral responses are returned before OK EXPUNGE or OK STORE, respectively.
|
|
||||||
* #109 Renamed COPYING.md to not be read by [pkg-go-dev](https://pkg.go.dev/license-policy).
|
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
* GODT-651 Build creates proper binary names.
|
|
||||||
* GODT-148 Allow import (using the Import-Export app) of already encrypted messages as is.
|
|
||||||
* GODT-202 Update to latest go-smtp.
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* GODT-135 Support parameters in SMTP `FROM MAIL` command, such as `BODY=7BIT`, or empty value `FROM MAIL:<>` used by some clients.
|
|
||||||
* GODT-338 GODT-781 GODT-857 GODT-866 Flaky tests.
|
|
||||||
* GODT-773 Replace old dates with birthday of RFC822 to not crash Apple Mail. Original is available under `X-Original-Date` header.
|
|
||||||
|
|||||||
Reference in New Issue
Block a user