diff --git a/MeetingBar/Views/Changelog/Changelog.swift b/MeetingBar/Views/Changelog/Changelog.swift index 4642010f..ba17ae92 100644 --- a/MeetingBar/Views/Changelog/Changelog.swift +++ b/MeetingBar/Views/Changelog/Changelog.swift @@ -51,10 +51,17 @@ struct ChangelogView: View { Section(header: Text("Version 3.5.0")) { Text("🌍 Added translations into Croatian, German, French, and Norwegian Bokmål") Text("All app notifications are now removed after all meetings are over") - Text("Improved RingCentral and Zoom links Detection") + Text("Improved RingCentral and Zoom links detection") Text("and small bug fixes") } } + if lastRevisedVersionInChangelog < "3.6.0" { + Section(header: Text("Version 3.6.0")) { + Text("🌍 Added translations into Czech") + Text("Added integration with Vowel") + Text("Fixed zoom link detection") + } + } }.listStyle(SidebarListStyle()) Button("Close", action: close) }.padding()