Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ghewgill committed Jan 28, 2012
0 parents commit d1da16a
Show file tree
Hide file tree
Showing 13 changed files with 6,268 additions and 0 deletions.
447 changes: 447 additions & 0 deletions Stack Exchange Notifier.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions Stack Exchange Notifier/Stack Exchange Notifier-Info.plist
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>hewgill.com.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.productivity</string>
<key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2012 __MyCompanyName__. All rights reserved.</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
</dict>
</plist>
7 changes: 7 additions & 0 deletions Stack Exchange Notifier/Stack Exchange Notifier-Prefix.pch
@@ -0,0 +1,7 @@
//
// Prefix header for all source files of the 'Stack Exchange Notifier' target in the 'Stack Exchange Notifier' project
//

#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif
17 changes: 17 additions & 0 deletions Stack Exchange Notifier/Stack_Exchange_NotifierAppDelegate.h
@@ -0,0 +1,17 @@
//
// Stack_Exchange_NotifierAppDelegate.h
// Stack Exchange Notifier
//
// Created by Greg Hewgill on 28/01/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@interface Stack_Exchange_NotifierAppDelegate : NSObject <NSApplicationDelegate> {
NSWindow *window;
}

@property (assign) IBOutlet NSWindow *window;

@end
20 changes: 20 additions & 0 deletions Stack Exchange Notifier/Stack_Exchange_NotifierAppDelegate.m
@@ -0,0 +1,20 @@
//
// Stack_Exchange_NotifierAppDelegate.m
// Stack Exchange Notifier
//
// Created by Greg Hewgill on 28/01/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//

#import "Stack_Exchange_NotifierAppDelegate.h"

@implementation Stack_Exchange_NotifierAppDelegate

@synthesize window;

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// Insert code here to initialize your application
}

@end
29 changes: 29 additions & 0 deletions Stack Exchange Notifier/en.lproj/Credits.rtf
@@ -0,0 +1,29 @@
{\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;}
{\colortbl;\red255\green255\blue255;}
\paperw9840\paperh8400
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural

\f0\b\fs24 \cf0 Engineering:
\b0 \
Some people\
\

\b Human Interface Design:
\b0 \
Some other people\
\

\b Testing:
\b0 \
Hopefully not nobody\
\

\b Documentation:
\b0 \
Whoever\
\

\b With special thanks to:
\b0 \
Mom\
}
2 changes: 2 additions & 0 deletions Stack Exchange Notifier/en.lproj/InfoPlist.strings
@@ -0,0 +1,2 @@
/* Localized versions of Info.plist keys */

0 comments on commit d1da16a

Please sign in to comment.