├── .gitignore ├── Cocoa ├── SimpleSidebar.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── justinbush.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── justinbush.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── SimpleSidebar │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── Sidebar │ │ ├── Contents.json │ │ ├── Icon.imageset │ │ ├── Contents.json │ │ └── Icon-MacOS-256x256@2x.png │ │ ├── Items │ │ ├── Contents.json │ │ ├── Domains.imageset │ │ │ ├── Contents.json │ │ │ ├── Domains@3x-1.png │ │ │ └── Domains@3x.png │ │ ├── Home.imageset │ │ │ ├── Contents.json │ │ │ ├── Home@3x-1.png │ │ │ └── Home@3x.png │ │ ├── Logout.imageset │ │ │ ├── Contents.json │ │ │ ├── Logout@3x-1.png │ │ │ └── Logout@3x.png │ │ ├── MyAccount.imageset │ │ │ ├── Contents.json │ │ │ ├── My Account@3x-1.png │ │ │ └── My Account@3x.png │ │ ├── Notifications.imageset │ │ │ ├── Contents.json │ │ │ ├── Notifications@3x-1.png │ │ │ └── Notifications@3x.png │ │ ├── Settings.imageset │ │ │ ├── Contents.json │ │ │ ├── Settings@3x-1.png │ │ │ └── Settings@3x.png │ │ ├── Templates.imageset │ │ │ ├── Contents.json │ │ │ ├── Templates@3x-1.png │ │ │ └── Templates@3x.png │ │ ├── Websites.imageset │ │ │ ├── Contents.json │ │ │ ├── Websites@3x-1.png │ │ │ └── Websites@3x.png │ │ └── Welcome.imageset │ │ │ ├── Contents.json │ │ │ ├── Welcome@3x-1.png │ │ │ └── Welcome@3x.png │ │ └── Selected │ │ ├── Contents.json │ │ ├── Domains-Selected.imageset │ │ ├── Contents.json │ │ └── Domains@3x.png │ │ ├── Home-Selected.imageset │ │ ├── Contents.json │ │ └── Home@3x.png │ │ ├── MyAccount-Selected.imageset │ │ ├── Contents.json │ │ └── My Account@3x.png │ │ ├── Notifications-Selected.imageset │ │ ├── Contents.json │ │ └── Notifications@3x.png │ │ ├── Settings-Selected.imageset │ │ ├── Contents.json │ │ └── Settings@3x.png │ │ ├── Templates-Selected.imageset │ │ ├── Contents.json │ │ └── Templates@3x.png │ │ ├── Websites-Selected.imageset │ │ ├── Contents.json │ │ └── Websites@3x.png │ │ └── Welcome-Selected.imageset │ │ ├── Contents.json │ │ └── Welcome@3x.png │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── SidebarViewController.swift │ ├── SimpleSidebar.entitlements │ └── ViewController.swift ├── Design ├── Cover.jpg ├── Demo.gif ├── GuidelineComparison.jpg ├── Header.jpg ├── Mockup.jpg ├── Sidebar.xd └── Variants.png ├── LICENSE ├── Programmatic ├── SimpleSidebar.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── justinbush.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── justinbush.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── SimpleSidebar │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── Sidebar │ │ ├── Contents.json │ │ ├── Icons (Blue) │ │ ├── Arcade-Blue.imageset │ │ │ ├── Arcade.png │ │ │ ├── Arcade@2x.png │ │ │ ├── Arcade@3x.png │ │ │ └── Contents.json │ │ ├── Categories-Blue.imageset │ │ │ ├── Categories.png │ │ │ ├── Categories@2x.png │ │ │ ├── Categories@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Create-Blue.imageset │ │ │ ├── Contents.json │ │ │ ├── Create.png │ │ │ ├── Create@2x.png │ │ │ └── Create@3x.png │ │ ├── Develop-Blue.imageset │ │ │ ├── Contents.json │ │ │ ├── Develop.png │ │ │ ├── Develop@2x.png │ │ │ └── Develop@3x.png │ │ ├── Discover-Blue.imageset │ │ │ ├── Contents.json │ │ │ ├── Discover.png │ │ │ ├── Discover@2x.png │ │ │ └── Discover@3x.png │ │ ├── Play-Blue.imageset │ │ │ ├── Contents.json │ │ │ ├── Play.png │ │ │ ├── Play@2x.png │ │ │ └── Play@3x.png │ │ ├── Updates-Blue.imageset │ │ │ ├── Contents.json │ │ │ ├── Updates.png │ │ │ ├── Updates@2x.png │ │ │ └── Updates@3x.png │ │ └── Work-Blue.imageset │ │ │ ├── Contents.json │ │ │ ├── Work.png │ │ │ ├── Work@2x.png │ │ │ └── Work@3x.png │ │ ├── Icons │ │ ├── Arcade.imageset │ │ │ ├── Arcade-1.png │ │ │ ├── Arcade.png │ │ │ ├── Arcade@2x-1.png │ │ │ ├── Arcade@2x.png │ │ │ ├── Arcade@3x-1.png │ │ │ ├── Arcade@3x.png │ │ │ └── Contents.json │ │ ├── Categories.imageset │ │ │ ├── Categories-1.png │ │ │ ├── Categories.png │ │ │ ├── Categories@2x-1.png │ │ │ ├── Categories@2x.png │ │ │ ├── Categories@3x-1.png │ │ │ ├── Categories@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Create.imageset │ │ │ ├── Contents.json │ │ │ ├── Create-1.png │ │ │ ├── Create.png │ │ │ ├── Create@2x-1.png │ │ │ ├── Create@2x.png │ │ │ ├── Create@3x-1.png │ │ │ └── Create@3x.png │ │ ├── Develop.imageset │ │ │ ├── Contents.json │ │ │ ├── Develop-1.png │ │ │ ├── Develop.png │ │ │ ├── Develop@2x-1.png │ │ │ ├── Develop@2x.png │ │ │ ├── Develop@3x-1.png │ │ │ └── Develop@3x.png │ │ ├── Discover.imageset │ │ │ ├── Contents.json │ │ │ ├── Discover-1.png │ │ │ ├── Discover.png │ │ │ ├── Discover@2x-1.png │ │ │ ├── Discover@2x.png │ │ │ ├── Discover@3x-1.png │ │ │ └── Discover@3x.png │ │ ├── Play.imageset │ │ │ ├── Contents.json │ │ │ ├── Play-1.png │ │ │ ├── Play.png │ │ │ ├── Play@2x-1.png │ │ │ ├── Play@2x.png │ │ │ ├── Play@3x-1.png │ │ │ └── Play@3x.png │ │ ├── Updates.imageset │ │ │ ├── Contents.json │ │ │ ├── Updates-1.png │ │ │ ├── Updates.png │ │ │ ├── Updates@2x-1.png │ │ │ ├── Updates@2x.png │ │ │ ├── Updates@3x-1.png │ │ │ └── Updates@3x.png │ │ └── Work.imageset │ │ │ ├── Contents.json │ │ │ ├── Work-1.png │ │ │ ├── Work.png │ │ │ ├── Work@2x-1.png │ │ │ ├── Work@2x.png │ │ │ ├── Work@3x-1.png │ │ │ └── Work@3x.png │ │ ├── SelectedBackground-Blue.colorset │ │ └── Contents.json │ │ ├── SelectedBackground.colorset │ │ └── Contents.json │ │ └── Sidebar-Header-Icon.imageset │ │ ├── Contents.json │ │ └── sidebar-icon.png │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── Sidebar │ ├── SidebarMenu.swift │ └── SidebarViewController.swift │ ├── SimpleSidebar.entitlements │ └── ViewController.swift ├── README.md └── SwiftUI ├── SimpleSidebarUI.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── justinbush.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── justinbush.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── SimpleSidebarUI ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── ContentView.swift ├── Info.plist ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── SidebarView.swift ├── SimpleSidebarUI.entitlements └── SimpleSidebarUIApp.swift /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled source # 2 | ################### 3 | *.com 4 | *.class 5 | *.dll 6 | *.exe 7 | *.o 8 | *.so 9 | 10 | # Packages # 11 | ############ 12 | # it's better to unpack these files and commit the raw source 13 | # git has its own built in compression methods 14 | *.7z 15 | *.dmg 16 | *.gz 17 | *.iso 18 | *.jar 19 | *.rar 20 | *.tar 21 | *.zip 22 | 23 | # Logs and databases # 24 | ###################### 25 | *.log 26 | *.sql 27 | *.sqlite 28 | 29 | # OS generated files # 30 | ###################### 31 | .DS_Store 32 | .DS_Store? 33 | ._* 34 | .Spotlight-V100 35 | .Trashes 36 | ehthumbs.db 37 | Thumbs.db 38 | 39 | 40 | # Node.js / Typescript 41 | node_modules 42 | dist 43 | .eslintcache 44 | 45 | # Design Templates 46 | Design/Cover.psd 47 | Design/Programmatic.psd 48 | #Design/Sidebar.xd -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | C2B2EFE125EFDAAD00405DD1 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2B2EFE025EFDAAD00405DD1 /* AppDelegate.swift */; }; 11 | C2B2EFE325EFDAAD00405DD1 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2B2EFE225EFDAAD00405DD1 /* ViewController.swift */; }; 12 | C2B2EFE525EFDAAF00405DD1 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C2B2EFE425EFDAAF00405DD1 /* Assets.xcassets */; }; 13 | C2B2EFE825EFDAAF00405DD1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C2B2EFE625EFDAAF00405DD1 /* Main.storyboard */; }; 14 | C2B2EFF525EFDCE800405DD1 /* SidebarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2B2EFF425EFDCE800405DD1 /* SidebarViewController.swift */; }; 15 | /* End PBXBuildFile section */ 16 | 17 | /* Begin PBXFileReference section */ 18 | C2B2EFDD25EFDAAD00405DD1 /* SimpleSidebar.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SimpleSidebar.app; sourceTree = BUILT_PRODUCTS_DIR; }; 19 | C2B2EFE025EFDAAD00405DD1 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 20 | C2B2EFE225EFDAAD00405DD1 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 21 | C2B2EFE425EFDAAF00405DD1 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 22 | C2B2EFE725EFDAAF00405DD1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 23 | C2B2EFE925EFDAAF00405DD1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 24 | C2B2EFEA25EFDAAF00405DD1 /* SimpleSidebar.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = SimpleSidebar.entitlements; sourceTree = ""; }; 25 | C2B2EFF425EFDCE800405DD1 /* SidebarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SidebarViewController.swift; sourceTree = ""; }; 26 | /* End PBXFileReference section */ 27 | 28 | /* Begin PBXFrameworksBuildPhase section */ 29 | C2B2EFDA25EFDAAD00405DD1 /* Frameworks */ = { 30 | isa = PBXFrameworksBuildPhase; 31 | buildActionMask = 2147483647; 32 | files = ( 33 | ); 34 | runOnlyForDeploymentPostprocessing = 0; 35 | }; 36 | /* End PBXFrameworksBuildPhase section */ 37 | 38 | /* Begin PBXGroup section */ 39 | C2B2EFD425EFDAAD00405DD1 = { 40 | isa = PBXGroup; 41 | children = ( 42 | C2B2EFDF25EFDAAD00405DD1 /* SimpleSidebar */, 43 | C2B2EFDE25EFDAAD00405DD1 /* Products */, 44 | ); 45 | sourceTree = ""; 46 | }; 47 | C2B2EFDE25EFDAAD00405DD1 /* Products */ = { 48 | isa = PBXGroup; 49 | children = ( 50 | C2B2EFDD25EFDAAD00405DD1 /* SimpleSidebar.app */, 51 | ); 52 | name = Products; 53 | sourceTree = ""; 54 | }; 55 | C2B2EFDF25EFDAAD00405DD1 /* SimpleSidebar */ = { 56 | isa = PBXGroup; 57 | children = ( 58 | C2B2EFE025EFDAAD00405DD1 /* AppDelegate.swift */, 59 | C2B2EFE225EFDAAD00405DD1 /* ViewController.swift */, 60 | C2B2EFF425EFDCE800405DD1 /* SidebarViewController.swift */, 61 | C2B2EFE425EFDAAF00405DD1 /* Assets.xcassets */, 62 | C2B2EFE625EFDAAF00405DD1 /* Main.storyboard */, 63 | C2B2EFE925EFDAAF00405DD1 /* Info.plist */, 64 | C2B2EFEA25EFDAAF00405DD1 /* SimpleSidebar.entitlements */, 65 | ); 66 | path = SimpleSidebar; 67 | sourceTree = ""; 68 | }; 69 | /* End PBXGroup section */ 70 | 71 | /* Begin PBXNativeTarget section */ 72 | C2B2EFDC25EFDAAD00405DD1 /* SimpleSidebar */ = { 73 | isa = PBXNativeTarget; 74 | buildConfigurationList = C2B2EFED25EFDAAF00405DD1 /* Build configuration list for PBXNativeTarget "SimpleSidebar" */; 75 | buildPhases = ( 76 | C2B2EFD925EFDAAD00405DD1 /* Sources */, 77 | C2B2EFDA25EFDAAD00405DD1 /* Frameworks */, 78 | C2B2EFDB25EFDAAD00405DD1 /* Resources */, 79 | ); 80 | buildRules = ( 81 | ); 82 | dependencies = ( 83 | ); 84 | name = SimpleSidebar; 85 | productName = SimpleSidebar; 86 | productReference = C2B2EFDD25EFDAAD00405DD1 /* SimpleSidebar.app */; 87 | productType = "com.apple.product-type.application"; 88 | }; 89 | /* End PBXNativeTarget section */ 90 | 91 | /* Begin PBXProject section */ 92 | C2B2EFD525EFDAAD00405DD1 /* Project object */ = { 93 | isa = PBXProject; 94 | attributes = { 95 | LastSwiftUpdateCheck = 1240; 96 | LastUpgradeCheck = 1240; 97 | TargetAttributes = { 98 | C2B2EFDC25EFDAAD00405DD1 = { 99 | CreatedOnToolsVersion = 12.4; 100 | }; 101 | }; 102 | }; 103 | buildConfigurationList = C2B2EFD825EFDAAD00405DD1 /* Build configuration list for PBXProject "SimpleSidebar" */; 104 | compatibilityVersion = "Xcode 9.3"; 105 | developmentRegion = en; 106 | hasScannedForEncodings = 0; 107 | knownRegions = ( 108 | en, 109 | Base, 110 | ); 111 | mainGroup = C2B2EFD425EFDAAD00405DD1; 112 | productRefGroup = C2B2EFDE25EFDAAD00405DD1 /* Products */; 113 | projectDirPath = ""; 114 | projectRoot = ""; 115 | targets = ( 116 | C2B2EFDC25EFDAAD00405DD1 /* SimpleSidebar */, 117 | ); 118 | }; 119 | /* End PBXProject section */ 120 | 121 | /* Begin PBXResourcesBuildPhase section */ 122 | C2B2EFDB25EFDAAD00405DD1 /* Resources */ = { 123 | isa = PBXResourcesBuildPhase; 124 | buildActionMask = 2147483647; 125 | files = ( 126 | C2B2EFE525EFDAAF00405DD1 /* Assets.xcassets in Resources */, 127 | C2B2EFE825EFDAAF00405DD1 /* Main.storyboard in Resources */, 128 | ); 129 | runOnlyForDeploymentPostprocessing = 0; 130 | }; 131 | /* End PBXResourcesBuildPhase section */ 132 | 133 | /* Begin PBXSourcesBuildPhase section */ 134 | C2B2EFD925EFDAAD00405DD1 /* Sources */ = { 135 | isa = PBXSourcesBuildPhase; 136 | buildActionMask = 2147483647; 137 | files = ( 138 | C2B2EFE325EFDAAD00405DD1 /* ViewController.swift in Sources */, 139 | C2B2EFF525EFDCE800405DD1 /* SidebarViewController.swift in Sources */, 140 | C2B2EFE125EFDAAD00405DD1 /* AppDelegate.swift in Sources */, 141 | ); 142 | runOnlyForDeploymentPostprocessing = 0; 143 | }; 144 | /* End PBXSourcesBuildPhase section */ 145 | 146 | /* Begin PBXVariantGroup section */ 147 | C2B2EFE625EFDAAF00405DD1 /* Main.storyboard */ = { 148 | isa = PBXVariantGroup; 149 | children = ( 150 | C2B2EFE725EFDAAF00405DD1 /* Base */, 151 | ); 152 | name = Main.storyboard; 153 | sourceTree = ""; 154 | }; 155 | /* End PBXVariantGroup section */ 156 | 157 | /* Begin XCBuildConfiguration section */ 158 | C2B2EFEB25EFDAAF00405DD1 /* Debug */ = { 159 | isa = XCBuildConfiguration; 160 | buildSettings = { 161 | ALWAYS_SEARCH_USER_PATHS = NO; 162 | CLANG_ANALYZER_NONNULL = YES; 163 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 164 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 165 | CLANG_CXX_LIBRARY = "libc++"; 166 | CLANG_ENABLE_MODULES = YES; 167 | CLANG_ENABLE_OBJC_ARC = YES; 168 | CLANG_ENABLE_OBJC_WEAK = YES; 169 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 170 | CLANG_WARN_BOOL_CONVERSION = YES; 171 | CLANG_WARN_COMMA = YES; 172 | CLANG_WARN_CONSTANT_CONVERSION = YES; 173 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 174 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 175 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 176 | CLANG_WARN_EMPTY_BODY = YES; 177 | CLANG_WARN_ENUM_CONVERSION = YES; 178 | CLANG_WARN_INFINITE_RECURSION = YES; 179 | CLANG_WARN_INT_CONVERSION = YES; 180 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 181 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 182 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 183 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 184 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 185 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 186 | CLANG_WARN_STRICT_PROTOTYPES = YES; 187 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 188 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 189 | CLANG_WARN_UNREACHABLE_CODE = YES; 190 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 191 | COPY_PHASE_STRIP = NO; 192 | DEBUG_INFORMATION_FORMAT = dwarf; 193 | ENABLE_STRICT_OBJC_MSGSEND = YES; 194 | ENABLE_TESTABILITY = YES; 195 | GCC_C_LANGUAGE_STANDARD = gnu11; 196 | GCC_DYNAMIC_NO_PIC = NO; 197 | GCC_NO_COMMON_BLOCKS = YES; 198 | GCC_OPTIMIZATION_LEVEL = 0; 199 | GCC_PREPROCESSOR_DEFINITIONS = ( 200 | "DEBUG=1", 201 | "$(inherited)", 202 | ); 203 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 204 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 205 | GCC_WARN_UNDECLARED_SELECTOR = YES; 206 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 207 | GCC_WARN_UNUSED_FUNCTION = YES; 208 | GCC_WARN_UNUSED_VARIABLE = YES; 209 | MACOSX_DEPLOYMENT_TARGET = 11.1; 210 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 211 | MTL_FAST_MATH = YES; 212 | ONLY_ACTIVE_ARCH = YES; 213 | SDKROOT = macosx; 214 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 215 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 216 | }; 217 | name = Debug; 218 | }; 219 | C2B2EFEC25EFDAAF00405DD1 /* Release */ = { 220 | isa = XCBuildConfiguration; 221 | buildSettings = { 222 | ALWAYS_SEARCH_USER_PATHS = NO; 223 | CLANG_ANALYZER_NONNULL = YES; 224 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 225 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 226 | CLANG_CXX_LIBRARY = "libc++"; 227 | CLANG_ENABLE_MODULES = YES; 228 | CLANG_ENABLE_OBJC_ARC = YES; 229 | CLANG_ENABLE_OBJC_WEAK = YES; 230 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 231 | CLANG_WARN_BOOL_CONVERSION = YES; 232 | CLANG_WARN_COMMA = YES; 233 | CLANG_WARN_CONSTANT_CONVERSION = YES; 234 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 235 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 236 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 237 | CLANG_WARN_EMPTY_BODY = YES; 238 | CLANG_WARN_ENUM_CONVERSION = YES; 239 | CLANG_WARN_INFINITE_RECURSION = YES; 240 | CLANG_WARN_INT_CONVERSION = YES; 241 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 242 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 243 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 244 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 245 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 246 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 247 | CLANG_WARN_STRICT_PROTOTYPES = YES; 248 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 249 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 250 | CLANG_WARN_UNREACHABLE_CODE = YES; 251 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 252 | COPY_PHASE_STRIP = NO; 253 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 254 | ENABLE_NS_ASSERTIONS = NO; 255 | ENABLE_STRICT_OBJC_MSGSEND = YES; 256 | GCC_C_LANGUAGE_STANDARD = gnu11; 257 | GCC_NO_COMMON_BLOCKS = YES; 258 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 259 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 260 | GCC_WARN_UNDECLARED_SELECTOR = YES; 261 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 262 | GCC_WARN_UNUSED_FUNCTION = YES; 263 | GCC_WARN_UNUSED_VARIABLE = YES; 264 | MACOSX_DEPLOYMENT_TARGET = 11.1; 265 | MTL_ENABLE_DEBUG_INFO = NO; 266 | MTL_FAST_MATH = YES; 267 | SDKROOT = macosx; 268 | SWIFT_COMPILATION_MODE = wholemodule; 269 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 270 | }; 271 | name = Release; 272 | }; 273 | C2B2EFEE25EFDAAF00405DD1 /* Debug */ = { 274 | isa = XCBuildConfiguration; 275 | buildSettings = { 276 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 277 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 278 | CODE_SIGN_ENTITLEMENTS = SimpleSidebar/SimpleSidebar.entitlements; 279 | CODE_SIGN_STYLE = Automatic; 280 | COMBINE_HIDPI_IMAGES = YES; 281 | DEVELOPMENT_TEAM = 85N3S3DG8M; 282 | ENABLE_HARDENED_RUNTIME = YES; 283 | INFOPLIST_FILE = SimpleSidebar/Info.plist; 284 | LD_RUNPATH_SEARCH_PATHS = ( 285 | "$(inherited)", 286 | "@executable_path/../Frameworks", 287 | ); 288 | MACOSX_DEPLOYMENT_TARGET = 10.10; 289 | MARKETING_VERSION = 0.0.1; 290 | PRODUCT_BUNDLE_IDENTIFIER = ca.justinbush.SimpleSidebar; 291 | PRODUCT_NAME = "$(TARGET_NAME)"; 292 | SWIFT_VERSION = 5.0; 293 | }; 294 | name = Debug; 295 | }; 296 | C2B2EFEF25EFDAAF00405DD1 /* Release */ = { 297 | isa = XCBuildConfiguration; 298 | buildSettings = { 299 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 300 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 301 | CODE_SIGN_ENTITLEMENTS = SimpleSidebar/SimpleSidebar.entitlements; 302 | CODE_SIGN_STYLE = Automatic; 303 | COMBINE_HIDPI_IMAGES = YES; 304 | DEVELOPMENT_TEAM = 85N3S3DG8M; 305 | ENABLE_HARDENED_RUNTIME = YES; 306 | INFOPLIST_FILE = SimpleSidebar/Info.plist; 307 | LD_RUNPATH_SEARCH_PATHS = ( 308 | "$(inherited)", 309 | "@executable_path/../Frameworks", 310 | ); 311 | MACOSX_DEPLOYMENT_TARGET = 10.10; 312 | MARKETING_VERSION = 0.0.1; 313 | PRODUCT_BUNDLE_IDENTIFIER = ca.justinbush.SimpleSidebar; 314 | PRODUCT_NAME = "$(TARGET_NAME)"; 315 | SWIFT_VERSION = 5.0; 316 | }; 317 | name = Release; 318 | }; 319 | /* End XCBuildConfiguration section */ 320 | 321 | /* Begin XCConfigurationList section */ 322 | C2B2EFD825EFDAAD00405DD1 /* Build configuration list for PBXProject "SimpleSidebar" */ = { 323 | isa = XCConfigurationList; 324 | buildConfigurations = ( 325 | C2B2EFEB25EFDAAF00405DD1 /* Debug */, 326 | C2B2EFEC25EFDAAF00405DD1 /* Release */, 327 | ); 328 | defaultConfigurationIsVisible = 0; 329 | defaultConfigurationName = Release; 330 | }; 331 | C2B2EFED25EFDAAF00405DD1 /* Build configuration list for PBXNativeTarget "SimpleSidebar" */ = { 332 | isa = XCConfigurationList; 333 | buildConfigurations = ( 334 | C2B2EFEE25EFDAAF00405DD1 /* Debug */, 335 | C2B2EFEF25EFDAAF00405DD1 /* Release */, 336 | ); 337 | defaultConfigurationIsVisible = 0; 338 | defaultConfigurationName = Release; 339 | }; 340 | /* End XCConfigurationList section */ 341 | }; 342 | rootObject = C2B2EFD525EFDAAD00405DD1 /* Project object */; 343 | } 344 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar.xcodeproj/project.xcworkspace/xcuserdata/justinbush.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar.xcodeproj/project.xcworkspace/xcuserdata/justinbush.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar.xcodeproj/xcuserdata/justinbush.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | SimpleSidebar.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // SimpleSidebar 4 | // 5 | // Created by Justin Bush on 2021-03-03. 6 | // 7 | 8 | import Cocoa 9 | 10 | @main 11 | class AppDelegate: NSObject, NSApplicationDelegate { 12 | 13 | 14 | 15 | 16 | func applicationDidFinishLaunching(_ aNotification: Notification) { 17 | // Insert code here to initialize your application 18 | } 19 | 20 | func applicationWillTerminate(_ aNotification: Notification) { 21 | // Insert code here to tear down your application 22 | } 23 | 24 | 25 | } 26 | 27 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "mac", 5 | "scale" : "1x", 6 | "size" : "16x16" 7 | }, 8 | { 9 | "idiom" : "mac", 10 | "scale" : "2x", 11 | "size" : "16x16" 12 | }, 13 | { 14 | "idiom" : "mac", 15 | "scale" : "1x", 16 | "size" : "32x32" 17 | }, 18 | { 19 | "idiom" : "mac", 20 | "scale" : "2x", 21 | "size" : "32x32" 22 | }, 23 | { 24 | "idiom" : "mac", 25 | "scale" : "1x", 26 | "size" : "128x128" 27 | }, 28 | { 29 | "idiom" : "mac", 30 | "scale" : "2x", 31 | "size" : "128x128" 32 | }, 33 | { 34 | "idiom" : "mac", 35 | "scale" : "1x", 36 | "size" : "256x256" 37 | }, 38 | { 39 | "idiom" : "mac", 40 | "scale" : "2x", 41 | "size" : "256x256" 42 | }, 43 | { 44 | "idiom" : "mac", 45 | "scale" : "1x", 46 | "size" : "512x512" 47 | }, 48 | { 49 | "idiom" : "mac", 50 | "scale" : "2x", 51 | "size" : "512x512" 52 | } 53 | ], 54 | "info" : { 55 | "author" : "xcode", 56 | "version" : 1 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon-MacOS-256x256@2x.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Icon.imageset/Icon-MacOS-256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Icon.imageset/Icon-MacOS-256x256@2x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Domains.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Domains@3x.png", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Domains@3x-1.png", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Domains.imageset/Domains@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Domains.imageset/Domains@3x-1.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Domains.imageset/Domains@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Domains.imageset/Domains@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Home.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Home@3x.png", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Home@3x-1.png", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Home.imageset/Home@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Home.imageset/Home@3x-1.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Home.imageset/Home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Home.imageset/Home@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Logout.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Logout@3x.png", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Logout@3x-1.png", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Logout.imageset/Logout@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Logout.imageset/Logout@3x-1.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Logout.imageset/Logout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Logout.imageset/Logout@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/MyAccount.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "My Account@3x-1.png", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "My Account@3x.png", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/MyAccount.imageset/My Account@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/MyAccount.imageset/My Account@3x-1.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/MyAccount.imageset/My Account@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/MyAccount.imageset/My Account@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Notifications.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Notifications@3x.png", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Notifications@3x-1.png", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Notifications.imageset/Notifications@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Notifications.imageset/Notifications@3x-1.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Notifications.imageset/Notifications@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Notifications.imageset/Notifications@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Settings.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Settings@3x.png", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Settings@3x-1.png", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Settings.imageset/Settings@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Settings.imageset/Settings@3x-1.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Settings.imageset/Settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Settings.imageset/Settings@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Templates.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Templates@3x.png", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Templates@3x-1.png", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Templates.imageset/Templates@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Templates.imageset/Templates@3x-1.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Templates.imageset/Templates@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Templates.imageset/Templates@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Websites.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Websites@3x.png", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Websites@3x-1.png", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Websites.imageset/Websites@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Websites.imageset/Websites@3x-1.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Websites.imageset/Websites@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Websites.imageset/Websites@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Welcome.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Welcome@3x.png", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Welcome@3x-1.png", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Welcome.imageset/Welcome@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Welcome.imageset/Welcome@3x-1.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Welcome.imageset/Welcome@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Items/Welcome.imageset/Welcome@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Domains-Selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Domains@3x.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Domains-Selected.imageset/Domains@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Domains-Selected.imageset/Domains@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Home-Selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Home@3x.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Home-Selected.imageset/Home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Home-Selected.imageset/Home@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/MyAccount-Selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "My Account@3x.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/MyAccount-Selected.imageset/My Account@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/MyAccount-Selected.imageset/My Account@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Notifications-Selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Notifications@3x.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Notifications-Selected.imageset/Notifications@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Notifications-Selected.imageset/Notifications@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Settings-Selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Settings@3x.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Settings-Selected.imageset/Settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Settings-Selected.imageset/Settings@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Templates-Selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Templates@3x.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Templates-Selected.imageset/Templates@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Templates-Selected.imageset/Templates@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Websites-Selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Websites@3x.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Websites-Selected.imageset/Websites@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Websites-Selected.imageset/Websites@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Welcome-Selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Welcome@3x.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Welcome-Selected.imageset/Welcome@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Cocoa/SimpleSidebar/Assets.xcassets/Sidebar/Selected/Welcome-Selected.imageset/Welcome@3x.png -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 19 | CFBundleShortVersionString 20 | $(MARKETING_VERSION) 21 | CFBundleVersion 22 | 1 23 | LSApplicationCategoryType 24 | public.app-category.developer-tools 25 | LSMinimumSystemVersion 26 | $(MACOSX_DEPLOYMENT_TARGET) 27 | NSMainStoryboardFile 28 | Main 29 | NSPrincipalClass 30 | NSApplication 31 | 32 | 33 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/SidebarViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SidebarViewController.swift 3 | // SimpleSidebar 4 | // 5 | // Created by Justin Bush on 2021-03-03. 6 | // 7 | 8 | import Cocoa 9 | 10 | class SidebarViewController: NSViewController { 11 | 12 | @IBOutlet var welcomeButton: NSButton! 13 | @IBOutlet var homeButton: NSButton! 14 | @IBOutlet var websitesButton: NSButton! 15 | @IBOutlet var domainsButton: NSButton! 16 | @IBOutlet var templatesButton: NSButton! 17 | @IBOutlet var myAccountButton: NSButton! 18 | @IBOutlet var notificationsButton: NSButton! 19 | @IBOutlet var settingsButton: NSButton! 20 | @IBOutlet var logoutButton: NSButton! 21 | 22 | override func viewDidLoad() { 23 | super.viewDidLoad() 24 | // Set default selected menu item 25 | onclickMenuItem(.welcome) 26 | } 27 | 28 | /// Reset all sidebar items to their non-selected state. 29 | func resetAll() { 30 | welcomeButton.image = NSImage(named: .menuWelcome) 31 | homeButton.image = NSImage(named: .menuHome) 32 | websitesButton.image = NSImage(named: .menuWebsites) 33 | domainsButton.image = NSImage(named: .menuDomains) 34 | templatesButton.image = NSImage(named: .menuTemplates) 35 | myAccountButton.image = NSImage(named: .menuMyAccount) 36 | notificationsButton.image = NSImage(named: .menuNotifications) 37 | settingsButton.image = NSImage(named: .menuSettings) 38 | logoutButton.image = NSImage(named: .menuLogout) 39 | } 40 | 41 | // MARK: Item On-Click 42 | /// Called when a sidebar item is clicked. Sets the item to a selected state. 43 | func onclickMenuItem(_ item: SidebarMenu) { 44 | switch item { 45 | case .welcome: welcomeButton.image = NSImage(named: .menuWelcomeSelected) 46 | case .home: homeButton.image = NSImage(named: .menuHomeSelected) 47 | case .websites: websitesButton.image = NSImage(named: .menuWebsitesSelected) 48 | case .domains: domainsButton.image = NSImage(named: .menuDomainsSelected) 49 | case .templates: templatesButton.image = NSImage(named: .menuTemplatesSelected) 50 | case .myAccount: myAccountButton.image = NSImage(named: .menuMyAccountSelected) 51 | case .notifications: notificationsButton.image = NSImage(named: .menuNotificationsSelected) 52 | case .settings: settingsButton.image = NSImage(named: .menuSettingsSelected) 53 | case .logout: print("Logout") 54 | } 55 | } 56 | 57 | // MARK: Sidebar Actions 58 | @IBAction func setWelcomeMenu(_ sender: NSButton) { resetAll(); onclickMenuItem(.welcome) } 59 | @IBAction func setHomeMenu(_ sender: NSButton) { resetAll(); onclickMenuItem(.home) } 60 | @IBAction func setWebsitesMenu(_ sender: NSButton) { resetAll(); onclickMenuItem(.websites) } 61 | @IBAction func setDomainsMenu(_ sender: NSButton) { resetAll(); onclickMenuItem(.domains) } 62 | @IBAction func setTemplatesMenu(_ sender: NSButton) { resetAll(); onclickMenuItem(.templates) } 63 | @IBAction func setMyAccountMenu(_ sender: NSButton) { resetAll(); onclickMenuItem(.myAccount) } 64 | @IBAction func setNotificationsMenu(_ sender: NSButton) { resetAll(); onclickMenuItem(.notifications) } 65 | @IBAction func setSettingsMenu(_ sender: NSButton) { resetAll(); onclickMenuItem(.settings) } 66 | @IBAction func setLogoutMenu(_ sender: NSButton) { resetAll(); onclickMenuItem(.logout) } 67 | 68 | } 69 | 70 | 71 | // MARK:- Sidebar Menu 72 | enum SidebarMenu { 73 | case welcome 74 | case home 75 | case websites 76 | case domains 77 | case templates 78 | case myAccount 79 | case notifications 80 | case settings 81 | case logout 82 | } 83 | 84 | 85 | 86 | // MARK:- Images 87 | extension NSImage.Name { 88 | static let menuWelcome = NSImage.Name("Welcome") 89 | static let menuHome = NSImage.Name("Home") 90 | static let menuWebsites = NSImage.Name("Websites") 91 | static let menuDomains = NSImage.Name("Domains") 92 | static let menuTemplates = NSImage.Name("Templates") 93 | static let menuMyAccount = NSImage.Name("MyAccount") 94 | static let menuNotifications = NSImage.Name("Notifications") 95 | static let menuSettings = NSImage.Name("Settings") 96 | static let menuLogout = NSImage.Name("Logout") 97 | static let menuWelcomeSelected = NSImage.Name("Welcome-Selected") 98 | static let menuHomeSelected = NSImage.Name("Home-Selected") 99 | static let menuWebsitesSelected = NSImage.Name("Websites-Selected") 100 | static let menuDomainsSelected = NSImage.Name("Domains-Selected") 101 | static let menuTemplatesSelected = NSImage.Name("Templates-Selected") 102 | static let menuMyAccountSelected = NSImage.Name("MyAccount-Selected") 103 | static let menuNotificationsSelected = NSImage.Name("Notifications-Selected") 104 | static let menuSettingsSelected = NSImage.Name("Settings-Selected") 105 | static let menuLogoutSelected = NSImage.Name("Logout-Selected") 106 | } 107 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/SimpleSidebar.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.files.user-selected.read-only 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Cocoa/SimpleSidebar/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // SimpleSidebar 4 | // 5 | // Created by Justin Bush on 2021-03-03. 6 | // 7 | 8 | import Cocoa 9 | 10 | class ViewController: NSViewController { 11 | 12 | @IBOutlet var sidebarConstraint: NSLayoutConstraint! 13 | 14 | override func viewDidLoad() { 15 | super.viewDidLoad() 16 | // Do any additional setup after loading the view. 17 | } 18 | 19 | var sidebarIsHidden = false 20 | @IBAction func toggleSidebar(_ sender: NSButton) { 21 | NSAnimationContext.runAnimationGroup({ context in 22 | context.duration = 0.5 23 | context.allowsImplicitAnimation = true 24 | if sidebarIsHidden { 25 | self.sidebarConstraint.constant = 0 26 | sidebarIsHidden = false 27 | } else { 28 | self.sidebarConstraint.constant = -190 29 | sidebarIsHidden = true 30 | } 31 | self.view.layoutSubtreeIfNeeded() 32 | }, completionHandler: nil) 33 | } 34 | 35 | override var representedObject: Any? { 36 | didSet { 37 | // Update the view, if already loaded. 38 | } 39 | } 40 | 41 | 42 | } 43 | 44 | -------------------------------------------------------------------------------- /Design/Cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Design/Cover.jpg -------------------------------------------------------------------------------- /Design/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Design/Demo.gif -------------------------------------------------------------------------------- /Design/GuidelineComparison.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Design/GuidelineComparison.jpg -------------------------------------------------------------------------------- /Design/Header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Design/Header.jpg -------------------------------------------------------------------------------- /Design/Mockup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Design/Mockup.jpg -------------------------------------------------------------------------------- /Design/Sidebar.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Design/Sidebar.xd -------------------------------------------------------------------------------- /Design/Variants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Design/Variants.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Justin Bush 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | C201389A25F11ABF000060CC /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C201389925F11ABF000060CC /* AppDelegate.swift */; }; 11 | C201389C25F11ABF000060CC /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C201389B25F11ABF000060CC /* ViewController.swift */; }; 12 | C201389E25F11AC0000060CC /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C201389D25F11AC0000060CC /* Assets.xcassets */; }; 13 | C20138A125F11AC0000060CC /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C201389F25F11AC0000060CC /* Main.storyboard */; }; 14 | C20138AC25F11C61000060CC /* SidebarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C20138AB25F11C61000060CC /* SidebarViewController.swift */; }; 15 | C20138B325F13A43000060CC /* SidebarMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = C20138B225F13A43000060CC /* SidebarMenu.swift */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXFileReference section */ 19 | C201389625F11ABF000060CC /* SimpleSidebar.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SimpleSidebar.app; sourceTree = BUILT_PRODUCTS_DIR; }; 20 | C201389925F11ABF000060CC /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 21 | C201389B25F11ABF000060CC /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 22 | C201389D25F11AC0000060CC /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 23 | C20138A025F11AC0000060CC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 24 | C20138A225F11AC0000060CC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 25 | C20138A325F11AC0000060CC /* SimpleSidebar.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = SimpleSidebar.entitlements; sourceTree = ""; }; 26 | C20138AB25F11C61000060CC /* SidebarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SidebarViewController.swift; sourceTree = ""; }; 27 | C20138B225F13A43000060CC /* SidebarMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SidebarMenu.swift; sourceTree = ""; }; 28 | /* End PBXFileReference section */ 29 | 30 | /* Begin PBXFrameworksBuildPhase section */ 31 | C201389325F11ABF000060CC /* Frameworks */ = { 32 | isa = PBXFrameworksBuildPhase; 33 | buildActionMask = 2147483647; 34 | files = ( 35 | ); 36 | runOnlyForDeploymentPostprocessing = 0; 37 | }; 38 | /* End PBXFrameworksBuildPhase section */ 39 | 40 | /* Begin PBXGroup section */ 41 | C201388D25F11ABF000060CC = { 42 | isa = PBXGroup; 43 | children = ( 44 | C201389825F11ABF000060CC /* SimpleSidebar */, 45 | C201389725F11ABF000060CC /* Products */, 46 | ); 47 | sourceTree = ""; 48 | }; 49 | C201389725F11ABF000060CC /* Products */ = { 50 | isa = PBXGroup; 51 | children = ( 52 | C201389625F11ABF000060CC /* SimpleSidebar.app */, 53 | ); 54 | name = Products; 55 | sourceTree = ""; 56 | }; 57 | C201389825F11ABF000060CC /* SimpleSidebar */ = { 58 | isa = PBXGroup; 59 | children = ( 60 | C201389925F11ABF000060CC /* AppDelegate.swift */, 61 | C201389B25F11ABF000060CC /* ViewController.swift */, 62 | C20138B125F13A32000060CC /* Sidebar */, 63 | C201389D25F11AC0000060CC /* Assets.xcassets */, 64 | C201389F25F11AC0000060CC /* Main.storyboard */, 65 | C20138A225F11AC0000060CC /* Info.plist */, 66 | C20138A325F11AC0000060CC /* SimpleSidebar.entitlements */, 67 | ); 68 | path = SimpleSidebar; 69 | sourceTree = ""; 70 | }; 71 | C20138B125F13A32000060CC /* Sidebar */ = { 72 | isa = PBXGroup; 73 | children = ( 74 | C20138B225F13A43000060CC /* SidebarMenu.swift */, 75 | C20138AB25F11C61000060CC /* SidebarViewController.swift */, 76 | ); 77 | path = Sidebar; 78 | sourceTree = ""; 79 | }; 80 | /* End PBXGroup section */ 81 | 82 | /* Begin PBXNativeTarget section */ 83 | C201389525F11ABF000060CC /* SimpleSidebar */ = { 84 | isa = PBXNativeTarget; 85 | buildConfigurationList = C20138A625F11AC0000060CC /* Build configuration list for PBXNativeTarget "SimpleSidebar" */; 86 | buildPhases = ( 87 | C201389225F11ABF000060CC /* Sources */, 88 | C201389325F11ABF000060CC /* Frameworks */, 89 | C201389425F11ABF000060CC /* Resources */, 90 | ); 91 | buildRules = ( 92 | ); 93 | dependencies = ( 94 | ); 95 | name = SimpleSidebar; 96 | productName = SimpleSidebar; 97 | productReference = C201389625F11ABF000060CC /* SimpleSidebar.app */; 98 | productType = "com.apple.product-type.application"; 99 | }; 100 | /* End PBXNativeTarget section */ 101 | 102 | /* Begin PBXProject section */ 103 | C201388E25F11ABF000060CC /* Project object */ = { 104 | isa = PBXProject; 105 | attributes = { 106 | LastSwiftUpdateCheck = 1240; 107 | LastUpgradeCheck = 1240; 108 | TargetAttributes = { 109 | C201389525F11ABF000060CC = { 110 | CreatedOnToolsVersion = 12.4; 111 | }; 112 | }; 113 | }; 114 | buildConfigurationList = C201389125F11ABF000060CC /* Build configuration list for PBXProject "SimpleSidebar" */; 115 | compatibilityVersion = "Xcode 9.3"; 116 | developmentRegion = en; 117 | hasScannedForEncodings = 0; 118 | knownRegions = ( 119 | en, 120 | Base, 121 | ); 122 | mainGroup = C201388D25F11ABF000060CC; 123 | productRefGroup = C201389725F11ABF000060CC /* Products */; 124 | projectDirPath = ""; 125 | projectRoot = ""; 126 | targets = ( 127 | C201389525F11ABF000060CC /* SimpleSidebar */, 128 | ); 129 | }; 130 | /* End PBXProject section */ 131 | 132 | /* Begin PBXResourcesBuildPhase section */ 133 | C201389425F11ABF000060CC /* Resources */ = { 134 | isa = PBXResourcesBuildPhase; 135 | buildActionMask = 2147483647; 136 | files = ( 137 | C201389E25F11AC0000060CC /* Assets.xcassets in Resources */, 138 | C20138A125F11AC0000060CC /* Main.storyboard in Resources */, 139 | ); 140 | runOnlyForDeploymentPostprocessing = 0; 141 | }; 142 | /* End PBXResourcesBuildPhase section */ 143 | 144 | /* Begin PBXSourcesBuildPhase section */ 145 | C201389225F11ABF000060CC /* Sources */ = { 146 | isa = PBXSourcesBuildPhase; 147 | buildActionMask = 2147483647; 148 | files = ( 149 | C201389C25F11ABF000060CC /* ViewController.swift in Sources */, 150 | C20138AC25F11C61000060CC /* SidebarViewController.swift in Sources */, 151 | C201389A25F11ABF000060CC /* AppDelegate.swift in Sources */, 152 | C20138B325F13A43000060CC /* SidebarMenu.swift in Sources */, 153 | ); 154 | runOnlyForDeploymentPostprocessing = 0; 155 | }; 156 | /* End PBXSourcesBuildPhase section */ 157 | 158 | /* Begin PBXVariantGroup section */ 159 | C201389F25F11AC0000060CC /* Main.storyboard */ = { 160 | isa = PBXVariantGroup; 161 | children = ( 162 | C20138A025F11AC0000060CC /* Base */, 163 | ); 164 | name = Main.storyboard; 165 | sourceTree = ""; 166 | }; 167 | /* End PBXVariantGroup section */ 168 | 169 | /* Begin XCBuildConfiguration section */ 170 | C20138A425F11AC0000060CC /* Debug */ = { 171 | isa = XCBuildConfiguration; 172 | buildSettings = { 173 | ALWAYS_SEARCH_USER_PATHS = NO; 174 | CLANG_ANALYZER_NONNULL = YES; 175 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 176 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 177 | CLANG_CXX_LIBRARY = "libc++"; 178 | CLANG_ENABLE_MODULES = YES; 179 | CLANG_ENABLE_OBJC_ARC = YES; 180 | CLANG_ENABLE_OBJC_WEAK = YES; 181 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 182 | CLANG_WARN_BOOL_CONVERSION = YES; 183 | CLANG_WARN_COMMA = YES; 184 | CLANG_WARN_CONSTANT_CONVERSION = YES; 185 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 186 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 187 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 188 | CLANG_WARN_EMPTY_BODY = YES; 189 | CLANG_WARN_ENUM_CONVERSION = YES; 190 | CLANG_WARN_INFINITE_RECURSION = YES; 191 | CLANG_WARN_INT_CONVERSION = YES; 192 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 193 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 194 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 195 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 196 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 197 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 198 | CLANG_WARN_STRICT_PROTOTYPES = YES; 199 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 200 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 201 | CLANG_WARN_UNREACHABLE_CODE = YES; 202 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 203 | COPY_PHASE_STRIP = NO; 204 | DEBUG_INFORMATION_FORMAT = dwarf; 205 | ENABLE_STRICT_OBJC_MSGSEND = YES; 206 | ENABLE_TESTABILITY = YES; 207 | GCC_C_LANGUAGE_STANDARD = gnu11; 208 | GCC_DYNAMIC_NO_PIC = NO; 209 | GCC_NO_COMMON_BLOCKS = YES; 210 | GCC_OPTIMIZATION_LEVEL = 0; 211 | GCC_PREPROCESSOR_DEFINITIONS = ( 212 | "DEBUG=1", 213 | "$(inherited)", 214 | ); 215 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 216 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 217 | GCC_WARN_UNDECLARED_SELECTOR = YES; 218 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 219 | GCC_WARN_UNUSED_FUNCTION = YES; 220 | GCC_WARN_UNUSED_VARIABLE = YES; 221 | MACOSX_DEPLOYMENT_TARGET = 11.1; 222 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 223 | MTL_FAST_MATH = YES; 224 | ONLY_ACTIVE_ARCH = YES; 225 | SDKROOT = macosx; 226 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 227 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 228 | }; 229 | name = Debug; 230 | }; 231 | C20138A525F11AC0000060CC /* Release */ = { 232 | isa = XCBuildConfiguration; 233 | buildSettings = { 234 | ALWAYS_SEARCH_USER_PATHS = NO; 235 | CLANG_ANALYZER_NONNULL = YES; 236 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 237 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 238 | CLANG_CXX_LIBRARY = "libc++"; 239 | CLANG_ENABLE_MODULES = YES; 240 | CLANG_ENABLE_OBJC_ARC = YES; 241 | CLANG_ENABLE_OBJC_WEAK = YES; 242 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 243 | CLANG_WARN_BOOL_CONVERSION = YES; 244 | CLANG_WARN_COMMA = YES; 245 | CLANG_WARN_CONSTANT_CONVERSION = YES; 246 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 247 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 248 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 249 | CLANG_WARN_EMPTY_BODY = YES; 250 | CLANG_WARN_ENUM_CONVERSION = YES; 251 | CLANG_WARN_INFINITE_RECURSION = YES; 252 | CLANG_WARN_INT_CONVERSION = YES; 253 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 254 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 255 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 256 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 257 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 258 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 259 | CLANG_WARN_STRICT_PROTOTYPES = YES; 260 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 261 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 262 | CLANG_WARN_UNREACHABLE_CODE = YES; 263 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 264 | COPY_PHASE_STRIP = NO; 265 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 266 | ENABLE_NS_ASSERTIONS = NO; 267 | ENABLE_STRICT_OBJC_MSGSEND = YES; 268 | GCC_C_LANGUAGE_STANDARD = gnu11; 269 | GCC_NO_COMMON_BLOCKS = YES; 270 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 271 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 272 | GCC_WARN_UNDECLARED_SELECTOR = YES; 273 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 274 | GCC_WARN_UNUSED_FUNCTION = YES; 275 | GCC_WARN_UNUSED_VARIABLE = YES; 276 | MACOSX_DEPLOYMENT_TARGET = 11.1; 277 | MTL_ENABLE_DEBUG_INFO = NO; 278 | MTL_FAST_MATH = YES; 279 | SDKROOT = macosx; 280 | SWIFT_COMPILATION_MODE = wholemodule; 281 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 282 | }; 283 | name = Release; 284 | }; 285 | C20138A725F11AC0000060CC /* Debug */ = { 286 | isa = XCBuildConfiguration; 287 | buildSettings = { 288 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 289 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 290 | CODE_SIGN_ENTITLEMENTS = SimpleSidebar/SimpleSidebar.entitlements; 291 | CODE_SIGN_STYLE = Automatic; 292 | COMBINE_HIDPI_IMAGES = YES; 293 | DEVELOPMENT_TEAM = 85N3S3DG8M; 294 | ENABLE_HARDENED_RUNTIME = YES; 295 | INFOPLIST_FILE = SimpleSidebar/Info.plist; 296 | LD_RUNPATH_SEARCH_PATHS = ( 297 | "$(inherited)", 298 | "@executable_path/../Frameworks", 299 | ); 300 | MACOSX_DEPLOYMENT_TARGET = 10.11; 301 | MARKETING_VERSION = 0.0.1; 302 | PRODUCT_BUNDLE_IDENTIFIER = ca.justinbush.SimpleSidebar; 303 | PRODUCT_NAME = "$(TARGET_NAME)"; 304 | SWIFT_VERSION = 5.0; 305 | }; 306 | name = Debug; 307 | }; 308 | C20138A825F11AC0000060CC /* Release */ = { 309 | isa = XCBuildConfiguration; 310 | buildSettings = { 311 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 312 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 313 | CODE_SIGN_ENTITLEMENTS = SimpleSidebar/SimpleSidebar.entitlements; 314 | CODE_SIGN_STYLE = Automatic; 315 | COMBINE_HIDPI_IMAGES = YES; 316 | DEVELOPMENT_TEAM = 85N3S3DG8M; 317 | ENABLE_HARDENED_RUNTIME = YES; 318 | INFOPLIST_FILE = SimpleSidebar/Info.plist; 319 | LD_RUNPATH_SEARCH_PATHS = ( 320 | "$(inherited)", 321 | "@executable_path/../Frameworks", 322 | ); 323 | MACOSX_DEPLOYMENT_TARGET = 10.11; 324 | MARKETING_VERSION = 0.0.1; 325 | PRODUCT_BUNDLE_IDENTIFIER = ca.justinbush.SimpleSidebar; 326 | PRODUCT_NAME = "$(TARGET_NAME)"; 327 | SWIFT_VERSION = 5.0; 328 | }; 329 | name = Release; 330 | }; 331 | /* End XCBuildConfiguration section */ 332 | 333 | /* Begin XCConfigurationList section */ 334 | C201389125F11ABF000060CC /* Build configuration list for PBXProject "SimpleSidebar" */ = { 335 | isa = XCConfigurationList; 336 | buildConfigurations = ( 337 | C20138A425F11AC0000060CC /* Debug */, 338 | C20138A525F11AC0000060CC /* Release */, 339 | ); 340 | defaultConfigurationIsVisible = 0; 341 | defaultConfigurationName = Release; 342 | }; 343 | C20138A625F11AC0000060CC /* Build configuration list for PBXNativeTarget "SimpleSidebar" */ = { 344 | isa = XCConfigurationList; 345 | buildConfigurations = ( 346 | C20138A725F11AC0000060CC /* Debug */, 347 | C20138A825F11AC0000060CC /* Release */, 348 | ); 349 | defaultConfigurationIsVisible = 0; 350 | defaultConfigurationName = Release; 351 | }; 352 | /* End XCConfigurationList section */ 353 | }; 354 | rootObject = C201388E25F11ABF000060CC /* Project object */; 355 | } 356 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar.xcodeproj/project.xcworkspace/xcuserdata/justinbush.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar.xcodeproj/project.xcworkspace/xcuserdata/justinbush.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar.xcodeproj/xcuserdata/justinbush.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | SimpleSidebar.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // SimpleSidebar 4 | // 5 | // Created by Justin Bush on 2021-03-04. 6 | // 7 | 8 | import Cocoa 9 | 10 | @main 11 | class AppDelegate: NSObject, NSApplicationDelegate { 12 | 13 | func applicationDidFinishLaunching(_ aNotification: Notification) { 14 | // Insert code here to initialize your application 15 | } 16 | 17 | func applicationWillTerminate(_ aNotification: Notification) { 18 | // Insert code here to tear down your application 19 | } 20 | 21 | 22 | } 23 | 24 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "mac", 5 | "scale" : "1x", 6 | "size" : "16x16" 7 | }, 8 | { 9 | "idiom" : "mac", 10 | "scale" : "2x", 11 | "size" : "16x16" 12 | }, 13 | { 14 | "idiom" : "mac", 15 | "scale" : "1x", 16 | "size" : "32x32" 17 | }, 18 | { 19 | "idiom" : "mac", 20 | "scale" : "2x", 21 | "size" : "32x32" 22 | }, 23 | { 24 | "idiom" : "mac", 25 | "scale" : "1x", 26 | "size" : "128x128" 27 | }, 28 | { 29 | "idiom" : "mac", 30 | "scale" : "2x", 31 | "size" : "128x128" 32 | }, 33 | { 34 | "idiom" : "mac", 35 | "scale" : "1x", 36 | "size" : "256x256" 37 | }, 38 | { 39 | "idiom" : "mac", 40 | "scale" : "2x", 41 | "size" : "256x256" 42 | }, 43 | { 44 | "idiom" : "mac", 45 | "scale" : "1x", 46 | "size" : "512x512" 47 | }, 48 | { 49 | "idiom" : "mac", 50 | "scale" : "2x", 51 | "size" : "512x512" 52 | } 53 | ], 54 | "info" : { 55 | "author" : "xcode", 56 | "version" : 1 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Arcade-Blue.imageset/Arcade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Arcade-Blue.imageset/Arcade.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Arcade-Blue.imageset/Arcade@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Arcade-Blue.imageset/Arcade@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Arcade-Blue.imageset/Arcade@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Arcade-Blue.imageset/Arcade@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Arcade-Blue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Arcade.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Arcade@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Arcade@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Categories-Blue.imageset/Categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Categories-Blue.imageset/Categories.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Categories-Blue.imageset/Categories@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Categories-Blue.imageset/Categories@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Categories-Blue.imageset/Categories@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Categories-Blue.imageset/Categories@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Categories-Blue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Categories.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Categories@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Categories@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Create-Blue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Create.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Create@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Create@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Create-Blue.imageset/Create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Create-Blue.imageset/Create.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Create-Blue.imageset/Create@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Create-Blue.imageset/Create@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Create-Blue.imageset/Create@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Create-Blue.imageset/Create@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Develop-Blue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Develop.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Develop@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Develop@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Develop-Blue.imageset/Develop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Develop-Blue.imageset/Develop.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Develop-Blue.imageset/Develop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Develop-Blue.imageset/Develop@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Develop-Blue.imageset/Develop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Develop-Blue.imageset/Develop@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Discover-Blue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Discover.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Discover@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Discover@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Discover-Blue.imageset/Discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Discover-Blue.imageset/Discover.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Discover-Blue.imageset/Discover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Discover-Blue.imageset/Discover@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Discover-Blue.imageset/Discover@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Discover-Blue.imageset/Discover@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Play-Blue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Play.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Play@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Play@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Play-Blue.imageset/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Play-Blue.imageset/Play.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Play-Blue.imageset/Play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Play-Blue.imageset/Play@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Play-Blue.imageset/Play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Play-Blue.imageset/Play@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Updates-Blue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Updates.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Updates@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Updates@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Updates-Blue.imageset/Updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Updates-Blue.imageset/Updates.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Updates-Blue.imageset/Updates@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Updates-Blue.imageset/Updates@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Updates-Blue.imageset/Updates@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Updates-Blue.imageset/Updates@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Work-Blue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Work.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Work@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Work@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Work-Blue.imageset/Work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Work-Blue.imageset/Work.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Work-Blue.imageset/Work@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Work-Blue.imageset/Work@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Work-Blue.imageset/Work@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons (Blue)/Work-Blue.imageset/Work@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade@2x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade@3x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Arcade@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Arcade.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Arcade.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "appearances" : [ 10 | { 11 | "appearance" : "luminosity", 12 | "value" : "dark" 13 | } 14 | ], 15 | "filename" : "Arcade-1.png", 16 | "idiom" : "universal", 17 | "scale" : "1x" 18 | }, 19 | { 20 | "filename" : "Arcade@2x.png", 21 | "idiom" : "universal", 22 | "scale" : "2x" 23 | }, 24 | { 25 | "appearances" : [ 26 | { 27 | "appearance" : "luminosity", 28 | "value" : "dark" 29 | } 30 | ], 31 | "filename" : "Arcade@2x-1.png", 32 | "idiom" : "universal", 33 | "scale" : "2x" 34 | }, 35 | { 36 | "filename" : "Arcade@3x.png", 37 | "idiom" : "universal", 38 | "scale" : "3x" 39 | }, 40 | { 41 | "appearances" : [ 42 | { 43 | "appearance" : "luminosity", 44 | "value" : "dark" 45 | } 46 | ], 47 | "filename" : "Arcade@3x-1.png", 48 | "idiom" : "universal", 49 | "scale" : "3x" 50 | } 51 | ], 52 | "info" : { 53 | "author" : "xcode", 54 | "version" : 1 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories@2x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories@3x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Categories@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Categories.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Categories.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "appearances" : [ 10 | { 11 | "appearance" : "luminosity", 12 | "value" : "dark" 13 | } 14 | ], 15 | "filename" : "Categories-1.png", 16 | "idiom" : "universal", 17 | "scale" : "1x" 18 | }, 19 | { 20 | "filename" : "Categories@2x.png", 21 | "idiom" : "universal", 22 | "scale" : "2x" 23 | }, 24 | { 25 | "appearances" : [ 26 | { 27 | "appearance" : "luminosity", 28 | "value" : "dark" 29 | } 30 | ], 31 | "filename" : "Categories@2x-1.png", 32 | "idiom" : "universal", 33 | "scale" : "2x" 34 | }, 35 | { 36 | "filename" : "Categories@3x.png", 37 | "idiom" : "universal", 38 | "scale" : "3x" 39 | }, 40 | { 41 | "appearances" : [ 42 | { 43 | "appearance" : "luminosity", 44 | "value" : "dark" 45 | } 46 | ], 47 | "filename" : "Categories@3x-1.png", 48 | "idiom" : "universal", 49 | "scale" : "3x" 50 | } 51 | ], 52 | "info" : { 53 | "author" : "xcode", 54 | "version" : 1 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Create.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "appearances" : [ 10 | { 11 | "appearance" : "luminosity", 12 | "value" : "dark" 13 | } 14 | ], 15 | "filename" : "Create-1.png", 16 | "idiom" : "universal", 17 | "scale" : "1x" 18 | }, 19 | { 20 | "filename" : "Create@2x.png", 21 | "idiom" : "universal", 22 | "scale" : "2x" 23 | }, 24 | { 25 | "appearances" : [ 26 | { 27 | "appearance" : "luminosity", 28 | "value" : "dark" 29 | } 30 | ], 31 | "filename" : "Create@2x-1.png", 32 | "idiom" : "universal", 33 | "scale" : "2x" 34 | }, 35 | { 36 | "filename" : "Create@3x.png", 37 | "idiom" : "universal", 38 | "scale" : "3x" 39 | }, 40 | { 41 | "appearances" : [ 42 | { 43 | "appearance" : "luminosity", 44 | "value" : "dark" 45 | } 46 | ], 47 | "filename" : "Create@3x-1.png", 48 | "idiom" : "universal", 49 | "scale" : "3x" 50 | } 51 | ], 52 | "info" : { 53 | "author" : "xcode", 54 | "version" : 1 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create@2x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create@3x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Create.imageset/Create@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Develop.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "appearances" : [ 10 | { 11 | "appearance" : "luminosity", 12 | "value" : "dark" 13 | } 14 | ], 15 | "filename" : "Develop-1.png", 16 | "idiom" : "universal", 17 | "scale" : "1x" 18 | }, 19 | { 20 | "filename" : "Develop@2x.png", 21 | "idiom" : "universal", 22 | "scale" : "2x" 23 | }, 24 | { 25 | "appearances" : [ 26 | { 27 | "appearance" : "luminosity", 28 | "value" : "dark" 29 | } 30 | ], 31 | "filename" : "Develop@2x-1.png", 32 | "idiom" : "universal", 33 | "scale" : "2x" 34 | }, 35 | { 36 | "filename" : "Develop@3x.png", 37 | "idiom" : "universal", 38 | "scale" : "3x" 39 | }, 40 | { 41 | "appearances" : [ 42 | { 43 | "appearance" : "luminosity", 44 | "value" : "dark" 45 | } 46 | ], 47 | "filename" : "Develop@3x-1.png", 48 | "idiom" : "universal", 49 | "scale" : "3x" 50 | } 51 | ], 52 | "info" : { 53 | "author" : "xcode", 54 | "version" : 1 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop@2x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop@3x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Develop.imageset/Develop@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Discover.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "appearances" : [ 10 | { 11 | "appearance" : "luminosity", 12 | "value" : "dark" 13 | } 14 | ], 15 | "filename" : "Discover-1.png", 16 | "idiom" : "universal", 17 | "scale" : "1x" 18 | }, 19 | { 20 | "filename" : "Discover@2x.png", 21 | "idiom" : "universal", 22 | "scale" : "2x" 23 | }, 24 | { 25 | "appearances" : [ 26 | { 27 | "appearance" : "luminosity", 28 | "value" : "dark" 29 | } 30 | ], 31 | "filename" : "Discover@2x-1.png", 32 | "idiom" : "universal", 33 | "scale" : "2x" 34 | }, 35 | { 36 | "filename" : "Discover@3x.png", 37 | "idiom" : "universal", 38 | "scale" : "3x" 39 | }, 40 | { 41 | "appearances" : [ 42 | { 43 | "appearance" : "luminosity", 44 | "value" : "dark" 45 | } 46 | ], 47 | "filename" : "Discover@3x-1.png", 48 | "idiom" : "universal", 49 | "scale" : "3x" 50 | } 51 | ], 52 | "info" : { 53 | "author" : "xcode", 54 | "version" : 1 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover@2x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover@3x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Discover.imageset/Discover@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Play.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "appearances" : [ 10 | { 11 | "appearance" : "luminosity", 12 | "value" : "dark" 13 | } 14 | ], 15 | "filename" : "Play-1.png", 16 | "idiom" : "universal", 17 | "scale" : "1x" 18 | }, 19 | { 20 | "filename" : "Play@2x.png", 21 | "idiom" : "universal", 22 | "scale" : "2x" 23 | }, 24 | { 25 | "appearances" : [ 26 | { 27 | "appearance" : "luminosity", 28 | "value" : "dark" 29 | } 30 | ], 31 | "filename" : "Play@2x-1.png", 32 | "idiom" : "universal", 33 | "scale" : "2x" 34 | }, 35 | { 36 | "filename" : "Play@3x.png", 37 | "idiom" : "universal", 38 | "scale" : "3x" 39 | }, 40 | { 41 | "appearances" : [ 42 | { 43 | "appearance" : "luminosity", 44 | "value" : "dark" 45 | } 46 | ], 47 | "filename" : "Play@3x-1.png", 48 | "idiom" : "universal", 49 | "scale" : "3x" 50 | } 51 | ], 52 | "info" : { 53 | "author" : "xcode", 54 | "version" : 1 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play@2x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play@3x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Play.imageset/Play@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Updates.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "appearances" : [ 10 | { 11 | "appearance" : "luminosity", 12 | "value" : "dark" 13 | } 14 | ], 15 | "filename" : "Updates-1.png", 16 | "idiom" : "universal", 17 | "scale" : "1x" 18 | }, 19 | { 20 | "filename" : "Updates@2x.png", 21 | "idiom" : "universal", 22 | "scale" : "2x" 23 | }, 24 | { 25 | "appearances" : [ 26 | { 27 | "appearance" : "luminosity", 28 | "value" : "dark" 29 | } 30 | ], 31 | "filename" : "Updates@2x-1.png", 32 | "idiom" : "universal", 33 | "scale" : "2x" 34 | }, 35 | { 36 | "filename" : "Updates@3x.png", 37 | "idiom" : "universal", 38 | "scale" : "3x" 39 | }, 40 | { 41 | "appearances" : [ 42 | { 43 | "appearance" : "luminosity", 44 | "value" : "dark" 45 | } 46 | ], 47 | "filename" : "Updates@3x-1.png", 48 | "idiom" : "universal", 49 | "scale" : "3x" 50 | } 51 | ], 52 | "info" : { 53 | "author" : "xcode", 54 | "version" : 1 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates@2x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates@3x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Updates.imageset/Updates@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Work.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "appearances" : [ 10 | { 11 | "appearance" : "luminosity", 12 | "value" : "dark" 13 | } 14 | ], 15 | "filename" : "Work-1.png", 16 | "idiom" : "universal", 17 | "scale" : "1x" 18 | }, 19 | { 20 | "filename" : "Work@2x.png", 21 | "idiom" : "universal", 22 | "scale" : "2x" 23 | }, 24 | { 25 | "appearances" : [ 26 | { 27 | "appearance" : "luminosity", 28 | "value" : "dark" 29 | } 30 | ], 31 | "filename" : "Work@2x-1.png", 32 | "idiom" : "universal", 33 | "scale" : "2x" 34 | }, 35 | { 36 | "filename" : "Work@3x.png", 37 | "idiom" : "universal", 38 | "scale" : "3x" 39 | }, 40 | { 41 | "appearances" : [ 42 | { 43 | "appearance" : "luminosity", 44 | "value" : "dark" 45 | } 46 | ], 47 | "filename" : "Work@3x-1.png", 48 | "idiom" : "universal", 49 | "scale" : "3x" 50 | } 51 | ], 52 | "info" : { 53 | "author" : "xcode", 54 | "version" : 1 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work@2x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work@2x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work@3x-1.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Icons/Work.imageset/Work@3x.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/SelectedBackground-Blue.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xFF", 9 | "green" : "0x7A", 10 | "red" : "0x00" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/SelectedBackground.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.100", 8 | "blue" : "0x00", 9 | "green" : "0x00", 10 | "red" : "0x00" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.100", 26 | "blue" : "0xFF", 27 | "green" : "0xFF", 28 | "red" : "0xFF" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Sidebar-Header-Icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "sidebar-icon.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Sidebar-Header-Icon.imageset/sidebar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/Programmatic/SimpleSidebar/Assets.xcassets/Sidebar/Sidebar-Header-Icon.imageset/sidebar-icon.png -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 19 | CFBundleShortVersionString 20 | $(MARKETING_VERSION) 21 | CFBundleVersion 22 | 1 23 | LSApplicationCategoryType 24 | public.app-category.developer-tools 25 | LSMinimumSystemVersion 26 | $(MACOSX_DEPLOYMENT_TARGET) 27 | NSMainStoryboardFile 28 | Main 29 | NSPrincipalClass 30 | NSApplication 31 | 32 | 33 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Sidebar/SidebarMenu.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SidebarMenu.swift 3 | // SimpleSidebar 4 | // 5 | // Created by Justin Bush on 2021-03-04. 6 | // 7 | 8 | import Cocoa 9 | 10 | // MARK: Sidebar Menu Items 11 | enum SidebarMenu: String, CaseIterable { 12 | 13 | // MARK: Item Title 14 | case discover = "Discover" 15 | case arcade = "Arcade" 16 | case create = "Create" 17 | case work = "Work" 18 | case play = "Play" 19 | case develop = "Develop" 20 | case categories = "Categories" 21 | case updates = "Updates" 22 | 23 | // MARK: Item Image 24 | var icon: NSImage { 25 | switch self { 26 | case .discover: return NSImage(named: "Discover-Blue")! 27 | case .arcade: return NSImage(named: "Arcade-Blue")! 28 | case .create: return NSImage(named: "Create-Blue")! 29 | case .work: return NSImage(named: "Work-Blue")! 30 | case .play: return NSImage(named: "Play-Blue")! 31 | case .develop: return NSImage(named: "Develop-Blue")! 32 | case .categories: return NSImage(named: "Categories-Blue")! 33 | case .updates: return NSImage(named: "Updates-Blue")! 34 | } 35 | } 36 | // Black & white icon variants 37 | var iconBW: NSImage { 38 | switch self { 39 | case .discover: return NSImage(named: "Discover")! 40 | case .arcade: return NSImage(named: "Arcade")! 41 | case .create: return NSImage(named: "Create")! 42 | case .work: return NSImage(named: "Work")! 43 | case .play: return NSImage(named: "Play")! 44 | case .develop: return NSImage(named: "Develop")! 45 | case .categories: return NSImage(named: "Categories")! 46 | case .updates: return NSImage(named: "Updates")! 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/Sidebar/SidebarViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SidebarViewController.swift 3 | // SimpleSidebar 4 | // 5 | // Created by Justin Bush on 2021-03-04. 6 | // 7 | 8 | import Cocoa 9 | 10 | class SidebarViewController: NSViewController { 11 | 12 | @IBOutlet var sidebar: NSOutlineView! 13 | var rowBackgroundColor = NSColor(red: 0.00, green: 0.48, blue: 1.00, alpha: 1.00) 14 | 15 | override func viewDidLoad() { 16 | super.viewDidLoad() 17 | // Setup notification for window losing and gaining focus 18 | NotificationCenter.default.addObserver(self, selector: #selector(windowLostFocus), name: NSApplication.willResignActiveNotification, object: nil) 19 | NotificationCenter.default.addObserver(self, selector: #selector(windowGainedFocus), name: NSApplication.willBecomeActiveNotification, object: nil) 20 | // Set row background color for macOS 10.13+ 21 | if #available(OSX 10.13, *) { 22 | rowBackgroundColor = NSColor(named: "SelectedBackground")! 23 | } 24 | } 25 | } 26 | 27 | 28 | extension SidebarViewController: NSOutlineViewDataSource { 29 | // Number of items in the sidebar 30 | func outlineView(_ outlineView: NSOutlineView, numberOfChildrenOfItem item: Any?) -> Int { 31 | return SidebarMenu.allCases.count 32 | } 33 | // Items to be added to sidebar 34 | func outlineView(_ outlineView: NSOutlineView, child index: Int, ofItem item: Any?) -> Any { 35 | return SidebarMenu.allCases[index] 36 | } 37 | // Whether rows are expandable by an arrow 38 | func outlineView(_ outlineView: NSOutlineView, isItemExpandable item: Any) -> Bool { 39 | return false 40 | } 41 | // Height of each row 42 | func outlineView(_ outlineView: NSOutlineView, heightOfRowByItem item: Any) -> CGFloat { 43 | return 40.0 44 | } 45 | @objc func windowLostFocus(_ notification: Notification) { 46 | setRowColour(sidebar, false) 47 | } 48 | 49 | @objc func windowGainedFocus(_ notification: Notification) { 50 | setRowColour(sidebar, true) 51 | } 52 | 53 | // When a row is selected 54 | func outlineViewSelectionDidChange(_ notification: Notification) { 55 | if let outlineView = notification.object as? NSOutlineView { 56 | setRowColour(outlineView, true) 57 | } 58 | } 59 | 60 | func setRowColour(_ outlineView: NSOutlineView, _ windowFocused: Bool) { 61 | let rows = IndexSet(integersIn: 0.. NSView? { 92 | var view: NSTableCellView? 93 | 94 | if let menuItem = item as? SidebarMenu { 95 | view = outlineView.makeView(withIdentifier: NSUserInterfaceItemIdentifier(rawValue: "ItemCell"), owner: self) as? NSTableCellView 96 | // Menu item title 97 | if let textField = view?.textField { 98 | textField.stringValue = menuItem.rawValue 99 | } 100 | // Menu item icon image 101 | if let imageView = view?.imageView { 102 | imageView.image = menuItem.icon // NSImage(named: menuItem.rawValue) 103 | } 104 | } 105 | 106 | return view 107 | } 108 | 109 | } 110 | 111 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/SimpleSidebar.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.files.user-selected.read-only 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Programmatic/SimpleSidebar/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // SimpleSidebar 4 | // 5 | // Created by Justin Bush on 2021-03-04. 6 | // 7 | 8 | import Cocoa 9 | 10 | class ViewController: NSViewController { 11 | 12 | override func viewDidLoad() { 13 | super.viewDidLoad() 14 | 15 | // Do any additional setup after loading the view. 16 | } 17 | 18 | override var representedObject: Any? { 19 | didSet { 20 | // Update the view, if already loaded. 21 | } 22 | } 23 | 24 | 25 | } 26 | 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | The SwiftUI sidebar implementation—used for comparison purposes—is courtesy of [1998code](https://github.com/1998code/SwiftUI2-MacSidebar). Go show them some love! 4 | 5 | # Overview 6 | Provided in this project are three different implementations of the macOS sidebar: 7 | 8 | 9 | 10 | 11 | 12 | 24 |
VariantCompatibility
13 | 14 | **Cocoa** 15 | 16 | - **Variant 1:** Built for Programmers `(NSOutlineView)` 17 | - **Variant 2:** Built for Designers `(Storyboards)` 18 | 19 | 20 | 21 | OS X 10.11 and higher 22 | 23 |
25 | 26 | **SwiftUI** 27 | 28 | - **Joint Variance:** `SideBarListStyle()` 29 | 30 | 31 | 32 | macOS 11.0 and higher 33 | 34 |
35 | 36 | 37 | 38 | As much as I love SwiftUI, this project is more of a POC that Cocoa is still relevant. I wanted to show that the Cocoa implementation of something as simple as a sidebar didn't need to be extremely complex or time-consuming. Similarily, creating a highly-customizable sidebar shouldn't require heavily packaged frameworks. 39 | 40 | # Variant 1 Cocoa 41 | 42 | The variant that was built with the average programmer in-mind. 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 |
ProsCons
51 | 52 | ``` 53 | • Fastest Cocoa implementation 54 | • Easy to setup and configure menu items 55 | • Resizable sidebar (NSSplitView) 56 | • Adopts the style of the user's current 57 | version of macOS (tbt to aqua!) 58 | • Only assets are icons (optional) 59 | ``` 60 | 61 | 62 | 63 | ``` 64 | • Lacks section & row headers 65 | • Not very customizable 66 | • Menu items are inherited 67 | • All follow the same structure 68 | ie. title & icon 69 | ``` 70 | 71 |
72 | 73 | ### Summary 74 | Great for implementing basic sidebars that don't need a ton of customization. Adopts the style of the user's version of macOS for complete immersion with backward-compatibility. 75 | 76 | # Variant 2 Cocoa 77 | 78 | The variant that was built for designers who love Storyboards. 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 |
ProsCons
87 | 88 | ``` 89 | • Highly customizable interface 90 | • Allows for individual menu item customization 91 | • Same appearance across all versions of macOS 92 | • Mutable/customizable container view 93 | • Easy to modify, manipulate and animate 94 | ie. Toggle hide/show sidebar with fade effect 95 | ``` 96 | 97 | 98 | 99 | ``` 100 | • Heavily relies on Storyboards 101 | • Uses AutoLayout + Constraints 102 | • Experience with design software – ie. 103 | Photoshop/XD – for the ultimate 104 | customization experience 105 | ``` 106 | 107 |
108 | 109 | ### Summary 110 | Great for maximum customization. Maintains the same style and appearance, regardless of the user's macOS version (bring newer UI design standards to backwards compatible applications)! 111 | 112 | 113 | 114 | ---- 115 | 116 | ## MIT License 117 | > Copyright 2021 © Justin Bush 118 | > 119 | > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 120 | > 121 | > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 122 | > 123 | > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 124 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | C2B2F00525EFF40200405DD1 /* SimpleSidebarUIApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2B2F00425EFF40200405DD1 /* SimpleSidebarUIApp.swift */; }; 11 | C2B2F00725EFF40200405DD1 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2B2F00625EFF40200405DD1 /* ContentView.swift */; }; 12 | C2B2F00925EFF40600405DD1 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C2B2F00825EFF40600405DD1 /* Assets.xcassets */; }; 13 | C2B2F00C25EFF40600405DD1 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C2B2F00B25EFF40600405DD1 /* Preview Assets.xcassets */; }; 14 | C2B2F01725EFF4CA00405DD1 /* SidebarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2B2F01625EFF4CA00405DD1 /* SidebarView.swift */; }; 15 | /* End PBXBuildFile section */ 16 | 17 | /* Begin PBXFileReference section */ 18 | C2B2F00125EFF40200405DD1 /* SimpleSidebarUI.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SimpleSidebarUI.app; sourceTree = BUILT_PRODUCTS_DIR; }; 19 | C2B2F00425EFF40200405DD1 /* SimpleSidebarUIApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleSidebarUIApp.swift; sourceTree = ""; }; 20 | C2B2F00625EFF40200405DD1 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; 21 | C2B2F00825EFF40600405DD1 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 22 | C2B2F00B25EFF40600405DD1 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 23 | C2B2F00D25EFF40600405DD1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 24 | C2B2F00E25EFF40600405DD1 /* SimpleSidebarUI.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = SimpleSidebarUI.entitlements; sourceTree = ""; }; 25 | C2B2F01625EFF4CA00405DD1 /* SidebarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SidebarView.swift; sourceTree = ""; }; 26 | /* End PBXFileReference section */ 27 | 28 | /* Begin PBXFrameworksBuildPhase section */ 29 | C2B2EFFE25EFF40200405DD1 /* Frameworks */ = { 30 | isa = PBXFrameworksBuildPhase; 31 | buildActionMask = 2147483647; 32 | files = ( 33 | ); 34 | runOnlyForDeploymentPostprocessing = 0; 35 | }; 36 | /* End PBXFrameworksBuildPhase section */ 37 | 38 | /* Begin PBXGroup section */ 39 | C2B2EFF825EFF40200405DD1 = { 40 | isa = PBXGroup; 41 | children = ( 42 | C2B2F00325EFF40200405DD1 /* SimpleSidebarUI */, 43 | C2B2F00225EFF40200405DD1 /* Products */, 44 | ); 45 | sourceTree = ""; 46 | }; 47 | C2B2F00225EFF40200405DD1 /* Products */ = { 48 | isa = PBXGroup; 49 | children = ( 50 | C2B2F00125EFF40200405DD1 /* SimpleSidebarUI.app */, 51 | ); 52 | name = Products; 53 | sourceTree = ""; 54 | }; 55 | C2B2F00325EFF40200405DD1 /* SimpleSidebarUI */ = { 56 | isa = PBXGroup; 57 | children = ( 58 | C2B2F00425EFF40200405DD1 /* SimpleSidebarUIApp.swift */, 59 | C2B2F00625EFF40200405DD1 /* ContentView.swift */, 60 | C2B2F01625EFF4CA00405DD1 /* SidebarView.swift */, 61 | C2B2F00825EFF40600405DD1 /* Assets.xcassets */, 62 | C2B2F00D25EFF40600405DD1 /* Info.plist */, 63 | C2B2F00E25EFF40600405DD1 /* SimpleSidebarUI.entitlements */, 64 | C2B2F00A25EFF40600405DD1 /* Preview Content */, 65 | ); 66 | path = SimpleSidebarUI; 67 | sourceTree = ""; 68 | }; 69 | C2B2F00A25EFF40600405DD1 /* Preview Content */ = { 70 | isa = PBXGroup; 71 | children = ( 72 | C2B2F00B25EFF40600405DD1 /* Preview Assets.xcassets */, 73 | ); 74 | path = "Preview Content"; 75 | sourceTree = ""; 76 | }; 77 | /* End PBXGroup section */ 78 | 79 | /* Begin PBXNativeTarget section */ 80 | C2B2F00025EFF40200405DD1 /* SimpleSidebarUI */ = { 81 | isa = PBXNativeTarget; 82 | buildConfigurationList = C2B2F01125EFF40600405DD1 /* Build configuration list for PBXNativeTarget "SimpleSidebarUI" */; 83 | buildPhases = ( 84 | C2B2EFFD25EFF40200405DD1 /* Sources */, 85 | C2B2EFFE25EFF40200405DD1 /* Frameworks */, 86 | C2B2EFFF25EFF40200405DD1 /* Resources */, 87 | ); 88 | buildRules = ( 89 | ); 90 | dependencies = ( 91 | ); 92 | name = SimpleSidebarUI; 93 | productName = SimpleSidebarUI; 94 | productReference = C2B2F00125EFF40200405DD1 /* SimpleSidebarUI.app */; 95 | productType = "com.apple.product-type.application"; 96 | }; 97 | /* End PBXNativeTarget section */ 98 | 99 | /* Begin PBXProject section */ 100 | C2B2EFF925EFF40200405DD1 /* Project object */ = { 101 | isa = PBXProject; 102 | attributes = { 103 | LastSwiftUpdateCheck = 1240; 104 | LastUpgradeCheck = 1240; 105 | TargetAttributes = { 106 | C2B2F00025EFF40200405DD1 = { 107 | CreatedOnToolsVersion = 12.4; 108 | }; 109 | }; 110 | }; 111 | buildConfigurationList = C2B2EFFC25EFF40200405DD1 /* Build configuration list for PBXProject "SimpleSidebarUI" */; 112 | compatibilityVersion = "Xcode 9.3"; 113 | developmentRegion = en; 114 | hasScannedForEncodings = 0; 115 | knownRegions = ( 116 | en, 117 | Base, 118 | ); 119 | mainGroup = C2B2EFF825EFF40200405DD1; 120 | productRefGroup = C2B2F00225EFF40200405DD1 /* Products */; 121 | projectDirPath = ""; 122 | projectRoot = ""; 123 | targets = ( 124 | C2B2F00025EFF40200405DD1 /* SimpleSidebarUI */, 125 | ); 126 | }; 127 | /* End PBXProject section */ 128 | 129 | /* Begin PBXResourcesBuildPhase section */ 130 | C2B2EFFF25EFF40200405DD1 /* Resources */ = { 131 | isa = PBXResourcesBuildPhase; 132 | buildActionMask = 2147483647; 133 | files = ( 134 | C2B2F00C25EFF40600405DD1 /* Preview Assets.xcassets in Resources */, 135 | C2B2F00925EFF40600405DD1 /* Assets.xcassets in Resources */, 136 | ); 137 | runOnlyForDeploymentPostprocessing = 0; 138 | }; 139 | /* End PBXResourcesBuildPhase section */ 140 | 141 | /* Begin PBXSourcesBuildPhase section */ 142 | C2B2EFFD25EFF40200405DD1 /* Sources */ = { 143 | isa = PBXSourcesBuildPhase; 144 | buildActionMask = 2147483647; 145 | files = ( 146 | C2B2F00725EFF40200405DD1 /* ContentView.swift in Sources */, 147 | C2B2F00525EFF40200405DD1 /* SimpleSidebarUIApp.swift in Sources */, 148 | C2B2F01725EFF4CA00405DD1 /* SidebarView.swift in Sources */, 149 | ); 150 | runOnlyForDeploymentPostprocessing = 0; 151 | }; 152 | /* End PBXSourcesBuildPhase section */ 153 | 154 | /* Begin XCBuildConfiguration section */ 155 | C2B2F00F25EFF40600405DD1 /* Debug */ = { 156 | isa = XCBuildConfiguration; 157 | buildSettings = { 158 | ALWAYS_SEARCH_USER_PATHS = NO; 159 | CLANG_ANALYZER_NONNULL = YES; 160 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 161 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 162 | CLANG_CXX_LIBRARY = "libc++"; 163 | CLANG_ENABLE_MODULES = YES; 164 | CLANG_ENABLE_OBJC_ARC = YES; 165 | CLANG_ENABLE_OBJC_WEAK = YES; 166 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 167 | CLANG_WARN_BOOL_CONVERSION = YES; 168 | CLANG_WARN_COMMA = YES; 169 | CLANG_WARN_CONSTANT_CONVERSION = YES; 170 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 171 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 172 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 173 | CLANG_WARN_EMPTY_BODY = YES; 174 | CLANG_WARN_ENUM_CONVERSION = YES; 175 | CLANG_WARN_INFINITE_RECURSION = YES; 176 | CLANG_WARN_INT_CONVERSION = YES; 177 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 178 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 179 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 180 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 181 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 182 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 183 | CLANG_WARN_STRICT_PROTOTYPES = YES; 184 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 185 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 186 | CLANG_WARN_UNREACHABLE_CODE = YES; 187 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 188 | COPY_PHASE_STRIP = NO; 189 | DEBUG_INFORMATION_FORMAT = dwarf; 190 | ENABLE_STRICT_OBJC_MSGSEND = YES; 191 | ENABLE_TESTABILITY = YES; 192 | GCC_C_LANGUAGE_STANDARD = gnu11; 193 | GCC_DYNAMIC_NO_PIC = NO; 194 | GCC_NO_COMMON_BLOCKS = YES; 195 | GCC_OPTIMIZATION_LEVEL = 0; 196 | GCC_PREPROCESSOR_DEFINITIONS = ( 197 | "DEBUG=1", 198 | "$(inherited)", 199 | ); 200 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 201 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 202 | GCC_WARN_UNDECLARED_SELECTOR = YES; 203 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 204 | GCC_WARN_UNUSED_FUNCTION = YES; 205 | GCC_WARN_UNUSED_VARIABLE = YES; 206 | MACOSX_DEPLOYMENT_TARGET = 11.1; 207 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 208 | MTL_FAST_MATH = YES; 209 | ONLY_ACTIVE_ARCH = YES; 210 | SDKROOT = macosx; 211 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 212 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 213 | }; 214 | name = Debug; 215 | }; 216 | C2B2F01025EFF40600405DD1 /* Release */ = { 217 | isa = XCBuildConfiguration; 218 | buildSettings = { 219 | ALWAYS_SEARCH_USER_PATHS = NO; 220 | CLANG_ANALYZER_NONNULL = YES; 221 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 222 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 223 | CLANG_CXX_LIBRARY = "libc++"; 224 | CLANG_ENABLE_MODULES = YES; 225 | CLANG_ENABLE_OBJC_ARC = YES; 226 | CLANG_ENABLE_OBJC_WEAK = YES; 227 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 228 | CLANG_WARN_BOOL_CONVERSION = YES; 229 | CLANG_WARN_COMMA = YES; 230 | CLANG_WARN_CONSTANT_CONVERSION = YES; 231 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 232 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 233 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 234 | CLANG_WARN_EMPTY_BODY = YES; 235 | CLANG_WARN_ENUM_CONVERSION = YES; 236 | CLANG_WARN_INFINITE_RECURSION = YES; 237 | CLANG_WARN_INT_CONVERSION = YES; 238 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 239 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 240 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 241 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 242 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 243 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 244 | CLANG_WARN_STRICT_PROTOTYPES = YES; 245 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 246 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 247 | CLANG_WARN_UNREACHABLE_CODE = YES; 248 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 249 | COPY_PHASE_STRIP = NO; 250 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 251 | ENABLE_NS_ASSERTIONS = NO; 252 | ENABLE_STRICT_OBJC_MSGSEND = YES; 253 | GCC_C_LANGUAGE_STANDARD = gnu11; 254 | GCC_NO_COMMON_BLOCKS = YES; 255 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 256 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 257 | GCC_WARN_UNDECLARED_SELECTOR = YES; 258 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 259 | GCC_WARN_UNUSED_FUNCTION = YES; 260 | GCC_WARN_UNUSED_VARIABLE = YES; 261 | MACOSX_DEPLOYMENT_TARGET = 11.1; 262 | MTL_ENABLE_DEBUG_INFO = NO; 263 | MTL_FAST_MATH = YES; 264 | SDKROOT = macosx; 265 | SWIFT_COMPILATION_MODE = wholemodule; 266 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 267 | }; 268 | name = Release; 269 | }; 270 | C2B2F01225EFF40600405DD1 /* Debug */ = { 271 | isa = XCBuildConfiguration; 272 | buildSettings = { 273 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 274 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 275 | CODE_SIGN_ENTITLEMENTS = SimpleSidebarUI/SimpleSidebarUI.entitlements; 276 | CODE_SIGN_STYLE = Automatic; 277 | COMBINE_HIDPI_IMAGES = YES; 278 | DEVELOPMENT_ASSET_PATHS = "\"SimpleSidebarUI/Preview Content\""; 279 | DEVELOPMENT_TEAM = 85N3S3DG8M; 280 | ENABLE_HARDENED_RUNTIME = YES; 281 | ENABLE_PREVIEWS = YES; 282 | INFOPLIST_FILE = SimpleSidebarUI/Info.plist; 283 | LD_RUNPATH_SEARCH_PATHS = ( 284 | "$(inherited)", 285 | "@executable_path/../Frameworks", 286 | ); 287 | MACOSX_DEPLOYMENT_TARGET = 11.0; 288 | MARKETING_VERSION = 0.0.1; 289 | PRODUCT_BUNDLE_IDENTIFIER = ca.justinbush.SimpleSidebarUI; 290 | PRODUCT_NAME = "$(TARGET_NAME)"; 291 | SWIFT_VERSION = 5.0; 292 | }; 293 | name = Debug; 294 | }; 295 | C2B2F01325EFF40600405DD1 /* Release */ = { 296 | isa = XCBuildConfiguration; 297 | buildSettings = { 298 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 299 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 300 | CODE_SIGN_ENTITLEMENTS = SimpleSidebarUI/SimpleSidebarUI.entitlements; 301 | CODE_SIGN_STYLE = Automatic; 302 | COMBINE_HIDPI_IMAGES = YES; 303 | DEVELOPMENT_ASSET_PATHS = "\"SimpleSidebarUI/Preview Content\""; 304 | DEVELOPMENT_TEAM = 85N3S3DG8M; 305 | ENABLE_HARDENED_RUNTIME = YES; 306 | ENABLE_PREVIEWS = YES; 307 | INFOPLIST_FILE = SimpleSidebarUI/Info.plist; 308 | LD_RUNPATH_SEARCH_PATHS = ( 309 | "$(inherited)", 310 | "@executable_path/../Frameworks", 311 | ); 312 | MACOSX_DEPLOYMENT_TARGET = 11.0; 313 | MARKETING_VERSION = 0.0.1; 314 | PRODUCT_BUNDLE_IDENTIFIER = ca.justinbush.SimpleSidebarUI; 315 | PRODUCT_NAME = "$(TARGET_NAME)"; 316 | SWIFT_VERSION = 5.0; 317 | }; 318 | name = Release; 319 | }; 320 | /* End XCBuildConfiguration section */ 321 | 322 | /* Begin XCConfigurationList section */ 323 | C2B2EFFC25EFF40200405DD1 /* Build configuration list for PBXProject "SimpleSidebarUI" */ = { 324 | isa = XCConfigurationList; 325 | buildConfigurations = ( 326 | C2B2F00F25EFF40600405DD1 /* Debug */, 327 | C2B2F01025EFF40600405DD1 /* Release */, 328 | ); 329 | defaultConfigurationIsVisible = 0; 330 | defaultConfigurationName = Release; 331 | }; 332 | C2B2F01125EFF40600405DD1 /* Build configuration list for PBXNativeTarget "SimpleSidebarUI" */ = { 333 | isa = XCConfigurationList; 334 | buildConfigurations = ( 335 | C2B2F01225EFF40600405DD1 /* Debug */, 336 | C2B2F01325EFF40600405DD1 /* Release */, 337 | ); 338 | defaultConfigurationIsVisible = 0; 339 | defaultConfigurationName = Release; 340 | }; 341 | /* End XCConfigurationList section */ 342 | }; 343 | rootObject = C2B2EFF925EFF40200405DD1 /* Project object */; 344 | } 345 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI.xcodeproj/project.xcworkspace/xcuserdata/justinbush.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revblaze/SimpleSidebar/fb7f07be924b486dc5fe744a26272e990c593ead/SwiftUI/SimpleSidebarUI.xcodeproj/project.xcworkspace/xcuserdata/justinbush.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI.xcodeproj/xcuserdata/justinbush.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | SimpleSidebarUI.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "mac", 5 | "scale" : "1x", 6 | "size" : "16x16" 7 | }, 8 | { 9 | "idiom" : "mac", 10 | "scale" : "2x", 11 | "size" : "16x16" 12 | }, 13 | { 14 | "idiom" : "mac", 15 | "scale" : "1x", 16 | "size" : "32x32" 17 | }, 18 | { 19 | "idiom" : "mac", 20 | "scale" : "2x", 21 | "size" : "32x32" 22 | }, 23 | { 24 | "idiom" : "mac", 25 | "scale" : "1x", 26 | "size" : "128x128" 27 | }, 28 | { 29 | "idiom" : "mac", 30 | "scale" : "2x", 31 | "size" : "128x128" 32 | }, 33 | { 34 | "idiom" : "mac", 35 | "scale" : "1x", 36 | "size" : "256x256" 37 | }, 38 | { 39 | "idiom" : "mac", 40 | "scale" : "2x", 41 | "size" : "256x256" 42 | }, 43 | { 44 | "idiom" : "mac", 45 | "scale" : "1x", 46 | "size" : "512x512" 47 | }, 48 | { 49 | "idiom" : "mac", 50 | "scale" : "2x", 51 | "size" : "512x512" 52 | } 53 | ], 54 | "info" : { 55 | "author" : "xcode", 56 | "version" : 1 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI/ContentView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContentView.swift 3 | // SimpleSidebarUI 4 | // 5 | // Created by Justin Bush on 2021-03-03. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct ContentView: View { 11 | var body: some View { 12 | Text("Hello, world!") 13 | .padding() 14 | } 15 | } 16 | 17 | struct ContentView_Previews: PreviewProvider { 18 | static var previews: some View { 19 | ContentView() 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | $(MARKETING_VERSION) 19 | CFBundleVersion 20 | 1 21 | LSApplicationCategoryType 22 | public.app-category.developer-tools 23 | LSMinimumSystemVersion 24 | $(MACOSX_DEPLOYMENT_TARGET) 25 | 26 | 27 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI/SidebarView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SidebarView.swift 3 | // SimpleSidebarUI 4 | // 5 | // Created by Justin Bush on 2021-03-03. 6 | // 7 | // Reference 8 | // https://github.com/1998code/SwiftUI2-MacSidebar 9 | // 10 | 11 | import SwiftUI 12 | 13 | struct SidebarView: View { 14 | var body: some View { 15 | NavigationView { 16 | List { 17 | NavigationLink(destination: ContentView()) { 18 | Label("Welcome", systemImage: "star") 19 | } 20 | 21 | Spacer() 22 | 23 | Text("DASHBOARD") 24 | .font(.system(size: 10)) 25 | .fontWeight(.bold) 26 | Group{ 27 | NavigationLink(destination: ContentView()) { 28 | Label("Home", systemImage: "house") 29 | } 30 | NavigationLink(destination: ContentView()) { 31 | Label("Websites", systemImage: "globe") 32 | } 33 | NavigationLink(destination: ContentView()) { 34 | Label("Domains", systemImage: "link") 35 | } 36 | NavigationLink(destination: ContentView()) { 37 | Label("Templates", systemImage: "rectangle.stack") 38 | } 39 | } 40 | 41 | Spacer() 42 | 43 | Text("PROFILE") 44 | .font(.system(size: 10)) 45 | .fontWeight(.bold) 46 | Group { 47 | NavigationLink(destination: ContentView()) { 48 | Label("My Account", systemImage: "person") 49 | } 50 | NavigationLink(destination: ContentView()) { 51 | Label("Notifications", systemImage: "bell") 52 | } 53 | NavigationLink(destination: ContentView()) { 54 | Label("Settings", systemImage: "gear") 55 | } 56 | } 57 | 58 | Spacer() 59 | 60 | Divider() 61 | NavigationLink(destination: ContentView()) { 62 | Label("Sign Out", systemImage: "arrow.backward") 63 | } 64 | } 65 | .listStyle(SidebarListStyle()) 66 | .navigationTitle("Explore") 67 | .frame(minWidth: 150, idealWidth: 250, maxWidth: 300) 68 | .toolbar { 69 | ToolbarItem(placement: .navigation) { 70 | Button(action: toggleSidebar, label: { 71 | Image(systemName: "sidebar.left") 72 | }) 73 | } 74 | } 75 | 76 | ContentView() 77 | } 78 | } 79 | } 80 | 81 | // Toggle Sidebar Function 82 | func toggleSidebar() { 83 | NSApp.keyWindow?.firstResponder?.tryToPerform(#selector(NSSplitViewController.toggleSidebar(_:)), with: nil) 84 | } 85 | 86 | struct SidebarView_Previews: PreviewProvider { 87 | static var previews: some View { 88 | SidebarView() 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI/SimpleSidebarUI.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.files.user-selected.read-only 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SwiftUI/SimpleSidebarUI/SimpleSidebarUIApp.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SimpleSidebarUIApp.swift 3 | // SimpleSidebarUI 4 | // 5 | // Created by Justin Bush on 2021-03-03. 6 | // 7 | 8 | import SwiftUI 9 | 10 | @main 11 | struct SimpleSidebarUIApp: App { 12 | var body: some Scene { 13 | WindowGroup { 14 | SidebarView() 15 | } 16 | } 17 | } 18 | --------------------------------------------------------------------------------