Skip to content

Commit ce1f722

Browse files
committed
Added App Icons
1 parent bd4dac7 commit ce1f722

28 files changed

+136
-53
lines changed

Ampel Pilot.xcodeproj/project.pbxproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
A35F9F631F837DB800208042 /* VideoCapture.swift in Sources */ = {isa = PBXBuildFile; fileRef = A35F9F621F837DB800208042 /* VideoCapture.swift */; };
3030
A35F9F661F837DE000208042 /* YOLO.swift in Sources */ = {isa = PBXBuildFile; fileRef = A35F9F651F837DE000208042 /* YOLO.swift */; };
3131
A35F9F681F837E0400208042 /* BoundingBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = A35F9F671F837E0400208042 /* BoundingBox.swift */; };
32-
A35F9F6A1F837E2F00208042 /* AmpelPilot1_2.mlmodel in Sources */ = {isa = PBXBuildFile; fileRef = A35F9F691F837E2800208042 /* AmpelPilot1_2.mlmodel */; };
3332
A395C7BC1F8A1A2A00BF0CB0 /* AmpelPilot1_2rg.mlmodel in Sources */ = {isa = PBXBuildFile; fileRef = A395C7BB1F8A1A0800BF0CB0 /* AmpelPilot1_2rg.mlmodel */; };
3433
A395C7BE1F8A252500BF0CB0 /* FeedbackManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A395C7BD1F8A252500BF0CB0 /* FeedbackManager.swift */; };
3534
A3ADF3541F9FA67600EA4F8D /* VisualFeedbackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3ADF3531F9FA67600EA4F8D /* VisualFeedbackView.swift */; };
@@ -83,7 +82,6 @@
8382
A35F9F621F837DB800208042 /* VideoCapture.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoCapture.swift; sourceTree = "<group>"; };
8483
A35F9F651F837DE000208042 /* YOLO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YOLO.swift; sourceTree = "<group>"; };
8584
A35F9F671F837E0400208042 /* BoundingBox.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BoundingBox.swift; sourceTree = "<group>"; };
86-
A35F9F691F837E2800208042 /* AmpelPilot1_2.mlmodel */ = {isa = PBXFileReference; lastKnownFileType = file.mlmodel; path = AmpelPilot1_2.mlmodel; sourceTree = "<group>"; };
8785
A395C7BB1F8A1A0800BF0CB0 /* AmpelPilot1_2rg.mlmodel */ = {isa = PBXFileReference; lastKnownFileType = file.mlmodel; path = AmpelPilot1_2rg.mlmodel; sourceTree = "<group>"; };
8886
A395C7BD1F8A252500BF0CB0 /* FeedbackManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeedbackManager.swift; sourceTree = "<group>"; };
8987
A3ADF3531F9FA67600EA4F8D /* VisualFeedbackView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VisualFeedbackView.swift; sourceTree = "<group>"; };
@@ -220,7 +218,6 @@
220218
children = (
221219
A35F9F651F837DE000208042 /* YOLO.swift */,
222220
A35F9F671F837E0400208042 /* BoundingBox.swift */,
223-
A35F9F691F837E2800208042 /* AmpelPilot1_2.mlmodel */,
224221
A395C7BB1F8A1A0800BF0CB0 /* AmpelPilot1_2rg.mlmodel */,
225222
A3B07EE21F84DC9000B791B5 /* LightPhaseManager.swift */,
226223
A395C7BD1F8A252500BF0CB0 /* FeedbackManager.swift */,
@@ -370,7 +367,6 @@
370367
A31AF2141F9B39750067132E /* SelectionViewModel.swift in Sources */,
371368
A3ADF3541F9FA67600EA4F8D /* VisualFeedbackView.swift in Sources */,
372369
A327FA691F94A8AF002A33FE /* Settings.swift in Sources */,
373-
A35F9F6A1F837E2F00208042 /* AmpelPilot1_2.mlmodel in Sources */,
374370
A32E3A191F9A20C40059276D /* SettingsViewController.swift in Sources */,
375371
A35F9F2D1F8378DA00208042 /* AppDelegate.swift in Sources */,
376372
A32E3A1B1F9A3F870059276D /* Box.swift in Sources */,

Ampel Pilot/AppDelegate.swift

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,15 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
1313

1414
var window: UIWindow?
1515

16-
1716
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
18-
// Override point for customization after application launch.
19-
// let dataManager = DataManager()
20-
// let viewModel = DetectionViewModel(dataManager: dataManager)
21-
//
22-
// if let firstViewController = window?.rootViewController as? DetectionViewController {
23-
// firstViewController.viewModel = viewModel
24-
// }
17+
// Prevents app from dimming and eventually locking the screen
18+
application.isIdleTimerDisabled = true
2519
return true
2620
}
2721

