Bridge Golden-Gate 1.5.7

Fixed
• Fixed sending error caused by inconsistent use of upper and lower case in sender’s email address
This commit is contained in:
Jakub
2021-01-22 11:05:24 +01:00
parent b3a64892fe
commit 645a8257d9
6 changed files with 10 additions and 21 deletions

View File

@ -2,6 +2,11 @@
Changelog [format](http://keepachangelog.com/en/1.0.0/)
## [Bridge 1.5.7] Golden Gate
### Fixed
CSB-331 Fix sending error due to mixed case in sender address.
## [Bridge 1.5.6] Golden Gate
### Added

View File

@ -10,7 +10,7 @@ TARGET_OS?=${GOOS}
.PHONY: build build-ie build-nogui build-ie-nogui check-has-go
# Keep version hardcoded so app build works also without Git repository.
BRIDGE_APP_VERSION?=1.5.6-git
BRIDGE_APP_VERSION?=1.5.7-git
IE_APP_VERSION?=1.2.3-git
APP_VERSION:=${BRIDGE_APP_VERSION}
SRC_ICO:=logo.ico

View File

@ -15,18 +15,12 @@
// You should have received a copy of the GNU General Public License
// along with ProtonMail Bridge. If not, see <https://www.gnu.org/licenses/>.
// Code generated by ./release-notes.sh at 'Thu Jan 14 04:51:03 PM CET 2021'. DO NOT EDIT.
// Code generated by ./release-notes.sh at 'Fri Jan 22 11:01:06 AM CET 2021'. DO NOT EDIT.
package bridge
const ReleaseNotes = `• Improvements to message parsing
• Better error handling
const ReleaseNotes = `
`
const ReleaseFixedBugs = `Message corruption - rare cases of overly long headers
• AppleMail crashes (related to timestamps)
• 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
const ReleaseFixedBugs = `Fixed sending error caused by inconsistent use of upper and lower case in senders email address
`

View File

@ -1,8 +1 @@
Message corruption - rare cases of overly long headers
• AppleMail crashes (related to timestamps)
• 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
Fixed sending error caused by inconsistent use of upper and lower case in senders email address

View File

@ -1,2 +0,0 @@
• Improvements to message parsing
• Better error handling

View File

@ -11,4 +11,3 @@ Changelog [format](http://keepachangelog.com/en/1.0.0/)
### Changed
### Fixed
CSB-331 Fix sending error due to mixed case in sender address.