Skip to content

Commit f527f20

Browse files
committed
Merge branch 'release/0.15.0'
2 parents 813eaff + 367cdc1 commit f527f20

File tree

129 files changed

+5298
-2334
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+5298
-2334
lines changed

Config.debug.xcconfig

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
#include "Version.xcconfig"
22
SLASH = /
33

4+
HOST_APP_NAME = Copilot for Xcode Dev
45
BUNDLE_IDENTIFIER_BASE = dev.com.intii.CopilotForXcode
5-
EXTENSION_BUNDLE_NAME = Copilot Dev
66
SPARKLE_FEED_URL = http:$(SLASH)$(SLASH)127.0.0.1:9433/appcast.xml
77
SPARKLE_PUBLIC_KEY = WDzm5GHnc6c8kjeJEgX5GuGiPpW6Lc/ovGjLnrrZvPY=
8+
APPLICATION_SUPPORT_FOLDER = dev.com.intii.CopilotForXcode
9+
EXTENSION_BUNDLE_NAME = Copilot Dev
10+
EXTENSION_BUNDLE_DISPLAY_NAME = Copilot Dev
11+
EXTENSION_SERVICE_NAME = CopilotForXcodeExtensionService
12+
13+
// see also target Configs

Config.xcconfig

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
#include "Version.xcconfig"
22
SLASH = /
33

4+
HOST_APP_NAME = Copilot for Xcode
45
BUNDLE_IDENTIFIER_BASE = com.intii.CopilotForXcode
5-
EXTENSION_BUNDLE_NAME = Copilot
66
SPARKLE_FEED_URL = https:$(SLASH)$(SLASH)raw.githubusercontent.com/intitni/CopilotForXcode/main/appcast.xml
77
SPARKLE_PUBLIC_KEY = WDzm5GHnc6c8kjeJEgX5GuGiPpW6Lc/ovGjLnrrZvPY=
8+
APPLICATION_SUPPORT_FOLDER = com.intii.CopilotForXcode
9+
EXTENSION_BUNDLE_NAME = Copilot
10+
EXTENSION_BUNDLE_DISPLAY_NAME = Copilot
11+
EXTENSION_SERVICE_NAME = CopilotForXcodeExtensionService
12+
13+
// see also target Configs

Copilot for Xcode.xcodeproj/project.pbxproj

Lines changed: 9 additions & 61 deletions
Large diffs are not rendered by default.

Copilot for Xcode.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Copilot for Xcode/AccountView.swift

Lines changed: 0 additions & 94 deletions
This file was deleted.

Copilot for Xcode/App.swift

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,20 @@ import Client
22
import SwiftUI
33
import UpdateChecker
44
import XPCShared
5+
import HostApp
56

67
@main
78
struct CopilotForXcodeApp: App {
89
var body: some Scene {
910
WindowGroup {
10-
ContentView()
11-
.frame(minWidth: 500, minHeight: 700)
12-
.preferredColorScheme(.dark)
11+
TabContainer()
12+
.frame(minWidth: 800, minHeight: 600)
1313
.onAppear {
1414
UserDefaults.setupDefaultSettings()
1515
}
1616
.environment(\.updateChecker, UpdateChecker(hostBundle: Bundle.main))
1717
}
18-
.windowStyle(.hiddenTitleBar)
1918
}
2019
}
2120

2221
var isPreview: Bool { ProcessInfo.processInfo.environment["XCODE_RUNNING_FOR_PREVIEWS"] == "1" }
23-
24-
struct UpdateCheckerKey: EnvironmentKey {
25-
static var defaultValue: UpdateChecker = .init(hostBundle: nil)
26-
}
27-
28-
extension EnvironmentValues {
29-
var updateChecker: UpdateChecker {
30-
get { self[UpdateCheckerKey.self] }
31-
set { self[UpdateCheckerKey.self] = newValue }
32-
}
33-
}

Copilot for Xcode/AppInfoView.swift

Lines changed: 0 additions & 57 deletions
This file was deleted.

Copilot for Xcode/ContentView.swift

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)