SupportCompanion 1.3.0.80822
Pre-release
Pre-release
github-actions
released this
18 Sep 12:34
·
36 commits
to main
since this release
Notes
This is a pre-release version of Support Companion created by GitHub Actions.
SupportCompanion.app has been signed and notarized. The package has been signed, notarized and stapled.
Changelog
Added
- A new mode for the app called
SystemProfilerApps
which allows for the app to display applications installed under/Applications
and their version numbers as well as Architecture. This mode is useful for admins who want to see what applications are installed on the device and their version numbers. To enable this mode, setSystemProfilerApps
totrue
in the configuration. Example configuration:
<key>SystemProfilerApps</key>
<true/>
- A new key for configuring an icon for actions that will be displayed in the
Self Service
page. This allows for admins to configure an icon for each action that is displayed in theSelf Service
page. The icon should be a material icon name from https://pictogrammers.com/library/mdi/. For exampleapple-finder
would beAppleFinder
. Example configuration:
<key>Actions</key>
<array>
<dict>
<key>Name</key>
<string>Restart clipboard</string>
<key>Command</key>
<string>killall pboard</string>
<key>Icon</key>
<string>AppleFinder</string>
</dict>
- A new page called
Self Service
that will display all actions configured by an admin in the mobileconfig using theActions
array. This allows for easy access to self-service actions that the user can perform on their device. If no actions are configured, the page will not be displayed.
Changed
- If a widget is configured to not be shown or otherwise should not be shown, the widget will now be blanked out instead of being hidden. This is to ensure that the layout of the widgets is consistent and that the user knows that the widget is not available.
Changes
- 1f1db04 - Add System Profiler Apps mode
- 73db356 - Add Self Service page
- 5a8fe09 - Blank out instead of remove
- d15ed45 - Add Self Service page
- bee0433 - Add Self Service and Loading
- 36bcd4b - Add new services
- 8c03c8e - Add icon support
- ebab89f - Use placeholders
- 412829c - Add icon and change to standard button
- 3303d67 - Fix widget blank out