-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.yml
More file actions
67 lines (65 loc) Β· 1.8 KB
/
project.yml
File metadata and controls
67 lines (65 loc) Β· 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: ClaudeGod
options:
bundleIdPrefix: com.lcharvol
deploymentTarget:
macOS: "13.0"
xcodeVersion: "15.0"
createIntermediateGroups: true
targets:
ClaudeGod:
type: application
platform: macOS
sources:
- path: Sources
excludes:
- "*.entitlements"
- "Info.plist"
info:
path: Sources/Info.plist
properties:
CFBundleShortVersionString: $(MARKETING_VERSION)
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
LSUIElement: true
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.lcharvol.claude-god
PRODUCT_NAME: Claude God
MARKETING_VERSION: "2.20.4"
CURRENT_PROJECT_VERSION: "34"
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "13.0"
GENERATE_INFOPLIST_FILE: NO
CODE_SIGN_IDENTITY: "-"
CODE_SIGN_STYLE: Manual
ENABLE_HARDENED_RUNTIME: true
entitlements:
path: Sources/ClaudeGod.entitlements
properties:
com.apple.security.network.client: true
dependencies:
- target: ClaudeGodWidget
embed: true
ClaudeGodWidget:
type: app-extension
platform: macOS
sources:
- path: Widget
excludes:
- "Info.plist"
info:
path: Widget/Info.plist
properties:
CFBundleShortVersionString: $(MARKETING_VERSION)
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.lcharvol.claude-god.widget
PRODUCT_NAME: ClaudeGodWidget
MARKETING_VERSION: "2.20.4"
CURRENT_PROJECT_VERSION: "34"
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "14.0"
CODE_SIGN_IDENTITY: "-"
CODE_SIGN_STYLE: Manual
GENERATE_INFOPLIST_FILE: NO