Skip to content

Support 2.5

Compare
Choose a tag to compare
@jordywitteman jordywitteman released this 10 Aug 11:33
· 13 commits to master since this release
03420f1
  • New: Remote URL’s support for branding and icons. All places where a local image can be used, now support a remote URL to be able to automatically download and show the image. You can host the images somewhere on the web and no more need to package the images and deploy to every macOS device
  • New: The keys Logo and LogoDarkMode now also support SF Symbols next to local and remote images. Use the prefix SF= followed by the SF Symbol name and optionally append ,color= with the options auto, multicolor, hierarchical or a HEX color code to apply custom color options. Thanks @bartreardon for the inspiration!
  • New: More software update details:
    • The macOS version Info Item will now show a popover when clicked to show available software update details
    • Additionally the optional preference key UpdateText can be used to show a custom text under the available updates to provide more relevant context to the user, such as explaining when updates should be installed and why. The field supports markdown to provide external links as well. A sample is provided in the documentation
  • New: All Info Items and configurable buttons can now be hidden:
    • Preference keys HideFirstRowInfoItems, HideSecondRowInfoItems and HideThirdRowInfoItems added to hide the rows with Info Items
    • Preference key HideFirstRow and HideSecondRow are now deprecated and replaced with HideFirstRowButtons and HideSecondRowButtons. Please migrate to the new preference keys as the deprecated keys will be removed in a future version.
  • New: Support App Extensions can now show a notification badge warning in both the menu bar icon and Extension button when triggered from a script. Preference keys ExtensionAlertA and/or ExtensionAlertB need to be set to true to trigger the warning.
  • New: Built-in local variables:
    • Use built-in local variables to show device and user details in text fields like Title, FooterText or any other configurable button. For example you can use $LocalFullName in the Title to show the full name of the currently logged in user.
    • The following variables are available:
      • $LocalComputerName: the current computer name/hostname
      • $LocalModelName: the model name, like MacBook Air (M2, 2022). Apple Silicon only
      • $LocalModelShortName: the short model name like MacBook or iMac
      • $LocalFullName: the full name of the local macOS user account
      • $LocalUserName: the username of the local macOS user account
      • $LocalMacosVersion: the macOS version, like 13.4.1
      • $LocalMacosVersionName: the macOS version marketing name, like Ventura or Sonoma
      • $LocalSerialNumber: the devices serial number
      • $LocalIpAddress: the current IP address
      • $LocalUpdatesAvailable: the number of updates available
  • Added: macOS version Info Item will now show the Rapid Security Response version when applicable (macOS 13 and higher)
  • Added: macOS Sonoma marketing name added for macOS 14
  • Added: Spanish localization added
  • Added: Markdown supported fields now supports line breaks using “\n”
  • Changed: the notification badge in the menu bar icon now has a small border to increase contrast
  • Changed: the network info item will now show "Wi-Fi" instead of the SSID name on macOS 14 and higher. Due to privacy design changes in Apple frameworks it is no longer possible to get the SSID name without asking the user for Location Services. We have decided not to ask for user consent as Location Services do not fit in the idea of the Support App.
  • Fixed: The Footer provides better contrast in certain conditions, such as using Dark Mode and having light content active under the Support App popover
  • Fixed: The Network Info Item now opens the Network section in System Settings instead of Wi-Fi
  • Fixed: An issue is resolved where the popover would not always close when clicked outside the popover
  • Fixed: An issue is resolved where the menu bar icon would not update when the storage limit warning was enabled or disabled.

Documentation:

  • Added: Support App Extension example script integrating with the macOS Security Compliance Project (mSCP) baseline: /usr/local/bin/mscp_compliance_status.sh. This Extension shows the active baseline compliance status. For example: "Your MacBook is secure" or "Your MacBook has X issues".
  • General improvements