Commit Graph

849 Commits

Author SHA1 Message Date
Greg Neagle
e64dca5afd Fix for detection of managedsoftwareupdate not starting or unexpectedly ending 2025-10-08 14:32:56 -07:00
Greg Neagle
c454bee48b MunkiStatus: if it's been more than 30 seconds since we've gotten an update message from managedsoftwareupdate, check for a running executable named 'managedsoftwareupdate' as well as a Python script 2025-10-06 20:39:46 -07:00
Greg Neagle
2744cd6fc5 Update sidebar and Dock icon badge with update count at launch when displaying the initial view 2025-09-16 17:17:03 -07:00
Greg Neagle
8b6833edd9 Request authorization from UNUserNotificationCenter to display app icon badges. Addresses #1255 2025-09-16 17:04:02 -07:00
Greg Neagle
f2eecbf133 Minor update to the app icon 2025-09-13 19:45:55 -07:00
Greg Neagle
dd176b147c Add icons to Navigate menu items in macOS 26 2025-09-12 13:23:26 -07:00
Greg Neagle
640f535ca1 Skip App Store-specific processing when compiling the AssetCatalog 2025-09-06 08:23:58 -07:00
Greg Neagle
0d3d2ee4ed Another attempt to address #1264 (unexpected alert that managedsoftwareupdate has ended unexpectedly) 2025-09-05 13:41:52 -07:00
Greg Neagle
09a46efd55 Attempt to address #1264 2025-09-04 14:51:04 -07:00
Elliot Jordan
41e6d38cc5 Spelling fixes for Munki 7 branch (#1263)
* Fix SidebarViewController.swift file name

* Fix spelling in comments

* Fix spelling in strings and output

* Fix spelling in variables and key names

* One more pass at spelling fixes
2025-08-27 12:27:12 -07:00
Greg Neagle
0a1c9946ec Don't accidentally try to trigger a logout when replacing an existing forced logout warning with a new one when there are 5 minutes or less until forced logout time 2025-08-25 16:22:30 -07:00
Greg Neagle
42bc8327ab Address an issue where MSC.app doesn't gracefully quit when a user choose to logout and update in response to a forced logout warning 2025-08-25 10:36:10 -07:00
Greg Neagle
bb120ec234 Fix for MSC.app crash on macOS 10.15 (and maybe macOS 11) 2025-08-24 16:10:47 -07:00
Greg Neagle
fea10ce591 Fix an AutoLayout constraint issue 2025-08-14 15:24:05 -07:00
Greg Neagle
76e7329ec0 remove some old debugging print statements 2025-08-14 15:19:41 -07:00
Greg Neagle
7f15474c92 Remove (again) the background extension view for macOS 26 2025-08-14 10:47:40 -07:00
Greg Neagle
76d5824f73 Xcode project updates for Xcode 26 2025-08-14 09:47:21 -07:00
Greg Neagle
10ecfc2383 Merge branch 'Munki7dev' into custom-sidebar 2025-08-13 16:25:10 -07:00
Greg Neagle
3aa7745409 Keep track of inode of log file so we can continue to follow the log after the file has been rotated 2025-08-13 16:24:35 -07:00
Greg Neagle
cebd2b236e Merge branch 'Munki7dev' into custom-sidebar 2025-08-13 13:36:10 -07:00
Greg Neagle
b429567f5d Add comment about loading error.html 2025-08-13 13:17:45 -07:00
Hunter Stanton
b04d50271e Fix path traversal in load_page (#1257) 2025-08-13 13:17:45 -07:00
Steve
774bdeccae fix update count label placement (#1253)
Authored-by: Steve Küng <SteveKueng@users.noreply.github.com>
2025-08-07 14:05:26 -07:00
Greg Neagle
abb0d0bb1d Support for specifying custom sidebar config in client resources 2025-07-25 09:41:07 -05:00
Greg Neagle
7b815be05e Better attempt at using a preferred language if custom sidebar items have localized strings 2025-07-19 15:42:22 -07:00
Steve
2dd4b2a066 Custom sidebar localized_strings (#1248)
* Add support for localized titles and pages for custom sidebar items
---------
Authored-by: Steve Küng <SteveKueng@users.noreply.github.com>
2025-07-19 15:28:08 -07:00
Greg Neagle
f11bb6a1e1 Beginning of support for localized titles for custom sidebar items 2025-07-14 10:56:19 -07:00
Greg Neagle
1d209d09dc More changes to better support custom sidebar items 2025-07-14 10:55:32 -07:00
Greg Neagle
197ad6174d Better support for highlighting custom sidebar items when appropriate 2025-07-12 12:22:42 -07:00
Greg Neagle
af899ea447 Fix for update count display when using custom sidebar items; handle custom sidebar when there are no optional installs 2025-07-11 20:44:11 -07:00
Greg Neagle
355dce0363 New function to show or hide navigate menu items that are for munki:// pages 2025-07-11 19:54:22 -07:00
Greg Neagle
ec577aa900 Merge branch 'Munki7dev' into custom-sidebar 2025-07-08 10:57:24 -07:00
Greg Neagle
f51a7677a6 Remove previously commented-out code for NSUserNotifications API 2025-07-08 10:56:58 -07:00
Greg Neagle
6327c3bc3c Rename enum containing munki:// urls 2025-07-08 10:55:03 -07:00
Greg Neagle
0d0686bd8c Add localized title to Navigate menu items when building them 2025-07-07 18:36:18 -07:00
Greg Neagle
4daad1e530 Build Navigate menu dynamically based on sidebar contents 2025-07-07 18:18:15 -07:00
Greg Neagle
c911106bf0 Remove function option for custom sidebar item page; use munki:// urls instead 2025-07-07 10:33:01 -07:00
Greg Neagle
237bdc19ee Ensure sidebar_items are 'loaded' before checkForUpdates is called; more changes to support using munki:// urls in custom sidebar items 2025-07-07 10:12:14 -07:00
Greg Neagle
bb768fd614 Allow for munki:// urls for sidebar items 2025-07-05 19:11:36 -07:00
Steve
f1870d4e5c custom sidebar item (#1214)
Adds support for customizing the sidebar items.

* since sf symbols are only supported with 11.0 and newer, custom sidebar items are only possible with 11.0 and newer
* Refactor sidebar item handling and update MainMenu.xib for improved layout and functionality

---------
Authored-by: Steve Kueng <steve.kueng@umb.ch>
2025-07-05 17:49:49 -07:00
Greg Neagle
7a876a6686 Update app icon for MunkiStatus and munki-notifier 2025-07-02 16:04:21 -07:00
Greg Neagle
6f123551a0 Yet another attempt at icons that look good on both macOS 26 and earlier versions of macOS 2025-07-02 09:33:35 -07:00
Greg Neagle
f1035b8c14 Keep tweaking AutoLayout contraints in table row view 2025-07-01 11:30:34 -07:00
Greg Neagle
394cbe3a4a MSC: Fix naming of some Asset Catalog items 2025-07-01 11:09:11 -07:00
Greg Neagle
2b0d409352 Add janky conditional compilation directives so MSC.app can build under Xcode 16 (but lacking Tahoe behaviors) 2025-06-30 17:35:38 -07:00
Greg Neagle
3e8838e057 Update Tahoe AppIcon.icon 2025-06-30 16:00:25 -07:00
Greg Neagle
eb78c1171b Another round of icon updates 2025-06-30 15:55:45 -07:00
Greg Neagle
0c0084aabb munki-notifier: update AppIcon.appiconset 2025-06-30 15:32:06 -07:00
Greg Neagle
06ba96ba19 MunkiStatus: update AppIcon.appiconset 2025-06-30 15:31:32 -07:00
Greg Neagle
72ad8b235c MSC: update AppIcon.appiconset 2025-06-30 15:30:59 -07:00