Skip to content

Commit

Permalink
Update permissions details
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbaird committed Sep 3, 2024
1 parent 190e2fd commit 194de06
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Ice/Permissions/Permission.swift
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ final class AccessibilityPermission: Permission {
init() {
super.init(
title: "Accessibility",
details: ["Get real-time information about the menu bar."],
details: [
"Get real-time information about the menu bar.",
"Move individual menu bar items."

Check warning on line 110 in Ice/Permissions/Permission.swift

View workflow job for this annotation

GitHub Actions / swiftlint

Trailing Comma Violation: Multi-line collection literals should have trailing commas (trailing_comma)
],
notes: [],
check: {
checkIsProcessTrusted()
Expand All @@ -125,7 +128,10 @@ final class ScreenRecordingPermission: Permission {
init() {
super.init(
title: "Screen Recording",
details: ["Apply custom styling to the menu bar."],
details: [
"Apply custom styling to the menu bar.",
"Capture images of menu bar items to display in Ice's interface.",
],
notes: ["Ice does not record your screen."],
check: {
CGPreflightScreenCaptureAccess()
Expand Down

0 comments on commit 194de06

Please sign in to comment.