From db53221f527fb71042e65c9d5173d79adeb08c59 Mon Sep 17 00:00:00 2001 From: Abhishek Banthia <8280282+n0shake@users.noreply.github.com> Date: Sun, 24 Jul 2022 14:18:29 -0400 Subject: [PATCH 1/2] Default to show meeting in menubar --- Clocker/Overall App/AppDefaults.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Clocker/Overall App/AppDefaults.swift b/Clocker/Overall App/AppDefaults.swift index e99ba51..8d9a4e0 100644 --- a/Clocker/Overall App/AppDefaults.swift +++ b/Clocker/Overall App/AppDefaults.swift @@ -34,7 +34,7 @@ class AppDefaults { CLShowAppInForeground: 0, CLFutureSliderRange: 0, CLShowAllDayEventsInUpcomingView: 1, - CLShowMeetingInMenubar: 1, + CLShowMeetingInMenubar: 0, CLTruncateTextLength: 30, CLSelectedCalendars: [], CLAppDisplayOptions: 0, From c39e5d9f015259d6513e304493f28b6417d1fa40 Mon Sep 17 00:00:00 2001 From: Abhishek Banthia <8280282+n0shake@users.noreply.github.com> Date: Sun, 24 Jul 2022 14:19:06 -0400 Subject: [PATCH 2/2] Correct error slogs. --- .../Preferences/Permissions/PermissionsViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Clocker/Preferences/Permissions/PermissionsViewController.swift b/Clocker/Preferences/Permissions/PermissionsViewController.swift index de1c5ee..914ada4 100644 --- a/Clocker/Preferences/Permissions/PermissionsViewController.swift +++ b/Clocker/Preferences/Permissions/PermissionsViewController.swift @@ -151,8 +151,8 @@ class PermissionsViewController: ParentViewController { NotificationCenter.default.post(name: .calendarAccessGranted, object: nil) } } else { - Logger.log(object: ["Reminder Access Not Granted": "YES"], - for: "Reminder Access Not Granted") + Logger.log(object: ["Calendar Access Not Granted": "YES"], + for: "Calendar Access Not Granted") } }) } else if eventCenter.calendarAccessGranted() {