Skip to content

Commit 973075e

Browse files
committed
Release 0.32.0
1 parent 717bc4c commit 973075e

File tree

5 files changed

+57
-21
lines changed

5 files changed

+57
-21
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## 0.32.0 - March 11, 2025 (General Availability)
9+
### Added
10+
- Implemented model picker for selecting LLM model in chat
11+
- Introduced new `/releaseNotes` slash command for accessing release information
12+
13+
### Changed
14+
- Improved focus handling with automatic switching between chat text field and file search bar
15+
- Enhanced keyboard navigation support for file picker in chat context
16+
- Refined instructions for granting accessibility and extension permissions
17+
- Enhanced accessibility compliance for the chat window
18+
- Redesigned notification and status bar menu styles for better usability
19+
20+
### Fixed
21+
- Resolved compatibility issues with macOS 12/13/14
22+
- Fixed handling of invalid workspace switch event '/'
23+
- Corrected chat attachment file picker to respect workspace scope
24+
- Improved icon display consistency across different themes
25+
- Added support for previously unsupported file types (.md, .txt) in attachments
26+
- Adjusted incorrect margins in chat window UI
27+
28+
## 0.31.0 - February 11, 2025 (Public Preview)
29+
### Added
30+
- Added Copilot Chat support
31+
- Added GitHub Freeplan support
32+
- Implemented conversation and chat history management across multiple Xcode instances
33+
- Introduced multi-file context support for comprehensive code understanding
34+
- Added slash commands for specialized operations

Docs/copilot-menu_dark.png

37.3 KB
Loading

Docs/welcome.png

-215 KB
Loading

README.md

+4-10
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[GitHub Copilot](https://github.com/features/copilot) is an AI pair programmer
44
tool that helps you write code faster and smarter. Copilot for Xcode is an Xcode extension that provides inline coding suggestions as you type and a chat assistant to answer your coding questions.
55

6-
## Chat [Preview]
6+
## Chat
77

88
GitHub Copilot Chat provides suggestions to your specific coding tasks via chat.
99
<img alt="Chat of GitHub Copilot for Xcode" src="./Docs/chat_dark.gif" width="800" />
@@ -13,12 +13,6 @@ GitHub Copilot Chat provides suggestions to your specific coding tasks via chat.
1313
You can receive auto-complete type suggestions from GitHub Copilot either by starting to write the code you want to use, or by writing a natural language comment describing what you want the code to do.
1414
<img alt="Code Completion of GitHub Copilot for Xcode" src="./Docs/demo.gif" width="800" />
1515

16-
## Preview Policy
17-
18-
Use of the GitHub Copilot Xcode Extension is subject to [GitHub's Pre-Release Terms](https://docs.github.com/en/site-policy/github-terms/github-pre-release-license-terms). We want to remind you that:
19-
20-
> Previews may not be supported or may change at any time. You may receive confidential information through those programs that must remain confidential while the program is private. We'd love your feedback to make our Previews better.
21-
2216
## Requirements
2317

2418
- macOS 12+
@@ -107,10 +101,10 @@ Use of the GitHub Copilot Xcode Extension is subject to [GitHub's Pre-Release Te
107101
the full suggestion, and press `option` + `tab` to accept the full suggestion.
108102

109103
<p align="center">
110-
<img alt="Screenshot of welcome screen" src="./Docs/welcome.png" width="672" />
104+
<img alt="Screenshot of welcome screen" src="./Docs/welcome.png" width="450" />
111105
</p>
112106

113-
## How to use Chat [Preview]
107+
## How to use Chat
114108

115109
Open Copilot Chat in GitHub Copilot.
116110
- Open via the Xcode menu `Xcode -> Editor -> GitHub Copilot -> Open Chat`.
@@ -121,7 +115,7 @@ Use of the GitHub Copilot Xcode Extension is subject to [GitHub's Pre-Release Te
121115
- Open via GitHub Copilot app menu `Open Chat`.
122116

123117
<p align="center">
124-
<img alt="Screenshot of GitHub Copilot menu item" src="./Docs/copilot-menu_dark.png" width="182" />
118+
<img alt="Screenshot of GitHub Copilot menu item" src="./Docs/copilot-menu_dark.png" width="244" />
125119
</p>
126120

127121
## How to use Code Completion

ReleaseNotes.md

+19-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
1-
### GitHub Copilot for Xcode 0.31.0
2-
**Highlights:**
1+
### GitHub Copilot for Xcode 0.32.0
2+
**🚀 Highlights**
33

4-
* **Chat view**: Ask Copilot for help with coding tasks directly in the chat view.
5-
* **Slash commands**: Use quick commands, like `/explain` for code explanations.
6-
* **Reference code**: Scope chats to specific files for more relevant assistance.
7-
* **Multiple conversations**: Maintain different threads, each with their own context.
8-
* **Chat history management**: Keep track of past conversations for future reference.
9-
* **Free access**: Get [2,000 code completions and 50 chat messages](https://github.com/copilot) per month for free, simply by signing in with your GitHub account or by creating a new one.
4+
* Model picker for selecting LLM model for chat
5+
* New `/releaseNotes` slash commands for easier access to release information
106

11-
**Fixes and improvements:**
7+
**💪 Improvements**
128

13-
* Fix acception does not work under certain circumstaances.
14-
* Support switching focus between chat textfield and file search bar.
9+
* Auto-switch focus between chat text field and file search bar
10+
* Support keyboard navigation for file picker in chat context
11+
* Enhanced instructions for granting accessibility and extension permissions
12+
* Improved accessibility for chat window
13+
* Redesigned notification and status bar menu styles
14+
15+
**🛠️ Bug Fixes**
16+
17+
* Resolved compatibility issues with macOS 12
18+
* Fixed handling of invalid workspace switch event '/'
19+
* Corrected chat attachment file picker search path to respect workspace scope
20+
* Fixed icon display across different themes
21+
* Added support for previously unsupported file types (.md, .txt) in attachments
22+
* Adjusted incorrect margins in chat window

0 commit comments

Comments
 (0)