diff --git a/Peregrine.xcodeproj/project.pbxproj b/Peregrine.xcodeproj/project.pbxproj index 106872c..7e2d451 100644 --- a/Peregrine.xcodeproj/project.pbxproj +++ b/Peregrine.xcodeproj/project.pbxproj @@ -580,7 +580,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.11; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = macosx; @@ -631,7 +631,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.11; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = macosx; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; @@ -648,7 +648,7 @@ DEVELOPMENT_TEAM = 6VJ9C2YY26; INFOPLIST_FILE = "$(SRCROOT)/Peregrine/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.11; PRODUCT_BUNDLE_IDENTIFIER = com.hawkfalcon.Peregrine; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 4.0; @@ -665,7 +665,7 @@ DEVELOPMENT_TEAM = 6VJ9C2YY26; INFOPLIST_FILE = "$(SRCROOT)/Peregrine/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.11; PRODUCT_BUNDLE_IDENTIFIER = com.hawkfalcon.Peregrine; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 4.0; diff --git a/Peregrine/Assets.xcassets/peregrine-logo.imageset/Contents.json b/Peregrine/Assets.xcassets/peregrine-logo.imageset/Contents.json new file mode 100644 index 0000000..c493d8e --- /dev/null +++ b/Peregrine/Assets.xcassets/peregrine-logo.imageset/Contents.json @@ -0,0 +1,24 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "peregrine-logo2.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + }, + "properties" : { + "template-rendering-intent" : "template" + } +} \ No newline at end of file diff --git a/Peregrine/Assets.xcassets/peregrine-logo.imageset/peregrine-logo2.png b/Peregrine/Assets.xcassets/peregrine-logo.imageset/peregrine-logo2.png new file mode 100644 index 0000000..6f7eb9d Binary files /dev/null and b/Peregrine/Assets.xcassets/peregrine-logo.imageset/peregrine-logo2.png differ diff --git a/Peregrine/Assets.xcassets/peregrine-logo2.imageset/Contents.json b/Peregrine/Assets.xcassets/peregrine-logo2.imageset/Contents.json new file mode 100644 index 0000000..2dbb862 --- /dev/null +++ b/Peregrine/Assets.xcassets/peregrine-logo2.imageset/Contents.json @@ -0,0 +1,24 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "peregrine-logo.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + }, + "properties" : { + "template-rendering-intent" : "template" + } +} \ No newline at end of file diff --git a/Peregrine/Assets.xcassets/peregrine-logo2.imageset/peregrine-logo.png b/Peregrine/Assets.xcassets/peregrine-logo2.imageset/peregrine-logo.png new file mode 100644 index 0000000..03c1aea Binary files /dev/null and b/Peregrine/Assets.xcassets/peregrine-logo2.imageset/peregrine-logo.png differ diff --git a/Peregrine/Base.lproj/Main.storyboard b/Peregrine/Base.lproj/Main.storyboard index 3533f7c..897e2c4 100644 --- a/Peregrine/Base.lproj/Main.storyboard +++ b/Peregrine/Base.lproj/Main.storyboard @@ -1,6 +1,7 @@ + @@ -228,7 +229,7 @@ - + diff --git a/Peregrine/Data/Constants.swift b/Peregrine/Data/Constants.swift index 1b79ae5..f6c46d1 100644 --- a/Peregrine/Data/Constants.swift +++ b/Peregrine/Data/Constants.swift @@ -2,7 +2,7 @@ import Cocoa extension NSImage.Name { //TODO: Update Image - static let icon = NSImage.Name("GitHub") + static let icon = NSImage.Name("peregrine-logo") static let defaultProfile = NSImage.Name("GitHub-White") static let copy = NSImage.Name("copy") }