1
Fork 0

Removing some warnings

This commit is contained in:
Joshua Goins 2021-09-20 12:50:11 -04:00
parent 4103cbacfb
commit 18d7c8056c
9 changed files with 34 additions and 35 deletions

View file

@ -1,68 +1,68 @@
{ {
"images" : [ "images" : [
{ {
"size" : "16x16",
"idiom" : "mac",
"filename" : "icon-16.png", "filename" : "icon-16.png",
"scale" : "1x" "idiom" : "mac",
"scale" : "1x",
"size" : "16x16"
}, },
{ {
"size" : "16x16",
"idiom" : "mac",
"filename" : "icon-32.png", "filename" : "icon-32.png",
"scale" : "2x" "idiom" : "mac",
"scale" : "2x",
"size" : "16x16"
}, },
{ {
"size" : "32x32",
"idiom" : "mac",
"filename" : "icon-32.png", "filename" : "icon-32.png",
"scale" : "1x" "idiom" : "mac",
"scale" : "1x",
"size" : "32x32"
}, },
{ {
"size" : "32x32",
"idiom" : "mac",
"filename" : "icon-64.png", "filename" : "icon-64.png",
"scale" : "2x" "idiom" : "mac",
"scale" : "2x",
"size" : "32x32"
}, },
{ {
"size" : "128x128",
"idiom" : "mac",
"filename" : "icon-128.png", "filename" : "icon-128.png",
"scale" : "1x" "idiom" : "mac",
"scale" : "1x",
"size" : "128x128"
}, },
{ {
"size" : "128x128",
"idiom" : "mac",
"filename" : "icon-256.png", "filename" : "icon-256.png",
"scale" : "2x" "idiom" : "mac",
"scale" : "2x",
"size" : "128x128"
}, },
{ {
"size" : "256x256",
"idiom" : "mac",
"filename" : "icon-256.png", "filename" : "icon-256.png",
"scale" : "1x" "idiom" : "mac",
"scale" : "1x",
"size" : "256x256"
}, },
{ {
"size" : "256x256",
"idiom" : "mac",
"filename" : "icon-512.png", "filename" : "icon-512.png",
"scale" : "2x" "idiom" : "mac",
"scale" : "2x",
"size" : "256x256"
}, },
{ {
"size" : "512x512",
"idiom" : "mac",
"filename" : "icon-512.png", "filename" : "icon-512.png",
"scale" : "1x" "idiom" : "mac",
"scale" : "1x",
"size" : "512x512"
}, },
{ {
"size" : "512x512",
"idiom" : "mac",
"filename" : "icon-1024.png", "filename" : "icon-1024.png",
"scale" : "2x" "idiom" : "mac",
"scale" : "2x",
"size" : "512x512"
} }
], ],
"info" : { "info" : {
"version" : 1, "author" : "xcode",
"author" : "xcode" "version" : 1
} }
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 585 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

View file

@ -36,7 +36,7 @@ class TimelapseViewController: NSViewController {
// This returns a URL? even though it is an NSURL class method // This returns a URL? even though it is an NSURL class method
let fullURL = NSURL.fileURL(withPathComponents: [directory, fileName])! let fullURL = NSURL.fileURL(withPathComponents: [directory, fileName])!
try? archive.extract(archive[entryPath]!, to: fullURL) let _ = try? archive.extract(archive[entryPath]!, to: fullURL)
OperationQueue.main.addOperation { OperationQueue.main.addOperation {
self.player.insert(AVPlayerItem(url: fullURL), after: nil) self.player.insert(AVPlayerItem(url: fullURL), after: nil)
@ -50,7 +50,6 @@ class TimelapseViewController: NSViewController {
return return
} }
let directory = NSTemporaryDirectory() let directory = NSTemporaryDirectory()
let queue = OperationQueue() let queue = OperationQueue()