2822
func applicationWillTerminate(_ application: UIApplication) {
2923
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
3024
}
3125

32-
3326
}
3427

Lines changed: 37 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,98 +1,116 @@
11
{
22
"images" : [
33
{
4-
"idiom" : "iphone",
54
"size" : "20x20",
5+
"idiom" : "iphone",
6+
"filename" : "Icon-40.png",
67
"scale" : "2x"
78
},
89
{
9-
"idiom" : "iphone",
1010
"size" : "20x20",
11+
"idiom" : "iphone",
12+
"filename" : "Icon-60.png",
1113
"scale" : "3x"
1214
},
1315
{
14-
"idiom" : "iphone",
1516
"size" : "29x29",
17+
"idiom" : "iphone",
18+
"filename" : "Icon-58.png",
1619
"scale" : "2x"
1720
},
1821
{
19-
"idiom" : "iphone",
2022
"size" : "29x29",
23+
"idiom" : "iphone",
24+
"filename" : "Icon-87.png",
2125
"scale" : "3x"
2226
},
2327
{
24-
"idiom" : "iphone",
2528
"size" : "40x40",
29+
"idiom" : "iphone",
30+
"filename" : "Icon-80.png",
2631
"scale" : "2x"
2732
},
2833
{
29-
"idiom" : "iphone",
3034
"size" : "40x40",
35+
"idiom" : "iphone",
36+
"filename" : "Icon-120.png",
3137
"scale" : "3x"
3238
},
3339
{
34-
"idiom" : "iphone",
3540
"size" : "60x60",
41+
"idiom" : "iphone",
42+
"filename" : "Icon-121.png",
3643
"scale" : "2x"
3744
},
3845
{
39-
"idiom" : "iphone",
4046
"size" : "60x60",
47+
"idiom" : "iphone",
48+
"filename" : "Icon-180.png",
4149
"scale" : "3x"
4250
},
4351
{
44-
"idiom" : "ipad",
4552
"size" : "20x20",
53+
"idiom" : "ipad",
54+
"filename" : "Icon-20.png",
4655
"scale" : "1x"
4756
},
4857
{
49-
"idiom" : "ipad",
5058
"size" : "20x20",
59+
"idiom" : "ipad",
60+
"filename" : "Icon-41.png",
5161
"scale" : "2x"
5262
},
5363
{
54-
"idiom" : "ipad",
5564
"size" : "29x29",
65+
"idiom" : "ipad",
66+
"filename" : "Icon-29.png",
5667
"scale" : "1x"
5768
},
5869
{
59-
"idiom" : "ipad",
6070
"size" : "29x29",
71+
"idiom" : "ipad",
72+
"filename" : "Icon-59.png",
6173
"scale" : "2x"
6274
},
6375
{
64-
"idiom" : "ipad",
6576
"size" : "40x40",
77+
"idiom" : "ipad",
78+
"filename" : "Icon-42.png",
6679
"scale" : "1x"
6780
},
6881
{
69-
"idiom" : "ipad",
7082
"size" : "40x40",
83+
"idiom" : "ipad",
84+
"filename" : "Icon-81.png",
7185
"scale" : "2x"
7286
},
7387
{
74-
"idiom" : "ipad",
7588
"size" : "76x76",
89+
"idiom" : "ipad",
90+
"filename" : "Icon-76.png",
7691
"scale" : "1x"
7792
},
7893
{
79-
"idiom" : "ipad",
8094
"size" : "76x76",
95+
"idiom" : "ipad",
96+
"filename" : "Icon-152.png",
8197
"scale" : "2x"
8298
},
8399
{
84-
"idiom" : "ipad",
85100
"size" : "83.5x83.5",
101+
"idiom" : "ipad",
102+
"filename" : "Icon-167.png",
86103
"scale" : "2x"
87104
},
88105
{
89-
"idiom" : "ios-marketing",
90106
"size" : "1024x1024",
107+
"idiom" : "ios-marketing",
108+
"filename" : "Icon-1024.png",
91109
"scale" : "1x"
92110
}
93111
],
94112
"info" : {
95113
"version" : 1,
96114
"author" : "xcode"
97115
}
98-
}
116+
}
30 KB
Loading
2.75 KB
Loading
2.75 KB
Loading
3.52 KB
Loading
3.79 KB
Loading
4.24 KB
Loading
513 Bytes
Loading

0 commit comments

Comments
 (0)