Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
2413ce0
Merge tag '0.30.2' into develop
intitni Feb 1, 2024
6b2d032
Tweak logs
intitni Feb 1, 2024
3fbf8ae
Disable the check by default
intitni Feb 2, 2024
f709880
Add a button to reactivate observations to Xcode in the menu
intitni Feb 2, 2024
22f0b92
Merge branch 'feature/turn-off-accessibility-malfunction-check-by-def…
intitni Feb 2, 2024
4374f51
Add beta branch support
intitni Feb 2, 2024
f91862f
Add toggle to enable beta builds
intitni Feb 2, 2024
4581689
Set delegate of updater
intitni Feb 2, 2024
778fd28
Merge branch 'feature/beta-channel-update' into develop
intitni Feb 2, 2024
fd54931
Update
intitni Feb 4, 2024
dd07194
Fix that variables with accessors are not used as focused code context
intitni Feb 4, 2024
cebf7bd
Update chat feature settings
intitni Feb 4, 2024
31848ac
Update prompt to code settings
intitni Feb 4, 2024
6f0f5fc
Update
intitni Feb 5, 2024
aece8aa
Merge branch 'feature/tweak-sense-scope' into develop
intitni Feb 5, 2024
49ccb39
Add new models
intitni Feb 5, 2024
647ea5d
Modify baseURL to full path
gewill Feb 5, 2024
37ce051
Feat Is base URL with full path toggle in ChatModelEditView
gewill Feb 5, 2024
7ca2ebd
Modify case spell
gewill Feb 5, 2024
c720e8d
Modify embeddingModels default value of ifFullURL
gewill Feb 5, 2024
3b00098
Update CodeiumAuthService.swift
moverholt Feb 6, 2024
ec58971
Merge pull request #437 from moverholt/patch-1
intitni Feb 6, 2024
519f0ae
Modify Full URL UI to segment control
gewill Feb 6, 2024
20b1903
Merge pull request #436 from gewill/main
intitni Feb 7, 2024
7709c0b
Adjust UI
intitni Feb 7, 2024
3be73a8
Fix window size of embedding model edit view
intitni Feb 7, 2024
aabd765
Make buttons default action
intitni Feb 7, 2024
84fc894
Make runningApplication private
intitni Feb 6, 2024
7bd5284
Remove a useless Task
intitni Feb 6, 2024
454750d
Generate app group related keys dynamically
intitni Feb 6, 2024
5b58927
Bump version to 0.30.3
intitni Feb 6, 2024
93e133a
Fix typo
intitni Feb 7, 2024
2e7f611
Bump build number
intitni Feb 7, 2024
70712b7
Update
intitni Feb 7, 2024
973f3b3
Update appcast.xml
intitni Feb 7, 2024
e7324cc
Merge branch 'release/0.30.3'
intitni Feb 7, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Generate app group related keys dynamically
  • Loading branch information
intitni committed Feb 7, 2024
commit 454750d28cfd91c1206627419c01e4e22397f2c7
22 changes: 11 additions & 11 deletions Tool/Sources/Configs/Configurations.swift
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
import Foundation

private var teamIDPrefix: String {
Bundle.main.infoDictionary?["TEAM_ID_PREFIX"] as? String ?? ""
}

private var bundleIdentifierBase: String {
Bundle.main.infoDictionary?["BUNDLE_IDENTIFIER_BASE"] as? String ?? ""
}

public var userDefaultSuiteName: String {
"5YKZ4Y3DAW.group.com.intii.CopilotForXcode"
"\(teamIDPrefix)group.\(bundleIdentifierBase)"
}

public var keychainAccessGroup: String {
#if DEBUG
return "5YKZ4Y3DAW.dev.com.intii.CopilotForXcode.Shared"
#else
return "5YKZ4Y3DAW.com.intii.CopilotForXcode.Shared"
#endif
return "\(teamIDPrefix)\(bundleIdentifierBase).Shared"
}

public var keychainService: String {
#if DEBUG
return "dev.com.intii.CopilotForXcode"
#else
return "com.intii.CopilotForXcode"
#endif
return bundleIdentifierBase
}