Skip to content

Commit 8714702

Browse files
committed
Merge tag '0.15.0' into develop
2 parents 64c2e21 + f527f20 commit 8714702

8 files changed

Lines changed: 42 additions & 10 deletions

File tree

ExtensionService/AppDelegate.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSWindowDelegate {
5151
statusBarItem = statusBar.statusItem(
5252
withLength: NSStatusItem.squareLength
5353
)
54-
statusBarItem.button?.image = NSImage(
55-
systemSymbolName: "steeringwheel",
56-
accessibilityDescription: nil
57-
)
54+
statusBarItem.button?.image = NSImage(named: "MenuBarIcon")
5855

5956
let statusBarMenu = NSMenu(title: "Status Bar Menu")
6057
statusBarItem.menu = statusBarMenu
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "octopus.png",
5+
"idiom" : "universal",
6+
"scale" : "1x"
7+
},
8+
{
9+
"filename" : "octopus 2.png",
10+
"idiom" : "universal",
11+
"scale" : "2x"
12+
},
13+
{
14+
"filename" : "octopus 1.png",
15+
"idiom" : "universal",
16+
"scale" : "3x"
17+
}
18+
],
19+
"info" : {
20+
"author" : "xcode",
21+
"version" : 1
22+
}
23+
}
2.53 KB
Loading
1.8 KB
Loading
1.18 KB
Loading

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ If you are using macOS Monterey, enter the `Extensions` menu in `System Preferen
8181

8282
### Setting Up GitHub Copilot
8383

84-
1. In the host app, switch to the service tab and click GitHub Copilot to enter the GitHub Copilot account settings.
84+
1. In the host app, switch to the service tab and click on GitHub Copilot to access your GitHub Copilot account settings.
8585
2. Optionally setup the path to Node. The default value is just `node`, Copilot for Xcode.app will try to find the Node from the PATH available in a login shell. If your Node is installed somewhere else, you can run `which node` from terminal to get the path.
8686
3. Click "Sign In", and you will be directed to a verification website provided by GitHub, and a user code will be pasted into your clipboard.
8787
4. After signing in, go back to the app and click "Confirm Sign-in" to finish.
@@ -91,12 +91,12 @@ The installed language server is located at `~/Library/Application Support/com.i
9191

9292
### Setting Up Codeium
9393

94-
1. In the host app, switch to the service tab and click Codeium to enter the Codeium account settings.
94+
1. In the host app, switch to the service tab and click Codeium to access the Codeium account settings.
9595
2. Click "Install" to install the language server.
9696
3. Click "Sign In", and you will be directed to codeium.com. After signing in, a token will be presented. You will need to paste the token back to the app to finish signing in.
9797
4. Go to "Feature - Suggestion" and update the feature provider to "Codeium".
9898

99-
> The key is stored in keychain. When the helper app tries to access the key for the first time, it will prompt you to enter the password access the keychain for the key. Please select "Always Allow" to let the helper app access the key.
99+
> The key is stored in the keychain. When the helper app tries to access the key for the first time, it will prompt you to enter the password to access the keychain. Please select "Always Allow" to let the helper app access the key.
100100
101101
The installed language server is located at `~/Library/Application Support/com.intii.CopilotForXcode/Codeium/executable/`.
102102

@@ -208,7 +208,7 @@ If you need to end a plugin, you can just type
208208

209209
### Prompt to Code
210210

211-
Refactor selected code or write new code using natural language.
211+
Refactor selected code or write new code using natural language.
212212

213213
#### Commands
214214

Version.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
APP_VERSION = 0.14.1
2-
APP_BUILD = 135
1+
APP_VERSION = 0.15.0
2+
APP_BUILD = 150

appcast.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
<rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" version="2.0">
33
<channel>
44
<title>Copilot for Xcode</title>
5+
<item>
6+
<title>0.15.0</title>
7+
<pubDate>Sun, 14 May 2023 16:00:43 +0800</pubDate>
8+
<sparkle:version>150</sparkle:version>
9+
<sparkle:shortVersionString>0.15.0</sparkle:shortVersionString>
10+
<sparkle:minimumSystemVersion>12.0</sparkle:minimumSystemVersion>
11+
<sparkle:releaseNotesLink>
12+
https://github.com/intitni/CopilotForXcode/releases/tag/0.15.0
13+
</sparkle:releaseNotesLink>
14+
<enclosure url="https://github.com/intitni/CopilotForXcode/releases/download/0.15.0/Copilot.for.Xcode.app.zip" length="21289245" type="application/octet-stream" sparkle:edSignature="yJrYO8pOGHrgBvMbMpztbh6OL001zPZgwjUnAehoaGlXlFmi4z+bJqxPPa2AxuQEILIqzDkpL+aMi1+L0FjRCg=="/>
15+
</item>
16+
517
<item>
618
<title>0.14.1</title>
719
<pubDate>Tue, 02 May 2023 21:32:45 +0800</pubDate>

0 commit comments

Comments
 (0)