Skip to content

Commit b1d1755

Browse files
committed
Pre-release 0.25.86
1 parent 8a7a4fe commit b1d1755

File tree

7 files changed

+67
-8
lines changed

7 files changed

+67
-8
lines changed

.github/ISSUE_TEMPLATE/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Questions
4+
url: https://github.com/orgs/community/discussions/categories/copilot
5+
about: Please ask and answer questions about GitHub Copilot here

Core/Sources/HostApp/GeneralSettings/GeneralSettingsView.swift

+10
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,16 @@ struct GeneralSettingsView: View {
3535
Restart Xcode if greyed out.
3636
"""
3737
)
38+
} footer: {
39+
HStack {
40+
Spacer()
41+
Button("?") {
42+
NSWorkspace.shared.open(
43+
URL(string: "https://github.com/github/CopilotForXcode/blob/main/TROUBLESHOOTING.md")!
44+
)
45+
}
46+
.clipShape(Circle())
47+
}
3848
}
3949
.alert(
4050
"Enable Extension Permission",

Core/Sources/HostApp/GeneralView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ struct GeneralView: View {
1616
}
1717
.task {
1818
if isPreview { return }
19-
await store.send(.appear).finish()
2019
viewModel.checkStatus()
20+
await store.send(.appear).finish()
2121
}
2222
}
2323

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ We’d love to get your help in making GitHub Copilot better! If you have
103103
feedback or encounter any problems, please reach out on our [Feedback
104104
forum](https://github.com/orgs/community/discussions/categories/copilot).
105105

106-
## Acknowledgement
106+
## Acknowledgements
107107

108-
Thank you to @intitni for creating the original that this project is based on.
108+
Thank you to @intitni for creating the original project that this is based on.
109+
110+
Attributions can be found under About when running the app or in
111+
[Credits.rtf](./Copilot%20for%20Xcode/Credits.rtf).

Server/package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"description": "Package for downloading @github/copilot-language-server",
55
"private": true,
66
"dependencies": {
7-
"@github/copilot-language-server": "^1.239.0"
7+
"@github/copilot-language-server": "^1.241.0"
88
}
99
}

TROUBLESHOOTING.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Troubleshooting for Copilot for Xcode
2+
3+
If you are having trouble with Copilot for Xcode follow these steps to resolve
4+
common issues:
5+
6+
1. Check for updates and restart Xcode. Ensure that Copilot for Xcode has the
7+
[latest release](https://github.com/github/CopilotForXcode/releases/latest)
8+
by click `Check for Updates` in the settings or under the status menu. After
9+
updating, restart Xcode.
10+
11+
2. Ensure that the Copilot for Xcode extension is enabled. Open Xcode and go to
12+
the top menu bar and open the `Editor` menu. If there is no `GitHub Copilot`
13+
menu is under `Editor` then [extension permission](#extension-permission)
14+
needs to be enabled. If the `GitHub Copilot` menu is shown but grayed out,
15+
then Xcode needs to be restarted to enable the extension.
16+
17+
3. Need more help? If these steps don't resolve the issue, please [open an
18+
issue](https://github.com/github/CopilotForXcode/issues/new/choose).
19+
20+
## Extension Permission
21+
22+
GitHub Copilot for Xcode is an Xcode Source Editor extension and requires the
23+
extension to be enabled. In the Copilot for Xcode settings, clicking `Extension
24+
Permission` will open the System Settings to the Extensions page where `GitHub
25+
Copilot` can be enabled under `Xcode Source Editor`.
26+
27+
Or you can navigate to the permission manually depending on your OS version:
28+
29+
| macOS | Location |
30+
| :--- | :--- |
31+
| 15 | System Settings > General > Login Items > Extensions > Xcode Source Editor |
32+
| 13 & 14 | System Settings > Privacy & Security > Extensions > Xcode Source Editor |
33+
| 12 | System Preferences > Extensions |
34+
35+
## Accessibility Permission
36+
37+
GitHub Copilot for Xcode requires accessibility permission to receive
38+
information from the active Xcode editor.
39+
40+
Enable in System Settings under `Privacy & Security` > `Accessibility` >
41+
`GitHub Copilot for Xcode Extension` and turn on the toggle.

0 commit comments

Comments
 (0)