Skip to content

Commit b57a5d7

Browse files
committed
now with icon and .gitignore.
Bump version to 0.2.
1 parent 5ffcfb6 commit b57a5d7

16 files changed

Lines changed: 149 additions & 3 deletions

.gitignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# macOS
2+
.DS_Store
3+
._*
4+
.AppleDouble
5+
.LSOverride
6+
.Spotlight-V100
7+
.Trashes
8+
9+
# Xcode — user-specific state
10+
xcuserdata/
11+
*.xcuserstate
12+
*.xcuserdatad/
13+
14+
# Xcode — build output
15+
build/
16+
DerivedData/
17+
*.xcworkspace/xcuserdata/
18+
19+
# Xcode — breakpoints and schemes owned by a specific developer
20+
xcshareddata/WorkspaceSettings.xcsettings
21+
22+
# Xcode Playgrounds
23+
timeline.xctimeline
24+
playground.xcworkspace
25+
26+
# Swift Package Manager (in case anyone adds SPM deps later)
27+
.build/
28+
.swiftpm/
29+
Packages/
30+
Package.pins
31+
Package.resolved
32+
33+
# CocoaPods (in case anyone adds pods later)
34+
Pods/
35+
36+
# Carthage
37+
Carthage/Build/
38+
Carthage/Checkouts/
39+
40+
# Compiled / linker artifacts
41+
*.o
42+
*.hmap
43+
*.ipa
44+
*.dSYM.zip
45+
*.dSYM
46+
47+
# fastlane
48+
fastlane/report.xml
49+
fastlane/Preview.html
50+
fastlane/screenshots/**/*.png
51+
fastlane/test_output
52+
53+
# Editors
54+
.vscode/
55+
.idea/
56+
*.swp
57+
*~
58+
59+
# Local env / secrets (just in case)
60+
.env
61+
.env.*
62+
!.env.example

Geolignment.xcodeproj/project.pbxproj

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
B0000000000000000000040C /* GeosyncControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0000000000000000000040C /* GeosyncControl.swift */; };
2525
B0000000000000000000040D /* LibraryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0000000000000000000040D /* LibraryView.swift */; };
2626
B0000000000000000000040E /* TrackSidebar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0000000000000000000040E /* TrackSidebar.swift */; };
27+
B00000000000000000000501 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F00000000000000000000501 /* Assets.xcassets */; };
2728
/* End PBXBuildFile section */
2829

2930
/* Begin PBXFileReference section */
@@ -47,6 +48,7 @@
4748
F0000000000000000000040C /* GeosyncControl.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GeosyncControl.swift; sourceTree = "<group>"; };
4849
F0000000000000000000040D /* LibraryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LibraryView.swift; sourceTree = "<group>"; };
4950
F0000000000000000000040E /* TrackSidebar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrackSidebar.swift; sourceTree = "<group>"; };
51+
F00000000000000000000501 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
5052
/* End PBXFileReference section */
5153

5254
/* Begin PBXFrameworksBuildPhase section */
@@ -69,6 +71,7 @@
6971
G00000000000000000000002 /* Models */,
7072
G00000000000000000000003 /* Services */,
7173
G00000000000000000000004 /* Views */,
74+
F00000000000000000000501 /* Assets.xcassets */,
7275
F0000000000000000000010D /* Info.plist */,
7376
F0000000000000000000010E /* Geolignment.entitlements */,
7477
);
@@ -186,6 +189,7 @@
186189
isa = PBXResourcesBuildPhase;
187190
buildActionMask = 2147483647;
188191
files = (
192+
B00000000000000000000501 /* Assets.xcassets in Resources */,
189193
);
190194
runOnlyForDeploymentPostprocessing = 0;
191195
};
@@ -288,6 +292,7 @@
288292
X00000000000000000000003 /* Debug */ = {
289293
isa = XCBuildConfiguration;
290294
buildSettings = {
295+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
291296
CODE_SIGN_ENTITLEMENTS = Geolignment/Geolignment.entitlements;
292297
CODE_SIGN_STYLE = Automatic;
293298
COMBINE_HIDPI_IMAGES = YES;
@@ -301,7 +306,7 @@
301306
"@executable_path/../Frameworks",
302307
);
303308
MACOSX_DEPLOYMENT_TARGET = 14.0;
304-
MARKETING_VERSION = 0.1;
309+
MARKETING_VERSION = 0.2;
305310
PRODUCT_BUNDLE_IDENTIFIER = com.bench.Geolignment;
306311
PRODUCT_NAME = "$(TARGET_NAME)";
307312
SWIFT_EMIT_LOC_STRINGS = YES;
@@ -312,6 +317,7 @@
312317
X00000000000000000000004 /* Release */ = {
313318
isa = XCBuildConfiguration;
314319
buildSettings = {
320+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
315321
CODE_SIGN_ENTITLEMENTS = Geolignment/Geolignment.entitlements;
316322
CODE_SIGN_STYLE = Automatic;
317323
COMBINE_HIDPI_IMAGES = YES;
@@ -325,7 +331,7 @@
325331
"@executable_path/../Frameworks",
326332
);
327333
MACOSX_DEPLOYMENT_TARGET = 14.0;
328-
MARKETING_VERSION = 0.1;
334+
MARKETING_VERSION = 0.2;
329335
PRODUCT_BUNDLE_IDENTIFIER = com.bench.Geolignment;
330336
PRODUCT_NAME = "$(TARGET_NAME)";
331337
SWIFT_EMIT_LOC_STRINGS = YES;
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "icon_16x16.png",
5+
"idiom" : "mac",
6+
"scale" : "1x",
7+
"size" : "16x16"
8+
},
9+
{
10+
"filename" : "icon_16x16@2x.png",
11+
"idiom" : "mac",
12+
"scale" : "2x",
13+
"size" : "16x16"
14+
},
15+
{
16+
"filename" : "icon_32x32.png",
17+
"idiom" : "mac",
18+
"scale" : "1x",
19+
"size" : "32x32"
20+
},
21+
{
22+
"filename" : "icon_32x32@2x.png",
23+
"idiom" : "mac",
24+
"scale" : "2x",
25+
"size" : "32x32"
26+
},
27+
{
28+
"filename" : "icon_128x128.png",
29+
"idiom" : "mac",
30+
"scale" : "1x",
31+
"size" : "128x128"
32+
},
33+
{
34+
"filename" : "icon_128x128@2x.png",
35+
"idiom" : "mac",
36+
"scale" : "2x",
37+
"size" : "128x128"
38+
},
39+
{
40+
"filename" : "icon_256x256.png",
41+
"idiom" : "mac",
42+
"scale" : "1x",
43+
"size" : "256x256"
44+
},
45+
{
46+
"filename" : "icon_256x256@2x.png",
47+
"idiom" : "mac",
48+
"scale" : "2x",
49+
"size" : "256x256"
50+
},
51+
{
52+
"filename" : "icon_512x512.png",
53+
"idiom" : "mac",
54+
"scale" : "1x",
55+
"size" : "512x512"
56+
},
57+
{
58+
"filename" : "icon_512x512@2x.png",
59+
"idiom" : "mac",
60+
"scale" : "2x",
61+
"size" : "512x512"
62+
}
63+
],
64+
"info" : {
65+
"author" : "xcode",
66+
"version" : 1
67+
}
68+
}
26.1 KB
Loading
93.1 KB
Loading
847 Bytes
Loading
2.42 KB
Loading
93.1 KB
Loading
361 KB
Loading
2.42 KB
Loading

0 commit comments

Comments
 (0)