Skip to content

Commit a4d90a2

Browse files
committed
Bump to 4.2.0
1 parent b709317 commit a4d90a2

3 files changed

Lines changed: 15 additions & 5 deletions

File tree

MeetingBar.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@
773773
CODE_SIGN_IDENTITY = "Apple Development";
774774
CODE_SIGN_STYLE = Automatic;
775775
COMBINE_HIDPI_IMAGES = YES;
776-
CURRENT_PROJECT_VERSION = 142;
776+
CURRENT_PROJECT_VERSION = 143;
777777
DEAD_CODE_STRIPPING = YES;
778778
DEVELOPMENT_ASSET_PATHS = "";
779779
ENABLE_HARDENED_RUNTIME = YES;
@@ -786,7 +786,7 @@
786786
"@executable_path/../Frameworks",
787787
);
788788
MACOSX_DEPLOYMENT_TARGET = 10.15;
789-
MARKETING_VERSION = 4.1.0;
789+
MARKETING_VERSION = 4.2.0;
790790
PRODUCT_BUNDLE_IDENTIFIER = leits.MeetingBar;
791791
PRODUCT_NAME = "$(TARGET_NAME)";
792792
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -802,7 +802,7 @@
802802
CODE_SIGN_IDENTITY = "Apple Development";
803803
CODE_SIGN_STYLE = Automatic;
804804
COMBINE_HIDPI_IMAGES = YES;
805-
CURRENT_PROJECT_VERSION = 142;
805+
CURRENT_PROJECT_VERSION = 143;
806806
DEAD_CODE_STRIPPING = YES;
807807
DEVELOPMENT_ASSET_PATHS = "";
808808
ENABLE_HARDENED_RUNTIME = YES;
@@ -815,7 +815,7 @@
815815
"@executable_path/../Frameworks",
816816
);
817817
MACOSX_DEPLOYMENT_TARGET = 10.15;
818-
MARKETING_VERSION = 4.1.0;
818+
MARKETING_VERSION = 4.2.0;
819819
PRODUCT_BUNDLE_IDENTIFIER = leits.MeetingBar;
820820
PRODUCT_NAME = "$(TARGET_NAME)";
821821
PROVISIONING_PROFILE_SPECIFIER = "";

MeetingBar/EventStores/Event.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ func filterEvents(_ events: [MBEvent]) -> [MBEvent] {
205205
break
206206
case .hide:
207207
if calendarEvent.participationStatus == .pending {
208-
continue // Skip this event
208+
continue // Skip this event
209209
}
210210
}
211211

MeetingBar/Views/Changelog/Changelog.swift

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,16 @@ struct ChangelogView: View {
117117
Text("• Fixed padding for all-day meetings in the menu with am/pm end time enabled.")
118118
}
119119
}
120+
if compareVersions("4.2.0", lastRevisedVersionInChangelog) {
121+
Section(header: Text("Version 4.2")) {
122+
Text("⚡ Quick Action for dismissing current/next event ⚡ ")
123+
Text("• Added option to use any browser for Zoom, Teams, and Jitsi meetings")
124+
Text("• Improved Zoom & UserZoom links recognition")
125+
Text("• Performance optimisations")
126+
Text("• Fixed Google re-login on every app restart for Google Calendar API data source")
127+
Text("• Fixed delegated calendar for macOS Calendar data source")
128+
}
129+
}
120130
}
121131
}.listStyle(SidebarListStyle())
122132
Button("general_close".loco(), action: close)

0 commit comments

Comments
 (0)