Browse Source

Added new AppIcon

Thomas Buck 7 years ago
parent
commit
b16aec2349
No account linked to committer's email address

+ 2
- 2
DisplayBacklight/AppDelegate.m View File

77
 // This defines the update-speed of the Ambilight, in seconds.
77
 // This defines the update-speed of the Ambilight, in seconds.
78
 // With a baudrate of 115200 and 156 LEDs and 14-bytes Magic-Word,
78
 // With a baudrate of 115200 and 156 LEDs and 14-bytes Magic-Word,
79
 // theoretically you could transmit:
79
 // theoretically you could transmit:
80
-//     115200 / (14 + (156 * 3)) * 8 =~ 30 Frames per Second
80
+//     115200 / ((14 + (156 * 3)) * 8) =~ 30 Frames per Second
81
 // Inserting (1.0 / 30.0) here would try to reach these 30FPS,
81
 // Inserting (1.0 / 30.0) here would try to reach these 30FPS,
82
 // but will probably cause high CPU-Usage.
82
 // but will probably cause high CPU-Usage.
83
 // (Run-Time of the algorithm is ignored here, so real speed will be
83
 // (Run-Time of the algorithm is ignored here, so real speed will be
84
 // slightly lower.)
84
 // slightly lower.)
85
-#define DISPLAY_DELAY (1.0 / 20.0)
85
+#define DISPLAY_DELAY (1.0 / 30.0)
86
 
86
 
87
 // How many pixels to skip when calculating the average color.
87
 // How many pixels to skip when calculating the average color.
88
 // Slightly increases performance and doesn't really alter the result.
88
 // Slightly increases performance and doesn't really alter the result.

BIN
DisplayBacklight/Assets.xcassets/AppIcon.appiconset/1024.png View File


BIN
DisplayBacklight/Assets.xcassets/AppIcon.appiconset/128.png View File


BIN
DisplayBacklight/Assets.xcassets/AppIcon.appiconset/16.png View File


BIN
DisplayBacklight/Assets.xcassets/AppIcon.appiconset/256-1.png View File


BIN
DisplayBacklight/Assets.xcassets/AppIcon.appiconset/256.png View File


BIN
DisplayBacklight/Assets.xcassets/AppIcon.appiconset/32-1.png View File


BIN
DisplayBacklight/Assets.xcassets/AppIcon.appiconset/32.png View File


BIN
DisplayBacklight/Assets.xcassets/AppIcon.appiconset/512-1.png View File


BIN
DisplayBacklight/Assets.xcassets/AppIcon.appiconset/512.png View File


BIN
DisplayBacklight/Assets.xcassets/AppIcon.appiconset/64.png View File


+ 4
- 4
DisplayBacklight/Assets.xcassets/AppIcon.appiconset/Contents.json View File

9
     {
9
     {
10
       "size" : "16x16",
10
       "size" : "16x16",
11
       "idiom" : "mac",
11
       "idiom" : "mac",
12
-      "filename" : "32.png",
12
+      "filename" : "32-1.png",
13
       "scale" : "2x"
13
       "scale" : "2x"
14
     },
14
     },
15
     {
15
     {
33
     {
33
     {
34
       "size" : "128x128",
34
       "size" : "128x128",
35
       "idiom" : "mac",
35
       "idiom" : "mac",
36
-      "filename" : "256.png",
36
+      "filename" : "256-1.png",
37
       "scale" : "2x"
37
       "scale" : "2x"
38
     },
38
     },
39
     {
39
     {
45
     {
45
     {
46
       "size" : "256x256",
46
       "size" : "256x256",
47
       "idiom" : "mac",
47
       "idiom" : "mac",
48
-      "filename" : "512.png",
48
+      "filename" : "512-1.png",
49
       "scale" : "2x"
49
       "scale" : "2x"
50
     },
50
     },
51
     {
51
     {
65
     "version" : 1,
65
     "version" : 1,
66
     "author" : "xcode"
66
     "author" : "xcode"
67
   }
67
   }
68
-}
68
+}

+ 1
- 1
DisplayBacklight/Info.plist View File

21
 	<key>CFBundleSignature</key>
21
 	<key>CFBundleSignature</key>
22
 	<string>????</string>
22
 	<string>????</string>
23
 	<key>CFBundleVersion</key>
23
 	<key>CFBundleVersion</key>
24
-	<string>99</string>
24
+	<string>103</string>
25
 	<key>LSApplicationCategoryType</key>
25
 	<key>LSApplicationCategoryType</key>
26
 	<string>public.app-category.utilities</string>
26
 	<string>public.app-category.utilities</string>
27
 	<key>LSMinimumSystemVersion</key>
27
 	<key>LSMinimumSystemVersion</key>

Loading…
Cancel
Save