Skip to content

Commit 69f9d4b

Browse files
committed
Merge tag '0.16.0' into develop
2 parents 98a5742 + a02ff9d commit 69f9d4b

3 files changed

Lines changed: 26 additions & 8 deletions

File tree

Core/Sources/HostApp/GeneralView.swift

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,24 @@ struct ExtensionServiceView: View {
105105
}) {
106106
Text("Reveal Extension Service in Finder")
107107
}
108+
109+
Button(action: {
110+
let url = URL(
111+
string: "x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility"
112+
)!
113+
NSWorkspace.shared.open(url)
114+
}) {
115+
Text("Accessibility Settings")
116+
}
117+
118+
Button(action: {
119+
let url = URL(
120+
string: "x-apple.systempreferences:com.apple.ExtensionsPreferences"
121+
)!
122+
NSWorkspace.shared.open(url)
123+
}) {
124+
Text("Extensions Settings")
125+
}
108126
}
109127
}
110128
.padding()

Version.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
APP_VERSION = 0.15.4
2-
APP_BUILD = 154
1+
APP_VERSION = 0.16.0
2+
APP_BUILD = 160

appcast.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<title>Copilot for Xcode</title>
55

66
<item>
7-
<title>0.15.3</title>
8-
<pubDate>Mon, 15 May 2023 18:46:47 +0800</pubDate>
9-
<sparkle:version>153</sparkle:version>
10-
<sparkle:shortVersionString>0.15.3</sparkle:shortVersionString>
7+
<title>0.15.4</title>
8+
<pubDate>Mon, 15 May 2023 22:13:11 +0800</pubDate>
9+
<sparkle:version>154</sparkle:version>
10+
<sparkle:shortVersionString>0.15.4</sparkle:shortVersionString>
1111
<sparkle:minimumSystemVersion>12.0</sparkle:minimumSystemVersion>
1212
<sparkle:releaseNotesLink>
13-
https://github.com/intitni/CopilotForXcode/releases/tag/0.15.3
13+
https://github.com/intitni/CopilotForXcode/releases/tag/0.15.4
1414
</sparkle:releaseNotesLink>
15-
<enclosure url="https://github.com/intitni/CopilotForXcode/releases/download/0.15.3/Copilot.for.Xcode.app.zip" length="21342371" type="application/octet-stream" sparkle:edSignature="YYOBKinz8Ay++VYFIOwFRi4xcM3WuOTmPG6n4ar8e7Nc8Sq/JPLWaR2b6wLU05No2DCzMxlHXCF+a4a+o5V4AQ=="/>
15+
<enclosure url="https://github.com/intitni/CopilotForXcode/releases/download/0.15.4/Copilot.for.Xcode.app.zip" length="21344856" type="application/octet-stream" sparkle:edSignature="p72+LRQrBfOvNig7bQaYXSun0KKmjQ982LsmZpR/Z4QSwWJWHqyzIx4lWBWmiikhjwgR6Bu9jWB4eWtJjJQsDQ=="/>
1616
</item>
1717

1818
<item>

0 commit comments

Comments
 (0)