A sleek replacement for the otherwise bleak "About" dialog. Its nice, looks like Xcode 6's one, and offers the following abilities :
- Open the app's website by clicking its (big) icon (in the dialog) (see Usage below)
- Extend the dialog to show the "License Agreement", or
- The "Acknowledgments" (see Content below),
- Translate the button's text (see Localization below),
- Change the background and text colors
- Also has a Swift version, by @dehlen
Pull request welcome !
Clone this repo and add files from PFAboutWindow
to your project.
Using cocoapods
Add pod 'PFAboutWindow', :git => 'https://github.com/perfaram/PFAboutWindow.git'
to your Podfile
and run pod install
.
Add use_frameworks!
to the end of the Podfile
.
For a live, detailed example, see in PFAboutWindowExample
directory.
-
Import
PFAboutWindowController
:#import <PFAboutWindow/PFAboutWindowController.h>
-
Create a strong reference to retain the controller, usually in a
@property
of your AppDelegate:@property PFAboutWindowController *aboutWindowController;
-
Instantiate
PFAboutWindow
(inapplicationDidFinishLaunching:
, most likely) :self.aboutWindowController = [[PFAboutWindowController alloc] init];
You may want to personalize what's going to show up on the window. As every property is accessible, you can tweak everything you want (see
PFAboutWindow/PFAboutWindowController.h
to see them all, and what they fall back to):[self.aboutWindowController setAppURL:[[NSURL alloc] initWithString:@"http://app.faramaz.com"]]; [self.aboutWindowController setAppCopyright:[[NSAttributedString alloc] initWithString:@"Nice Small String" attributes:@{ NSForegroundColorAttributeName:[NSColor tertiaryLabelColor], NSFontAttributeName:[NSFont fontWithName:@"HelveticaNeue" size:11]}]]; //NSAttributedStrings are real shit to work with [self.aboutWindowController setAppName:@"PFAbout"]; //'cause it's shorter
-
Create an IBAction to display the window, and bind it to its caller (usually, the "About [your app]" menu item):
- (IBAction)showAboutWindow:(id)sender { [self.aboutWindowController showWindow:nil]; }
-
You may also want the localize the buttons' text :
Add the following lines to your Localizable.string (below, for example, French)
/* Version %@ (Build %@), displayed in the about window */ "Version %@ (Build %@)" = "Version %@ (%@)"; /* Caption of the 'Acknowledgments' button in the about window */ "Credits" = "Remerciements"; /* Caption of the 'License Agreement' button in the about window */ "EULA" = "CL Utilisateur Final";
- Thanks to @DangerCove for their DCOAboutWindow, which served as a ground for this (heavy) modification.
- Thanks to @SoneeJohn for his numerous contributions
The MIT License (MIT)
Copyright (c) 2015-2016 Perceval @perfaram FARAMAZ
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:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
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.