Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
schwa committed Aug 21, 2011
0 parents commit 6ffb1fb
Show file tree
Hide file tree
Showing 21 changed files with 5,753 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "Externals/TouchSQL"]
path = Externals/TouchSQL
url = git://github.com/TouchCode/TouchSQL.git
564 changes: 564 additions & 0 deletions ApertureDuplicateFinder.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

504 changes: 504 additions & 0 deletions ApertureDuplicateFinder/Aperture.h

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions ApertureDuplicateFinder/ApertureDuplicateFinder-Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?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>com.toxicsoftware.${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>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2011 toxicsoftware.com. All rights reserved.</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
</dict>
</plist>
7 changes: 7 additions & 0 deletions ApertureDuplicateFinder/ApertureDuplicateFinder-Prefix.pch
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
//
// Prefix header for all source files of the 'ApertureDuplicateFinder' target in the 'ApertureDuplicateFinder' project
//

#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif
26 changes: 26 additions & 0 deletions ApertureDuplicateFinder/ApertureLibraryProcessor.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
//
// ApertureLibraryProcessor.h
// ApertureDuplicateFinder
//
// Created by Jonathan Wight on 8/17/11.
// Copyright (c) 2011 toxicsoftware.com. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface ApertureLibraryProcessor : NSObject

@property (readwrite, nonatomic, strong) NSURL *libraryURL;

@property (readonly, nonatomic, assign) BOOL processing;
@property (readonly, nonatomic, assign) NSUInteger numberOfImages;
@property (readonly, nonatomic, assign) NSUInteger numberOfProcessedImages;
@property (readonly, nonatomic, assign) CFAbsoluteTime start;
@property (readonly, nonatomic, assign) CFAbsoluteTime finish;
@property (readonly, nonatomic, assign) CFAbsoluteTime estimatedTimeRemaining;

- (id)initWithLibraryURL:(NSURL *)inLibraryURL;

- (BOOL)main:(NSError **)outError;

@end
Loading

0 comments on commit 6ffb1fb

Please sign in to comment.