Skip to content

Commit 4daab87

Browse files
committed
Merge tag '0.29.0' into develop
2 parents bc26b6b + 3b4c241 commit 4daab87

3 files changed

Lines changed: 21 additions & 3 deletions

File tree

Core/Sources/HostApp/AccountSettings/ChatModelManagement/ChatModelEdit.swift

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,12 @@ extension ChatModel {
186186
apiKeyName: state.apiKeyName,
187187
baseURL: state.baseURL.trimmingCharacters(in: .whitespacesAndNewlines),
188188
maxTokens: state.maxTokens,
189-
supportsFunctionCalling: state.supportsFunctionCalling,
189+
supportsFunctionCalling: {
190+
if case .googleAI = state.format {
191+
return false
192+
}
193+
return state.supportsFunctionCalling
194+
}(),
190195
modelName: state.modelName.trimmingCharacters(in: .whitespacesAndNewlines)
191196
)
192197
)

Version.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
APP_VERSION = 0.28.4
2-
APP_BUILD = 294
1+
APP_VERSION = 0.29.0
2+
APP_BUILD = 300
33

appcast.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
<channel>
44
<title>Copilot for Xcode</title>
55

6+
<title>Copilot for Xcode</title>
7+
<item>
8+
<title>0.29.0</title>
9+
<pubDate>Tue, 09 Jan 2024 00:36:06 +0800</pubDate>
10+
<sparkle:version>300</sparkle:version>
11+
<sparkle:shortVersionString>0.29.0</sparkle:shortVersionString>
12+
<sparkle:minimumSystemVersion>12.0</sparkle:minimumSystemVersion>
13+
<sparkle:releaseNotesLink>
14+
https://github.com/intitni/CopilotForXcode/releases/tag/0.29.0
15+
</sparkle:releaseNotesLink>
16+
<enclosure url="https://github.com/intitni/CopilotForXcode/releases/download/0.29.0/Copilot.for.Xcode.app.zip" length="37794687" type="application/octet-stream" sparkle:edSignature="Hgaq/sEp7+2ze4su33T9LNAEt1daMWClvfG/DBxF9UE97rVqd54UpW9e9BeO1PFKQ6ulUDzHhzJhnCJ+28YFDQ=="/>
17+
</item>
18+
619
<item>
720
<title>0.28.3</title>
821
<pubDate>Tue, 12 Dec 2023 14:29:58 +0800</pubDate>

0 commit comments

Comments
 (0)