├── preview.gif ├── Uberabout ├── Assets.xcassets │ ├── Contents.json │ ├── uberaboutOrgaLogo.imageset │ │ ├── uberaboutIconBack.png │ │ ├── uberaboutIconBack@2x.png │ │ └── Contents.json │ ├── uberaboutIconBack.imageset │ │ ├── uberaboutIconBack@128w.png │ │ ├── uberaboutIconBack@256w.png │ │ └── Contents.json │ ├── AccentColor.colorset │ │ └── Contents.json │ └── AppIcon.appiconset │ │ └── Contents.json ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Uberabout.entitlements ├── Info.plist ├── UberaboutApp.swift └── Uberabout.swift ├── Uberabout.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcuserdata │ └── ml.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── project.pbxproj ├── LICENSE └── README.md /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinlexow/Uberabout/HEAD/preview.gif -------------------------------------------------------------------------------- /Uberabout/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Uberabout/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Uberabout/Assets.xcassets/uberaboutOrgaLogo.imageset/uberaboutIconBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinlexow/Uberabout/HEAD/Uberabout/Assets.xcassets/uberaboutOrgaLogo.imageset/uberaboutIconBack.png -------------------------------------------------------------------------------- /Uberabout/Assets.xcassets/uberaboutOrgaLogo.imageset/uberaboutIconBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinlexow/Uberabout/HEAD/Uberabout/Assets.xcassets/uberaboutOrgaLogo.imageset/uberaboutIconBack@2x.png -------------------------------------------------------------------------------- /Uberabout/Assets.xcassets/uberaboutIconBack.imageset/uberaboutIconBack@128w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinlexow/Uberabout/HEAD/Uberabout/Assets.xcassets/uberaboutIconBack.imageset/uberaboutIconBack@128w.png -------------------------------------------------------------------------------- /Uberabout/Assets.xcassets/uberaboutIconBack.imageset/uberaboutIconBack@256w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinlexow/Uberabout/HEAD/Uberabout/Assets.xcassets/uberaboutIconBack.imageset/uberaboutIconBack@256w.png -------------------------------------------------------------------------------- /Uberabout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Uberabout/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 | -------------------------------------------------------------------------------- /Uberabout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Uberabout/Uberabout.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 | -------------------------------------------------------------------------------- /Uberabout.xcodeproj/xcuserdata/ml.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Uberabout.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Uberabout/Assets.xcassets/uberaboutIconBack.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "uberaboutIconBack@128w.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "uberaboutIconBack@256w.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Uberabout/Assets.xcassets/uberaboutOrgaLogo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "uberaboutIconBack.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "uberaboutIconBack@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "template" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Uberabout/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 | $(CURRENT_PROJECT_VERSION) 21 | LSMinimumSystemVersion 22 | $(MACOSX_DEPLOYMENT_TARGET) 23 | NSHumanReadableCopyright 24 | Designed by Martin Lexow 25 | 26 | 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2020 martinlexow.de 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Uberabout 2 | 3 | Let’s be honest: The default “About” window in macOS apps looks like a relict of past times. It’s a forgotten niche of the Mac culture — so I made `Uberabout`! It replaces the default “About” window with a modern looking and fun one. Even though most of your users will never look at this window, remember: God is in the detalis! 4 | 5 | ![](preview.gif) 6 | 7 | ## 🎛 Config 8 | 9 | Uberabout automatically detects name, version, app icon and copyright based on the specified `Bundle`. 10 | 11 | Additionally you can add an URL that points to your credits, define a organization logo or set an image for the backside of the app icon. 12 | 13 | ```swift 14 | UberaboutView(bundle: Bundle.main, 15 | appIconBackside: Image("uberaboutIconBack"), 16 | creditsURL: "http://ixeau.com", 17 | organizationLogo: Image("uberaboutOrgaLogo")) 18 | ``` 19 | 20 | ## 📼 Requirements 21 | - macOS 11.0+ 22 | 23 | ## 🌀 Support me 24 | I’m Martin, an indie dev from Berlin. If you find Uberabout useful, please consider to support my work! You can find some great apps of mine on the [Mac App Store](https://apps.apple.com/developer/id955848754) 🌀 25 | -------------------------------------------------------------------------------- /Uberabout/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 | -------------------------------------------------------------------------------- /Uberabout/UberaboutApp.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | import SwiftUI 4 | 5 | 6 | @main 7 | struct UberaboutApp: App { 8 | 9 | @NSApplicationDelegateAdaptor(AppDelegate.self) private var appDelegate 10 | 11 | var body: some Scene { 12 | 13 | WindowGroup { 14 | 15 | Button(action: { 16 | NSApp.sendAction(#selector(AppDelegate.openAboutWindow), to: nil, from: nil) 17 | }, label: { 18 | let aboutSuffix = NSLocalizedString("About", comment: "") 19 | Image(systemName: "questionmark.square.fill") 20 | Text("\(aboutSuffix)\u{00a0}\(Bundle.main.appName)").padding([.trailing], 3.0) 21 | }) 22 | .buttonStyle(PlainButtonStyle()) 23 | .font(Font.title) 24 | .foregroundColor(Color.blue) 25 | .padding(4.0) 26 | .background(Color.blue.opacity(0.16).cornerRadius(6.0)) 27 | .padding(60.0) 28 | .fixedSize() 29 | 30 | } 31 | .commands { 32 | CommandGroup(replacing: .appInfo, addition: { 33 | Button(action: { 34 | NSApp.sendAction(#selector(AppDelegate.openAboutWindow), to: nil, from: nil) 35 | }, label: { 36 | let aboutSuffix = NSLocalizedString("About", comment: "") 37 | Text("\(aboutSuffix)\u{00a0}\(Bundle.main.appName)") 38 | }) 39 | }) 40 | } 41 | 42 | } 43 | } 44 | 45 | 46 | fileprivate final class AppDelegate: NSObject, NSApplicationDelegate { 47 | 48 | private var aboutWindow: NSWindow = Uberabout.aboutWindow() 49 | 50 | @objc func openAboutWindow() { 51 | self.aboutWindow.makeKeyAndOrderFront(nil) 52 | } 53 | 54 | } 55 | -------------------------------------------------------------------------------- /Uberabout/Uberabout.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | import SwiftUI 4 | import Cocoa 5 | import os.log 6 | 7 | 8 | fileprivate let logger = Logger(subsystem: "Uberabout", category: "") 9 | 10 | 11 | struct Uberabout { 12 | 13 | static let windowWidth: CGFloat = 268.0 14 | static let windowHeight: CGFloat = 388.0 15 | 16 | static func aboutWindow(for bundle: Bundle = Bundle.main) -> NSWindow { 17 | 18 | let origin = CGPoint.zero 19 | let size = CGSize(width: self.windowWidth, height: self.windowHeight) 20 | 21 | let window = NSWindow(contentRect: NSRect(origin: origin, size: size), 22 | styleMask: [.titled, .closable, .fullSizeContentView], 23 | backing: .buffered, 24 | defer: false) 25 | 26 | window.setFrameAutosaveName(bundle.appName) 27 | window.setAccessibilityTitle(bundle.appName) 28 | window.titlebarAppearsTransparent = true 29 | window.isMovableByWindowBackground = true 30 | window.isReleasedWhenClosed = false 31 | 32 | // Configure here 33 | let aboutView = UberaboutView(bundle: bundle, 34 | appIconBackside: Image("uberaboutIconBack"), 35 | creditsURL: "http://ixeau.com", 36 | organizationLogo: Image("uberaboutOrgaLogo")) 37 | 38 | window.contentView = NSHostingView(rootView: aboutView) 39 | window.center() 40 | 41 | return window 42 | 43 | } 44 | 45 | } 46 | 47 | 48 | // MARK: - About View 49 | fileprivate struct UberaboutView: View { 50 | 51 | let bundle: Bundle 52 | var appIconBackside: Image? = nil // 128pt × 128pt 53 | var creditsURL: String? = nil 54 | var organizationLogo: Image? = nil // 12pt height max & render as template 55 | 56 | private let windowWidth: CGFloat = Uberabout.windowWidth 57 | private let windowHeight: CGFloat = Uberabout.windowHeight 58 | 59 | @State private var iconHover: Bool = false 60 | @State private var foregroundIconVisible: Bool = true 61 | @State private var backgroundIconVisible: Bool = false 62 | @State private var copyrightFlipped: Bool = false 63 | 64 | var body: some View { 65 | 66 | VStack(spacing: .zero) { 67 | 68 | Spacer() 69 | 70 | // App Icon 71 | 72 | ZStack { 73 | 74 | // App Icon: Back 75 | Group { 76 | if let backside = self.appIconBackside { 77 | backside.resizable() 78 | } else { 79 | AppIconPlaceholder() 80 | } 81 | } 82 | .rotation3DEffect(self.backgroundIconVisible ? Angle.zero : Angle(degrees: -90.0), 83 | axis: (x: 0.0, y: 1.0, z: 0.0), 84 | anchor: .center, 85 | anchorZ: 0.0, 86 | perspective: -0.5) 87 | 88 | // App Icon: Front 89 | Group { 90 | if let appIcon = NSApp.applicationIconImage { 91 | Image(nsImage: appIcon) 92 | } else { 93 | AppIconPlaceholder() 94 | } 95 | } 96 | .rotation3DEffect(self.foregroundIconVisible ? Angle.zero : Angle(degrees: 90.0), 97 | axis: (x: 0.0, y: 1.0, z: 0.0), 98 | anchor: .center, 99 | anchorZ: 0.0, 100 | perspective: -0.5) 101 | 102 | } 103 | .frame(width: 128.0, height: 128.0) 104 | .brightness(self.iconHover ? 0.05 : 0.0) 105 | .padding([.bottom], 14.0) 106 | .onHover(perform: { 107 | state in 108 | 109 | let ani = Animation.easeInOut(duration: 0.16) 110 | withAnimation(ani, { 111 | self.iconHover = state 112 | }) 113 | 114 | if !state && self.backgroundIconVisible { 115 | self.flipIcon() 116 | } 117 | 118 | }) 119 | .onTapGesture(perform: { 120 | self.flipIcon() 121 | }) 122 | 123 | 124 | 125 | // App Name 126 | Text(Bundle.appName) 127 | .font(Font.title.weight(.semibold)) 128 | .padding([.bottom], 6.0) 129 | 130 | 131 | // App Version & Build 132 | HStack(spacing: 4.0) { 133 | 134 | let versionSuffix = NSLocalizedString("Version", bundle: self.bundle, comment: "") 135 | Text("\(versionSuffix)\u{00a0}\(Bundle.appVersionMarketing)") 136 | .font(Font.body.weight(.medium)) 137 | .foregroundColor(.secondary) 138 | 139 | Text("(\(Bundle.appVersionBuild))") 140 | .font(Font.body.monospacedDigit().weight(.regular)) 141 | .foregroundColor(.secondary) 142 | .opacity(0.7) 143 | 144 | } 145 | 146 | 147 | Spacer() 148 | 149 | 150 | // Credits 151 | Group { 152 | if let creditsURLString = self.creditsURL { 153 | Button(action: { 154 | if let url = URL(string: creditsURLString) { 155 | NSWorkspace.shared.open(url) 156 | } 157 | }, label: { 158 | Text("Credits", bundle: self.bundle) 159 | .lineLimit(1) 160 | }) 161 | .buttonStyle(UberaboutWindowButtonStyle()) 162 | } 163 | } 164 | .padding([.top], 20.0) 165 | .padding([.bottom], 8.0) 166 | 167 | 168 | Spacer() 169 | 170 | 171 | Divider() 172 | .padding([.top], 16.0) 173 | 174 | 175 | // Copyright 176 | HStack(spacing: .zero) { 177 | 178 | Spacer() 179 | 180 | if let orgaLogo = self.organizationLogo { 181 | 182 | ZStack { 183 | 184 | orgaLogo 185 | .frame(maxHeight: 12.0) 186 | .rotation3DEffect(self.copyrightFlipped ? Angle(degrees: -90.0) : Angle.zero, 187 | axis: (x: 1.0, y: 0.0, z: 0.0), 188 | anchor: .center, 189 | anchorZ: 0.0, 190 | perspective: -0.5) 191 | 192 | Text(Bundle.copyrightHumanReadable) 193 | .lineLimit(1) 194 | .rotation3DEffect(self.copyrightFlipped ? Angle.zero : Angle(degrees: 90.0), 195 | axis: (x: 1.0, y: 0.0, z: 0.0), 196 | anchor: .center, 197 | anchorZ: 0.0, 198 | perspective: -0.5) 199 | 200 | } 201 | 202 | } else { 203 | 204 | Text(Bundle.copyrightHumanReadable) 205 | .lineLimit(1) 206 | 207 | } 208 | 209 | Spacer() 210 | 211 | } 212 | .font(Font.footnote) 213 | .foregroundColor(.secondary) 214 | .opacity(0.7) 215 | .help(Bundle.copyrightHumanReadable) 216 | .padding([.top], 12.0) 217 | .padding([.bottom], 14.0) 218 | .background(Color.primary.opacity(0.03)) 219 | .onHover(perform: { 220 | state in 221 | let ani = Animation.easeInOut(duration: 0.16) 222 | withAnimation(ani, { 223 | self.copyrightFlipped = state 224 | }) 225 | }) 226 | 227 | } 228 | .frame(width: self.windowWidth, height: self.windowHeight) 229 | 230 | 231 | } 232 | 233 | 234 | private func flipIcon() { 235 | 236 | let reversed = self.foregroundIconVisible 237 | 238 | let inDuration = 0.12 239 | let inAnimation = Animation.easeIn(duration: inDuration) 240 | let outAnimation = Animation.easeOut(duration: 0.32) 241 | 242 | withAnimation(inAnimation, { 243 | if reversed { 244 | self.foregroundIconVisible.toggle() 245 | } else { 246 | self.backgroundIconVisible.toggle() 247 | } 248 | }) 249 | 250 | DispatchQueue.main.asyncAfter(deadline: .now() + inDuration) { 251 | withAnimation(outAnimation, { 252 | if !reversed { 253 | self.foregroundIconVisible.toggle() 254 | } else { 255 | self.backgroundIconVisible.toggle() 256 | } 257 | }) 258 | } 259 | 260 | } 261 | 262 | 263 | } 264 | 265 | 266 | // MARK: - App Icon Placeholder 267 | fileprivate struct AppIconPlaceholder: View { 268 | private let cornerSize: CGSize = CGSize(width: 24.0, height: 24.0) 269 | var body: some View { 270 | return RoundedRectangle(cornerSize: self.cornerSize, style: .continuous) 271 | .foregroundColor(Color.secondary) 272 | .padding(13.0) 273 | } 274 | } 275 | 276 | 277 | // MARK: - Button Style 278 | fileprivate struct UberaboutWindowButtonStyle: ButtonStyle { 279 | func makeBody(configuration: Configuration) -> some View { 280 | let color = Color.accentColor 281 | let pressed = configuration.isPressed 282 | return configuration.label 283 | .font(Font.body.weight(.medium)) 284 | .padding([.leading, .trailing], 8.0) 285 | .padding([.top], 4.0) 286 | .padding([.bottom], 5.0) 287 | .background(color.opacity(pressed ? 0.08 : 0.14)) 288 | .foregroundColor(color.opacity(pressed ? 0.8 : 1.0)) 289 | .cornerRadius(5.0) 290 | 291 | } 292 | } 293 | 294 | 295 | // MARK: - Bundle Extension 296 | extension Bundle { 297 | 298 | var appName: String { 299 | if let name = self.infoDictionary?["CFBundleName"] as? String { 300 | return name 301 | } else { 302 | logger.debug("Unable to determine 'appName'") 303 | return "" 304 | } 305 | } 306 | 307 | static var appName: String { 308 | if let name = Bundle.main.infoDictionary?["CFBundleName"] as? String { 309 | return name 310 | } else { 311 | logger.debug("Unable to determine 'appName'") 312 | return "" 313 | } 314 | } 315 | 316 | static var appVersionMarketing: String { 317 | if let name = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String { 318 | return name 319 | } else { 320 | logger.debug("Unable to determine 'appVersionMarketing'") 321 | return "" 322 | } 323 | } 324 | 325 | static var appVersionBuild: String { 326 | let bundleKey = kCFBundleVersionKey as String 327 | if let version = Bundle.main.object(forInfoDictionaryKey: bundleKey) as? String { 328 | return version 329 | } else { 330 | logger.debug("Unable to determine 'appVersionBuild'") 331 | return "0" 332 | } 333 | } 334 | 335 | static var copyrightHumanReadable: String { 336 | if let name = Bundle.main.infoDictionary?["NSHumanReadableCopyright"] as? String { 337 | return name 338 | } else { 339 | logger.debug("Unable to determine 'copyrightHumanReadable'") 340 | return "" 341 | } 342 | } 343 | 344 | } 345 | 346 | 347 | // MARK: - Preview 348 | struct UberaboutView_Previews: PreviewProvider { 349 | static var previews: some View { 350 | return UberaboutView(bundle: Bundle.main, 351 | appIconBackside: Image("uberaboutIconBack"), 352 | creditsURL: "http://ixeau.com", 353 | organizationLogo: Image("uberaboutOrgaLogo")) 354 | } 355 | } 356 | -------------------------------------------------------------------------------- /Uberabout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 6D56353A258FFAD3009675D4 /* UberaboutApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D563539258FFAD3009675D4 /* UberaboutApp.swift */; }; 11 | 6D56353E258FFAD5009675D4 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6D56353D258FFAD5009675D4 /* Assets.xcassets */; }; 12 | 6D563541258FFAD5009675D4 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6D563540258FFAD5009675D4 /* Preview Assets.xcassets */; }; 13 | 6D56354B258FFB2E009675D4 /* Uberabout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D56354A258FFB2E009675D4 /* Uberabout.swift */; }; 14 | /* End PBXBuildFile section */ 15 | 16 | /* Begin PBXFileReference section */ 17 | 6D563536258FFAD3009675D4 /* Uberabout.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Uberabout.app; sourceTree = BUILT_PRODUCTS_DIR; }; 18 | 6D563539258FFAD3009675D4 /* UberaboutApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UberaboutApp.swift; sourceTree = ""; }; 19 | 6D56353D258FFAD5009675D4 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 20 | 6D563540258FFAD5009675D4 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 21 | 6D563542258FFAD5009675D4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 22 | 6D563543258FFAD5009675D4 /* Uberabout.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Uberabout.entitlements; sourceTree = ""; }; 23 | 6D56354A258FFB2E009675D4 /* Uberabout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Uberabout.swift; sourceTree = ""; }; 24 | /* End PBXFileReference section */ 25 | 26 | /* Begin PBXFrameworksBuildPhase section */ 27 | 6D563533258FFAD3009675D4 /* Frameworks */ = { 28 | isa = PBXFrameworksBuildPhase; 29 | buildActionMask = 2147483647; 30 | files = ( 31 | ); 32 | runOnlyForDeploymentPostprocessing = 0; 33 | }; 34 | /* End PBXFrameworksBuildPhase section */ 35 | 36 | /* Begin PBXGroup section */ 37 | 6D56352D258FFAD3009675D4 = { 38 | isa = PBXGroup; 39 | children = ( 40 | 6D563538258FFAD3009675D4 /* Uberabout */, 41 | 6D563537258FFAD3009675D4 /* Products */, 42 | ); 43 | sourceTree = ""; 44 | }; 45 | 6D563537258FFAD3009675D4 /* Products */ = { 46 | isa = PBXGroup; 47 | children = ( 48 | 6D563536258FFAD3009675D4 /* Uberabout.app */, 49 | ); 50 | name = Products; 51 | sourceTree = ""; 52 | }; 53 | 6D563538258FFAD3009675D4 /* Uberabout */ = { 54 | isa = PBXGroup; 55 | children = ( 56 | 6D563539258FFAD3009675D4 /* UberaboutApp.swift */, 57 | 6D56354A258FFB2E009675D4 /* Uberabout.swift */, 58 | 6D56353D258FFAD5009675D4 /* Assets.xcassets */, 59 | 6D563542258FFAD5009675D4 /* Info.plist */, 60 | 6D563543258FFAD5009675D4 /* Uberabout.entitlements */, 61 | 6D56353F258FFAD5009675D4 /* Preview Content */, 62 | ); 63 | path = Uberabout; 64 | sourceTree = ""; 65 | }; 66 | 6D56353F258FFAD5009675D4 /* Preview Content */ = { 67 | isa = PBXGroup; 68 | children = ( 69 | 6D563540258FFAD5009675D4 /* Preview Assets.xcassets */, 70 | ); 71 | path = "Preview Content"; 72 | sourceTree = ""; 73 | }; 74 | /* End PBXGroup section */ 75 | 76 | /* Begin PBXNativeTarget section */ 77 | 6D563535258FFAD3009675D4 /* Uberabout */ = { 78 | isa = PBXNativeTarget; 79 | buildConfigurationList = 6D563546258FFAD5009675D4 /* Build configuration list for PBXNativeTarget "Uberabout" */; 80 | buildPhases = ( 81 | 6D563532258FFAD3009675D4 /* Sources */, 82 | 6D563533258FFAD3009675D4 /* Frameworks */, 83 | 6D563534258FFAD3009675D4 /* Resources */, 84 | ); 85 | buildRules = ( 86 | ); 87 | dependencies = ( 88 | ); 89 | name = Uberabout; 90 | productName = Uberabout; 91 | productReference = 6D563536258FFAD3009675D4 /* Uberabout.app */; 92 | productType = "com.apple.product-type.application"; 93 | }; 94 | /* End PBXNativeTarget section */ 95 | 96 | /* Begin PBXProject section */ 97 | 6D56352E258FFAD3009675D4 /* Project object */ = { 98 | isa = PBXProject; 99 | attributes = { 100 | LastSwiftUpdateCheck = 1230; 101 | LastUpgradeCheck = 1230; 102 | TargetAttributes = { 103 | 6D563535258FFAD3009675D4 = { 104 | CreatedOnToolsVersion = 12.3; 105 | }; 106 | }; 107 | }; 108 | buildConfigurationList = 6D563531258FFAD3009675D4 /* Build configuration list for PBXProject "Uberabout" */; 109 | compatibilityVersion = "Xcode 9.3"; 110 | developmentRegion = en; 111 | hasScannedForEncodings = 0; 112 | knownRegions = ( 113 | en, 114 | Base, 115 | ); 116 | mainGroup = 6D56352D258FFAD3009675D4; 117 | productRefGroup = 6D563537258FFAD3009675D4 /* Products */; 118 | projectDirPath = ""; 119 | projectRoot = ""; 120 | targets = ( 121 | 6D563535258FFAD3009675D4 /* Uberabout */, 122 | ); 123 | }; 124 | /* End PBXProject section */ 125 | 126 | /* Begin PBXResourcesBuildPhase section */ 127 | 6D563534258FFAD3009675D4 /* Resources */ = { 128 | isa = PBXResourcesBuildPhase; 129 | buildActionMask = 2147483647; 130 | files = ( 131 | 6D563541258FFAD5009675D4 /* Preview Assets.xcassets in Resources */, 132 | 6D56353E258FFAD5009675D4 /* Assets.xcassets in Resources */, 133 | ); 134 | runOnlyForDeploymentPostprocessing = 0; 135 | }; 136 | /* End PBXResourcesBuildPhase section */ 137 | 138 | /* Begin PBXSourcesBuildPhase section */ 139 | 6D563532258FFAD3009675D4 /* Sources */ = { 140 | isa = PBXSourcesBuildPhase; 141 | buildActionMask = 2147483647; 142 | files = ( 143 | 6D56354B258FFB2E009675D4 /* Uberabout.swift in Sources */, 144 | 6D56353A258FFAD3009675D4 /* UberaboutApp.swift in Sources */, 145 | ); 146 | runOnlyForDeploymentPostprocessing = 0; 147 | }; 148 | /* End PBXSourcesBuildPhase section */ 149 | 150 | /* Begin XCBuildConfiguration section */ 151 | 6D563544258FFAD5009675D4 /* Debug */ = { 152 | isa = XCBuildConfiguration; 153 | buildSettings = { 154 | ALWAYS_SEARCH_USER_PATHS = NO; 155 | CLANG_ANALYZER_NONNULL = YES; 156 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 157 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 158 | CLANG_CXX_LIBRARY = "libc++"; 159 | CLANG_ENABLE_MODULES = YES; 160 | CLANG_ENABLE_OBJC_ARC = YES; 161 | CLANG_ENABLE_OBJC_WEAK = YES; 162 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 163 | CLANG_WARN_BOOL_CONVERSION = YES; 164 | CLANG_WARN_COMMA = YES; 165 | CLANG_WARN_CONSTANT_CONVERSION = YES; 166 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 167 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 168 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 169 | CLANG_WARN_EMPTY_BODY = YES; 170 | CLANG_WARN_ENUM_CONVERSION = YES; 171 | CLANG_WARN_INFINITE_RECURSION = YES; 172 | CLANG_WARN_INT_CONVERSION = YES; 173 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 174 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 175 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 176 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 177 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 178 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 179 | CLANG_WARN_STRICT_PROTOTYPES = YES; 180 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 181 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 182 | CLANG_WARN_UNREACHABLE_CODE = YES; 183 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 184 | COPY_PHASE_STRIP = NO; 185 | DEBUG_INFORMATION_FORMAT = dwarf; 186 | ENABLE_STRICT_OBJC_MSGSEND = YES; 187 | ENABLE_TESTABILITY = YES; 188 | GCC_C_LANGUAGE_STANDARD = gnu11; 189 | GCC_DYNAMIC_NO_PIC = NO; 190 | GCC_NO_COMMON_BLOCKS = YES; 191 | GCC_OPTIMIZATION_LEVEL = 0; 192 | GCC_PREPROCESSOR_DEFINITIONS = ( 193 | "DEBUG=1", 194 | "$(inherited)", 195 | ); 196 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 197 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 198 | GCC_WARN_UNDECLARED_SELECTOR = YES; 199 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 200 | GCC_WARN_UNUSED_FUNCTION = YES; 201 | GCC_WARN_UNUSED_VARIABLE = YES; 202 | MACOSX_DEPLOYMENT_TARGET = 11.1; 203 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 204 | MTL_FAST_MATH = YES; 205 | ONLY_ACTIVE_ARCH = YES; 206 | SDKROOT = macosx; 207 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 208 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 209 | }; 210 | name = Debug; 211 | }; 212 | 6D563545258FFAD5009675D4 /* Release */ = { 213 | isa = XCBuildConfiguration; 214 | buildSettings = { 215 | ALWAYS_SEARCH_USER_PATHS = NO; 216 | CLANG_ANALYZER_NONNULL = YES; 217 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 218 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 219 | CLANG_CXX_LIBRARY = "libc++"; 220 | CLANG_ENABLE_MODULES = YES; 221 | CLANG_ENABLE_OBJC_ARC = YES; 222 | CLANG_ENABLE_OBJC_WEAK = YES; 223 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 224 | CLANG_WARN_BOOL_CONVERSION = YES; 225 | CLANG_WARN_COMMA = YES; 226 | CLANG_WARN_CONSTANT_CONVERSION = YES; 227 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 228 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 229 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 230 | CLANG_WARN_EMPTY_BODY = YES; 231 | CLANG_WARN_ENUM_CONVERSION = YES; 232 | CLANG_WARN_INFINITE_RECURSION = YES; 233 | CLANG_WARN_INT_CONVERSION = YES; 234 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 235 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 236 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 237 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 238 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 239 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 240 | CLANG_WARN_STRICT_PROTOTYPES = YES; 241 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 242 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 243 | CLANG_WARN_UNREACHABLE_CODE = YES; 244 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 245 | COPY_PHASE_STRIP = NO; 246 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 247 | ENABLE_NS_ASSERTIONS = NO; 248 | ENABLE_STRICT_OBJC_MSGSEND = YES; 249 | GCC_C_LANGUAGE_STANDARD = gnu11; 250 | GCC_NO_COMMON_BLOCKS = YES; 251 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 252 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 253 | GCC_WARN_UNDECLARED_SELECTOR = YES; 254 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 255 | GCC_WARN_UNUSED_FUNCTION = YES; 256 | GCC_WARN_UNUSED_VARIABLE = YES; 257 | MACOSX_DEPLOYMENT_TARGET = 11.1; 258 | MTL_ENABLE_DEBUG_INFO = NO; 259 | MTL_FAST_MATH = YES; 260 | SDKROOT = macosx; 261 | SWIFT_COMPILATION_MODE = wholemodule; 262 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 263 | }; 264 | name = Release; 265 | }; 266 | 6D563547258FFAD5009675D4 /* Debug */ = { 267 | isa = XCBuildConfiguration; 268 | buildSettings = { 269 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 270 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 271 | CODE_SIGN_ENTITLEMENTS = Uberabout/Uberabout.entitlements; 272 | CODE_SIGN_STYLE = Automatic; 273 | COMBINE_HIDPI_IMAGES = YES; 274 | CURRENT_PROJECT_VERSION = 100; 275 | DEVELOPMENT_ASSET_PATHS = "\"Uberabout/Preview Content\""; 276 | DEVELOPMENT_TEAM = 276HSJ6V54; 277 | ENABLE_HARDENED_RUNTIME = YES; 278 | ENABLE_PREVIEWS = YES; 279 | INFOPLIST_FILE = Uberabout/Info.plist; 280 | LD_RUNPATH_SEARCH_PATHS = ( 281 | "$(inherited)", 282 | "@executable_path/../Frameworks", 283 | ); 284 | MACOSX_DEPLOYMENT_TARGET = 11.0; 285 | MARKETING_VERSION = 1.0.0; 286 | PRODUCT_BUNDLE_IDENTIFIER = de.ixeau.Uberabout; 287 | PRODUCT_NAME = "$(TARGET_NAME)"; 288 | SWIFT_VERSION = 5.0; 289 | }; 290 | name = Debug; 291 | }; 292 | 6D563548258FFAD5009675D4 /* Release */ = { 293 | isa = XCBuildConfiguration; 294 | buildSettings = { 295 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 296 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 297 | CODE_SIGN_ENTITLEMENTS = Uberabout/Uberabout.entitlements; 298 | CODE_SIGN_STYLE = Automatic; 299 | COMBINE_HIDPI_IMAGES = YES; 300 | CURRENT_PROJECT_VERSION = 100; 301 | DEVELOPMENT_ASSET_PATHS = "\"Uberabout/Preview Content\""; 302 | DEVELOPMENT_TEAM = 276HSJ6V54; 303 | ENABLE_HARDENED_RUNTIME = YES; 304 | ENABLE_PREVIEWS = YES; 305 | INFOPLIST_FILE = Uberabout/Info.plist; 306 | LD_RUNPATH_SEARCH_PATHS = ( 307 | "$(inherited)", 308 | "@executable_path/../Frameworks", 309 | ); 310 | MACOSX_DEPLOYMENT_TARGET = 11.0; 311 | MARKETING_VERSION = 1.0.0; 312 | PRODUCT_BUNDLE_IDENTIFIER = de.ixeau.Uberabout; 313 | PRODUCT_NAME = "$(TARGET_NAME)"; 314 | SWIFT_VERSION = 5.0; 315 | }; 316 | name = Release; 317 | }; 318 | /* End XCBuildConfiguration section */ 319 | 320 | /* Begin XCConfigurationList section */ 321 | 6D563531258FFAD3009675D4 /* Build configuration list for PBXProject "Uberabout" */ = { 322 | isa = XCConfigurationList; 323 | buildConfigurations = ( 324 | 6D563544258FFAD5009675D4 /* Debug */, 325 | 6D563545258FFAD5009675D4 /* Release */, 326 | ); 327 | defaultConfigurationIsVisible = 0; 328 | defaultConfigurationName = Release; 329 | }; 330 | 6D563546258FFAD5009675D4 /* Build configuration list for PBXNativeTarget "Uberabout" */ = { 331 | isa = XCConfigurationList; 332 | buildConfigurations = ( 333 | 6D563547258FFAD5009675D4 /* Debug */, 334 | 6D563548258FFAD5009675D4 /* Release */, 335 | ); 336 | defaultConfigurationIsVisible = 0; 337 | defaultConfigurationName = Release; 338 | }; 339 | /* End XCConfigurationList section */ 340 | }; 341 | rootObject = 6D56352E258FFAD3009675D4 /* Project object */; 342 | } 343 | --------------------------------------------------------------------------------