Skip to content

Commit

Permalink
License added
Browse files Browse the repository at this point in the history
  • Loading branch information
ljcooke committed Sep 19, 2009
1 parent 6df771f commit fa8e031
Show file tree
Hide file tree
Showing 12 changed files with 81 additions and 5 deletions.
22 changes: 22 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2008-2009 Liam Cooke

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.
8 changes: 6 additions & 2 deletions Ryder.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; };
8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
8D2D25721065086400D852C8 /* LICENSE.txt in Resources */ = {isa = PBXBuildFile; fileRef = 8D2D25711065086400D852C8 /* LICENSE.txt */; };
8D81FFD41065048500F953BE /* RyderAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D81FFD31065048500F953BE /* RyderAppDelegate.m */; };
8DB3753A0EC4E4BE007B2A1B /* RyderWindowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DB375390EC4E4BE007B2A1B /* RyderWindowView.m */; };
8DB375530EC4EBC0007B2A1B /* RyderNamer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DB375520EC4EBC0007B2A1B /* RyderNamer.m */; };
Expand All @@ -37,6 +38,7 @@
8D0A838B0EC653F300957EE2 /* Credits.rtfd */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; path = Credits.rtfd; sourceTree = "<group>"; };
8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8D1107320486CEB800E47090 /* Ryder.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Ryder.app; sourceTree = BUILT_PRODUCTS_DIR; };
8D2D25711065086400D852C8 /* LICENSE.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE.txt; sourceTree = "<group>"; };
8D81FFD21065048500F953BE /* RyderAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RyderAppDelegate.h; sourceTree = "<group>"; };
8D81FFD31065048500F953BE /* RyderAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RyderAppDelegate.m; sourceTree = "<group>"; };
8DB375380EC4E4BE007B2A1B /* RyderWindowView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RyderWindowView.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -67,8 +69,6 @@
080E96DDFE201D6D7F000001 /* Classes */ = {
isa = PBXGroup;
children = (
8DD68FAA1065027500652D29 /* PFMoveApplication.h */,
8DD68FAB1065027500652D29 /* PFMoveApplication.m */,
8DB375380EC4E4BE007B2A1B /* RyderWindowView.h */,
8DB375390EC4E4BE007B2A1B /* RyderWindowView.m */,
8DB375510EC4EBC0007B2A1B /* RyderNamer.h */,
Expand All @@ -79,6 +79,8 @@
8DB376D60EC509B3007B2A1B /* RyderController.m */,
8D81FFD21065048500F953BE /* RyderAppDelegate.h */,
8D81FFD31065048500F953BE /* RyderAppDelegate.m */,
8DD68FAA1065027500652D29 /* PFMoveApplication.h */,
8DD68FAB1065027500652D29 /* PFMoveApplication.m */,
);
name = Classes;
sourceTree = "<group>";
Expand Down Expand Up @@ -133,6 +135,7 @@
29B97317FDCFA39411CA2CEA /* Resources */ = {
isa = PBXGroup;
children = (
8D2D25711065086400D852C8 /* LICENSE.txt */,
8D0A838B0EC653F300957EE2 /* Credits.rtfd */,
8D0309090EC64CDA00ACA851 /* APPL.icns */,
8D0308D90EC640D700ACA851 /* ryder.png */,
Expand Down Expand Up @@ -202,6 +205,7 @@
8D0308DA0EC640D700ACA851 /* ryder.png in Resources */,
8D03090A0EC64CDA00ACA851 /* APPL.icns in Resources */,
8D0A838C0EC653F300957EE2 /* Credits.rtfd in Resources */,
8D2D25721065086400D852C8 /* LICENSE.txt in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
5 changes: 5 additions & 0 deletions RyderAppDelegate.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Ryder.app
//
// (c) 2008-2009 Liam Cooke
// MIT Licensed -- see LICENSE.txt

#import <Cocoa/Cocoa.h>

@interface RyderAppDelegate : NSObject {
Expand Down
5 changes: 5 additions & 0 deletions RyderAppDelegate.m
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Ryder.app
//
// (c) 2008-2009 Liam Cooke
// MIT Licensed -- see LICENSE.txt

#import "RyderAppDelegate.h"
#import "PFMoveApplication.h"

Expand Down
5 changes: 5 additions & 0 deletions RyderController.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Ryder.app
//
// (c) 2008-2009 Liam Cooke
// MIT Licensed -- see LICENSE.txt

#import <Cocoa/Cocoa.h>
#import "RyderNamer.h"
#import "RyderNameView.h"
Expand Down
5 changes: 5 additions & 0 deletions RyderController.m
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Ryder.app
//
// (c) 2008-2009 Liam Cooke
// MIT Licensed -- see LICENSE.txt

#import "RyderController.h"
#import "RyderNamer.h"

Expand Down
5 changes: 5 additions & 0 deletions RyderNameView.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Ryder.app
//
// (c) 2008-2009 Liam Cooke
// MIT Licensed -- see LICENSE.txt

#import <Cocoa/Cocoa.h>

@interface RyderNameView : NSView
Expand Down
7 changes: 6 additions & 1 deletion RyderNameView.m
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Ryder.app
//
// (c) 2008-2009 Liam Cooke
// MIT Licensed -- see LICENSE.txt

#import "RyderNameView.h"

@implementation RyderNameView
Expand Down Expand Up @@ -30,4 +35,4 @@ - (void)drawRect:(NSRect)rect
[displayName drawInRect:rect withAttributes:fontAttribs];
}

@end
@end
5 changes: 5 additions & 0 deletions RyderNamer.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Ryder.app
//
// (c) 2008-2009 Liam Cooke
// MIT Licensed -- see LICENSE.txt

#import <Cocoa/Cocoa.h>

@interface RyderNamer : NSObject
Expand Down
5 changes: 5 additions & 0 deletions RyderNamer.m
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Ryder.app
//
// (c) 2008-2009 Liam Cooke
// MIT Licensed -- see LICENSE.txt

#import "RyderNamer.h"

@implementation RyderNamer
Expand Down
7 changes: 6 additions & 1 deletion RyderWindowView.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
// Ryder.app
//
// (c) 2008-2009 Liam Cooke
// MIT Licensed -- see LICENSE.txt

#import <Cocoa/Cocoa.h>

@interface RyderWindowView : NSView
{
}

@end
@end
7 changes: 6 additions & 1 deletion RyderWindowView.m
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Ryder.app
//
// (c) 2008-2009 Liam Cooke
// MIT Licensed -- see LICENSE.txt

#import "RyderWindowView.h"

@implementation RyderWindowView
Expand All @@ -15,4 +20,4 @@ - (void)drawRect:(NSRect)rect
[image drawAtPoint:imagePoint fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0];
}

@end
@end

0 comments on commit fa8e031

Please sign in to comment.