Skip to content

Commit c2dc89d

Browse files
committed
bump version
1 parent 9a2ed2d commit c2dc89d

File tree

2 files changed

+52
-39
lines changed

2 files changed

+52
-39
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.2.2] - 2025-06-13
8+
### Fixed
9+
- Last restart now correctly displays the time since last restart in the correct format when copying device information to the clipboard.
10+
11+
### Added
12+
- A new option to exclude certain folders from log collection. This allows for admins to exclude certain folders from being collected when the user runs the log collection action. This can be useful for excluding large folders that are not relevant to the support case or for excluding folders that contain sensitive information. Example configuration:
13+
```xml
14+
<key>ExcludedLogFolders</key>
15+
<array>
16+
<string>/Library/Logs/Microsoft/mdatp</string>
17+
</array>
18+
```
19+
720
## [2.2.1] - 2025-02-26
821
### Fixed
922
- Even if `SoftwareUpdates` or `PendingAppUpdates` were hidden, the badge would still be displayed in the tray menu and dock. This has been fixed by checking if the widget is hidden before displaying the badge.

SupportCompanion/Info.plist

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
4-
<dict>
5-
<key>CFBundleDevelopmentRegion</key>
6-
<string>$(DEVELOPMENT_LANGUAGE)</string>
7-
<key>CFBundleExecutable</key>
8-
<string>$(EXECUTABLE_NAME)</string>
9-
<key>CFBundleIdentifier</key>
10-
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11-
<key>CFBundleInfoDictionaryVersion</key>
12-
<string>6.0</string>
13-
<key>CFBundleName</key>
14-
<string>$(PRODUCT_NAME)</string>
15-
<key>CFBundlePackageType</key>
16-
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
17-
<key>CFBundleIconFile</key>
18-
<string>AppIcon</string>
19-
<key>LSMinimumSystemVersion</key>
20-
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
21-
<key>CFBundleShortVersionString</key>
22-
<string>2.2.1</string>
23-
<key>CFBundleVersion</key>
24-
<string>2.2.1</string>
25-
<key>CFBundleURLTypes</key>
26-
<array>
27-
<dict>
28-
<key>CFBundleURLName</key>
29-
<string>com.github.macadmins.SupportCompanion</string>
30-
<key>CFBundleURLSchemes</key>
31-
<array>
32-
<string>supportcompanion</string>
33-
</array>
34-
</dict>
35-
</array>
36-
<key>SMPrivilegedExecutables</key>
37-
<dict>
38-
<key>com.github.macadmins.SupportCompanion.helper</key>
39-
<string>anchor apple generic and identifier &quot;com.github.macadmins.SupportCompanion.helper&quot; and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = $(TEAM_ID))</string>
40-
</dict>
41-
</dict>
42-
</plist>
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
17+
<key>CFBundleIconFile</key>
18+
<string>AppIcon</string>
19+
<key>LSMinimumSystemVersion</key>
20+
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
21+
<key>CFBundleShortVersionString</key>
22+
<string>2.2.2</string>
23+
<key>CFBundleVersion</key>
24+
<string>2.2.2</string>
25+
<key>CFBundleURLTypes</key>
26+
<array>
27+
<dict>
28+
<key>CFBundleURLName</key>
29+
<string>com.github.macadmins.SupportCompanion</string>
30+
<key>CFBundleURLSchemes</key>
31+
<array>
32+
<string>supportcompanion</string>
33+
</array>
34+
</dict>
35+
</array>
36+
<key>SMPrivilegedExecutables</key>
37+
<dict>
38+
<key>com.github.macadmins.SupportCompanion.helper</key>
39+
<string>anchor apple generic and identifier "com.github.macadmins.SupportCompanion.helper" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = $(TEAM_ID))</string>
40+
</dict>
41+
</dict>
42+
</plist>

0 commit comments

Comments
 (0)