Skip to content

Commit

Permalink
Merge branch 'master' into zoom-webinar
Browse files Browse the repository at this point in the history
  • Loading branch information
leits authored Jun 7, 2023
2 parents e0e86ed + b605bd4 commit 08665e6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 37 deletions.
2 changes: 1 addition & 1 deletion MeetingBar/ActionsOnEventStart.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ActionsOnEventStart: NSObject {

// Only run if the user has activated it.
let autoJoinActionActive = Defaults[.automaticEventJoin]
let runEventStartScriptActionActive = Defaults[.runEventStartScript] && (Defaults[.joinEventScriptLocation] != nil)
let runEventStartScriptActionActive = Defaults[.runEventStartScript] && (Defaults[.eventStartScriptLocation] != nil)

if !autoJoinActionActive, !runEventStartScriptActionActive {
return
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion MeetingBar/MeetingServices.swift
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ func getIconForMeetingService(_ meetingService: MeetingServices?) -> NSImage {
// tested and verified -> deprecated, can be removed because hangouts was replaced by google meet
case .some(.hangouts):
image = NSImage(named: "google_hangouts_icon")!
image.size = NSSize(width: 16, height: 17.8)
image.size = NSSize(width: 16, height: 16)

// tested and verified
case .some(.zoom), .some(.zoomgov), .some(.zoom_native):
Expand Down
5 changes: 5 additions & 0 deletions MeetingBar/Views/Changelog/Changelog.swift
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@ struct ChangelogView: View {
Text("⚙️ Integration with the Shortcuts app!\n\nYou can automate your flows with \"Join Nearest Meeting\" and \"Get Nearest Event Details\" actions.").lineLimit(nil)
}
}
if compareVersions("4.5.0", lastRevisedVersionInChangelog) {
Section(header: Text("Version 4.5")) {
Text("• Updates the Slack huddle icon to properly scale within menu").lineLimit(nil)
}
}
}
}.listStyle(SidebarListStyle())
Button("general_close".loco(), action: close)
Expand Down

0 comments on commit 08665e6

Please sign in to comment.