Skip to content

Commit 2faeebe

Browse files
committed
chore: Bridge Perth Narrows 3.0.16/17
1 parent f6727a5 commit 2faeebe

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

Changelog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
Changelog [format](http://keepachangelog.com/en/1.0.0/)
44

5-
## [Bridge 3.0.15/16] Perth Narrows
5+
## [Bridge 3.0.16/17] Perth Narrows
6+
7+
### Fixed
8+
* GODT-2354: Report failed load users.
9+
10+
## [Bridge 3.0.15] Perth Narrows
611

712
### Changed
813
* GODT-2355: Improve wording and actions on bad event.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
1111
.PHONY: build build-gui build-nogui build-launcher versioner hasher
1212

1313
# Keep version hardcoded so app build works also without Git repository.
14-
BRIDGE_APP_VERSION?=3.0.15+git
14+
BRIDGE_APP_VERSION?=3.0.16+git
1515
APP_VERSION:=${BRIDGE_APP_VERSION}
1616
APP_FULL_NAME:=Proton Mail Bridge
1717
APP_VENDOR:=Proton AG

internal/frontend/grpc/service_methods.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ func (s *Service) GuiReady(ctx context.Context, _ *emptypb.Empty) (*GuiReadyResp
9696

9797
s.initializationDone.Do(s.initializing.Done)
9898

99-
// Splash screen should be displayed only to users who start v3.0.16 or later for the first time after upgrading from v2.
99+
// Splash screen should be displayed only to users who start v3.0.17 or later for the first time after upgrading from v2.
100100
return &GuiReadyResponse{
101101
ShowSplashScreen: (!s.bridge.GetFirstStart()) &&
102102
s.bridge.GetLastVersion().LessThan(semver.MustParse("3.0.0")) &&
103-
s.bridge.GetCurrentVersion().GreaterThan(semver.MustParse("3.0.15")),
103+
s.bridge.GetCurrentVersion().GreaterThan(semver.MustParse("3.0.16")),
104104
}, nil
105105
}
106106

0 commit comments

Comments
 (0)