From b4381e0cee7fb3754763c5b5fe69bc5f89a86d4a Mon Sep 17 00:00:00 2001 From: Rob McBroom Date: Thu, 25 Aug 2011 15:39:06 -0400 Subject: [PATCH 1/7] update project for 64-bit --- QSCommandLineTool.xcodeproj/project.pbxproj | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/QSCommandLineTool.xcodeproj/project.pbxproj b/QSCommandLineTool.xcodeproj/project.pbxproj index 7f306ad..185c57a 100644 --- a/QSCommandLineTool.xcodeproj/project.pbxproj +++ b/QSCommandLineTool.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 42; + objectVersion = 46; objects = { /* Begin PBXBuildFile section */ @@ -224,8 +224,12 @@ /* Begin PBXProject section */ 0259C573FE90428111CA0C5A /* Project object */ = { isa = PBXProject; + attributes = { + LastUpgradeCheck = 0410; + }; buildConfigurationList = 7F07AF8E085E432D00E2AFC4 /* Build configuration list for PBXProject "QSCommandLineTool" */; - compatibilityVersion = "Xcode 2.4"; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; hasScannedForEncodings = 1; knownRegions = ( English, @@ -327,6 +331,7 @@ isa = XCBuildConfiguration; baseConfigurationReference = 14E61B5510CFE069007663EE /* QSPlugIn_Release.xcconfig */; buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; COPY_PHASE_STRIP = YES; PRODUCT_NAME = "Command Line Tool"; ZERO_LINK = NO; @@ -337,6 +342,7 @@ isa = XCBuildConfiguration; baseConfigurationReference = 14E61B5710CFE069007663EE /* Release.xcconfig */; buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; }; name = Release; }; From dd3c52be670d11f88a639c344c3fe1a6d0f42047 Mon Sep 17 00:00:00 2001 From: Rob McBroom Date: Thu, 25 Aug 2011 15:39:16 -0400 Subject: [PATCH 2/7] increment version --- Info.plist | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Info.plist b/Info.plist index 6b8cfda..6f1b6b4 100644 --- a/Info.plist +++ b/Info.plist @@ -1,5 +1,5 @@ - + CFBundleDevelopmentRegion @@ -15,9 +15,9 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 0.6 + 0.6.1 CFBundleVersion - 43 + 44 NSPrincipalClass QSCommandLineTool QSLoadImmediately From 032b04cb3e0bb48644fa00f35e94c1f38b878ef3 Mon Sep 17 00:00:00 2001 From: Rob McBroom Date: Thu, 25 Aug 2011 15:40:32 -0400 Subject: [PATCH 3/7] declare NSString for methods returning strings --- QSCommandLineToolPrefPane.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QSCommandLineToolPrefPane.m b/QSCommandLineToolPrefPane.m index 022afc0..8fed2e7 100644 --- a/QSCommandLineToolPrefPane.m +++ b/QSCommandLineToolPrefPane.m @@ -20,11 +20,11 @@ - (NSImage *) paneIcon{ return [QSResourceManager imageNamed:@"ExecutableBinaryIcon"]; } -- (NSImage *) paneName{ +- (NSString *) paneName{ return @"CL Tool"; } -- (NSImage *) paneDescription{ +- (NSString *) paneDescription{ return @"Configure the Command Line Tool"; } From dd8581bb25e63d060429f912155aefe259227542 Mon Sep 17 00:00:00 2001 From: Rob McBroom Date: Thu, 25 Aug 2011 15:43:08 -0400 Subject: [PATCH 4/7] minor changes to fix compilation errors --- QSCommandLineTool.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/QSCommandLineTool.m b/QSCommandLineTool.m index 8abb912..c8e58dc 100644 --- a/QSCommandLineTool.m +++ b/QSCommandLineTool.m @@ -54,8 +54,8 @@ - (BOOL)readSelectionFromPasteboard:(NSPasteboard *)pboard{ } - (void)handleArguments:(NSArray *)arguments input:(NSData *)input directory:(NSString *)directory{ - if (VERBOSE) - NSLog(@"recieved: %@\rArguments:%@\rInput:%@\rPath:%@\r",self,[arguments description],input,directory); +// if (DEBUG) +// NSLog(@"recieved: %@\rArguments:%@\rInput:%@\rPath:%@\r",self,[arguments description],input,directory); NSString *options=nil; @@ -69,7 +69,7 @@ - (void)handleArguments:(NSArray *)arguments input:(NSData *)input directory:(NS } if (input){ - NSString *string=[[[NSString alloc]initWithData:input encoding:nil]autorelease]; + NSString *string=[[[NSString alloc]initWithData:input encoding:NSUTF8StringEncoding] autorelease]; object=[QSObject objectWithString:string]; }else{ int i; From efc5c5e1baf0a7251f6ce15103ef96ca448646fa Mon Sep 17 00:00:00 2001 From: Rob McBroom Date: Thu, 25 Aug 2011 15:44:16 -0400 Subject: [PATCH 5/7] moved a constant that wasn't getting picked up from the `.pch` --- QSCommandLineTool.h | 3 ++- QSCommandLineTool_Prefix.pch | 3 --- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/QSCommandLineTool.h b/QSCommandLineTool.h index 5e5c67c..0e079c6 100644 --- a/QSCommandLineTool.h +++ b/QSCommandLineTool.h @@ -7,7 +7,8 @@ // #import -#import "QSCommandLineTool.h" + +#define kToolIsInstalled @"QSCommandLineToolInstalled" @interface QSCommandLineTool : NSObject{ NSConnection *commandLineConnection; diff --git a/QSCommandLineTool_Prefix.pch b/QSCommandLineTool_Prefix.pch index 1740a97..cf4397e 100644 --- a/QSCommandLineTool_Prefix.pch +++ b/QSCommandLineTool_Prefix.pch @@ -7,6 +7,3 @@ #import #import #endif - - -#define kToolIsInstalled @"QSCommandLineToolInstalled" \ No newline at end of file From f395b674fb197f3b5b6505d31f27b559733d5934 Mon Sep 17 00:00:00 2001 From: Rob McBroom Date: Thu, 25 Aug 2011 15:45:20 -0400 Subject: [PATCH 6/7] removing extraneous whitespace --- QSCommandLineToolPrefPane.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/QSCommandLineToolPrefPane.h b/QSCommandLineToolPrefPane.h index c5903ae..0492856 100644 --- a/QSCommandLineToolPrefPane.h +++ b/QSCommandLineToolPrefPane.h @@ -1,9 +1,6 @@ - - #import #import - @interface QSCommandLineToolPrefPane : NSPreferencePane { IBOutlet NSButton *toolInstallButton; IBOutlet NSTextField *toolInstallStatus; From f433c7656543b991c1335d84d5b825e493c59d2c Mon Sep 17 00:00:00 2001 From: Rob McBroom Date: Thu, 25 Aug 2011 15:50:35 -0400 Subject: [PATCH 7/7] removing old Xcode file --- QSCommandLineTool.xcode/alcor.mode1 | 1237 ----------------------- QSCommandLineTool.xcode/project.pbxproj | 578 ----------- 2 files changed, 1815 deletions(-) delete mode 100644 QSCommandLineTool.xcode/alcor.mode1 delete mode 100644 QSCommandLineTool.xcode/project.pbxproj diff --git a/QSCommandLineTool.xcode/alcor.mode1 b/QSCommandLineTool.xcode/alcor.mode1 deleted file mode 100644 index 84ad220..0000000 --- a/QSCommandLineTool.xcode/alcor.mode1 +++ /dev/null @@ -1,1237 +0,0 @@ - - - - - ActivePerspectiveName - Project - AllowedModules - - - BundleLoadPath - - MaxInstances - n - Module - PBXSmartGroupTreeModule - Name - Groups and Files Outline View - - - BundleLoadPath - - MaxInstances - n - Module - PBXNavigatorGroup - Name - Editor - - - BundleLoadPath - - MaxInstances - n - Module - XCTaskListModule - Name - Task List - - - BundleLoadPath - - MaxInstances - n - Module - XCDetailModule - Name - File and Smart Group Detail Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXBuildResultsModule - Name - Detailed Build Results Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXProjectFindModule - Name - Project Batch Find Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXRunSessionModule - Name - Run Log - - - BundleLoadPath - - MaxInstances - n - Module - PBXBookmarksModule - Name - Bookmarks Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXClassBrowserModule - Name - Class Browser - - - BundleLoadPath - - MaxInstances - n - Module - PBXCVSModule - Name - Source Code Control Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXDebugBreakpointsModule - Name - Debug Breakpoints Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCDockableInspector - Name - Inspector - - - BundleLoadPath - - MaxInstances - n - Module - PBXOpenQuicklyModule - Name - Open Quickly Tool - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugSessionModule - Name - Debugger - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugCLIModule - Name - Debug Console - - - Description - DefaultDescriptionKey - DockingSystemVisible - - Extension - mode1 - FavBarConfig - - PBXProjectModuleGUID - 7F0733E208072EA200DAD8D3 - XCBarModuleItemNames - - XCBarModuleItems - - - FirstTimeWindowDisplayed - - Identifier - com.apple.perspectives.project.mode1 - MajorVersion - 31 - MinorVersion - 1 - Name - Default - Notifications - - OpenEditors - - PerspectiveWidths - - -1 - -1 - - Perspectives - - - ChosenToolbarItems - - active-target-popup - active-buildstyle-popup - action - NSToolbarFlexibleSpaceItem - buildOrClean - build-and-runOrDebug - com.apple.ide.PBXToolbarStopButton - get-info - toggle-editor - NSToolbarFlexibleSpaceItem - com.apple.pbx.toolbar.searchfield - - ControllerClassBaseName - - IconName - WindowOfProjectWithEditor - Identifier - perspective.project - IsVertical - - Layout - - - BecomeActive - - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C08E77C0454961000C914BD - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 0259C574FE90428111CA0C5A - 1ED78706FE9D4A0611CA0C5A - 2E58F364FFB232C311CA0CBA - 1C37FBAC04509CD000000102 - 1C37FABC05509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 18 - 16 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 74}, {186, 338}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {203, 356}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 143 346 690 397 0 0 1024 746 - - Module - PBXSmartGroupTreeModule - Proportion - 203pt - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20306471E060097A5F4 - PBXProjectModuleLabel - MyNewFile14.java - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CE0B20406471E060097A5F4 - PBXProjectModuleLabel - MyNewFile14.java - - SplitCount - 1 - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {482, 0}} - RubberWindowFrame - 143 346 690 397 0 0 1024 746 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20506471E060097A5F4 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{0, 5}, {482, 351}} - RubberWindowFrame - 143 346 690 397 0 0 1024 746 - - Module - XCDetailModule - Proportion - 351pt - - - Proportion - 482pt - - - Name - Project - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - XCModuleDock - PBXNavigatorGroup - XCDetailModule - - TableOfContents - - 7F0733E008072EA200DAD8D3 - 1CE0B1FE06471DED0097A5F4 - 7F0733E108072EA200DAD8D3 - 1CE0B20306471E060097A5F4 - 1CE0B20506471E060097A5F4 - - ToolbarConfiguration - xcode.toolbar.config.default - - - ControllerClassBaseName - - IconName - WindowOfProject - Identifier - perspective.morph - IsVertical - 0 - Layout - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C08E77C0454961000C914BD - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 11E0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 29B97314FDCFA39411CA2CEA - 1C37FABC05509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {186, 337}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 1 - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {203, 355}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 373 269 690 397 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 100% - - - Name - Morph - PreferredWidth - 300 - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - - TableOfContents - - 11E0B1FE06471DED0097A5F4 - - ToolbarConfiguration - xcode.toolbar.config.default.short - - - PerspectivesBarVisible - - ShelfIsVisible - - SourceDescription - file at '/System/Library/PrivateFrameworks/DevToolsInterface.framework/Versions/A/Resources/XCPerspectivesSpecificationMode1.xcperspec' - StatusbarIsVisible - - TimeStamp - 0.0 - ToolbarDisplayMode - 1 - ToolbarIsVisible - - ToolbarSizeMode - 1 - Type - Perspectives - UpdateMessage - The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'? - WindowJustification - 5 - WindowOrderList - - 7F07350A08072F7200DAD8D3 - /Volumes/Lore/Forge/Quicksilver/PlugIns/CommandLineTool/QSCommandLineTool.xcode - - WindowString - 143 346 690 397 0 0 1024 746 - WindowTools - - - FirstTimeWindowDisplayed - - Identifier - windowTool.build - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528F0623707200166675 - PBXProjectModuleLabel - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {500, 218}} - RubberWindowFrame - 164 220 500 500 0 0 1024 746 - - Module - PBXNavigatorGroup - Proportion - 218pt - - - BecomeActive - - ContentConfiguration - - PBXBuildLogShowsTranscriptDefaultKey - {{0, 114}, {500, 122}} - PBXProjectModuleGUID - XCMainBuildResultsModuleGUID - PBXProjectModuleLabel - Build - XCBuildResultsTrigger_Collapse - 1021 - XCBuildResultsTrigger_Open - 1011 - - GeometryConfiguration - - Frame - {{0, 223}, {500, 236}} - RubberWindowFrame - 164 220 500 500 0 0 1024 746 - - Module - PBXBuildResultsModule - Proportion - 236pt - - - Proportion - 459pt - - - Name - Build Results - ServiceClasses - - PBXBuildResultsModule - - StatusbarIsVisible - - TableOfContents - - 7F07350A08072F7200DAD8D3 - 7F07350B08072F7200DAD8D3 - 1CD0528F0623707200166675 - XCMainBuildResultsModuleGUID - - ToolbarConfiguration - xcode.toolbar.config.build - WindowString - 164 220 500 500 0 0 1024 746 - WindowToolGUID - 7F07350A08072F7200DAD8D3 - WindowToolIsVisible - - - - Identifier - windowTool.debugger - Layout - - - Dock - - - ContentConfiguration - - Debugger - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {317, 164}} - {{317, 0}, {377, 164}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {694, 164}} - {{0, 164}, {694, 216}} - - - - LauncherConfigVersion - 8 - PBXProjectModuleGUID - 1C162984064C10D400B95A72 - PBXProjectModuleLabel - Debug - GLUTExamples (Underwater) - - GeometryConfiguration - - DebugConsoleDrawerSize - {100, 120} - DebugConsoleVisible - None - DebugConsoleWindowFrame - {{200, 200}, {500, 300}} - DebugSTDIOWindowFrame - {{200, 200}, {500, 300}} - Frame - {{0, 0}, {694, 380}} - RubberWindowFrame - 321 238 694 422 0 0 1440 878 - - Module - PBXDebugSessionModule - Proportion - 100% - - - Proportion - 100% - - - Name - Debugger - ServiceClasses - - PBXDebugSessionModule - - StatusbarIsVisible - 1 - TableOfContents - - 1CD10A99069EF8BA00B06720 - 1C0AD2AB069F1E9B00FABCE6 - 1C162984064C10D400B95A72 - 1C0AD2AC069F1E9B00FABCE6 - - ToolbarConfiguration - xcode.toolbar.config.debug - WindowString - 321 238 694 422 0 0 1440 878 - WindowToolGUID - 1CD10A99069EF8BA00B06720 - WindowToolIsVisible - 0 - - - Identifier - windowTool.find - Layout - - - Dock - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CDD528C0622207200134675 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CD0528D0623707200166675 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {781, 167}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 781pt - - - Proportion - 50% - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528E0623707200166675 - PBXProjectModuleLabel - Project Find - - GeometryConfiguration - - Frame - {{8, 0}, {773, 254}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXProjectFindModule - Proportion - 50% - - - Proportion - 428pt - - - Name - Project Find - ServiceClasses - - PBXProjectFindModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C530D57069F1CE1000CFCEE - 1C530D58069F1CE1000CFCEE - 1C530D59069F1CE1000CFCEE - 1CDD528C0622207200134675 - 1C530D5A069F1CE1000CFCEE - 1CE0B1FE06471DED0097A5F4 - 1CD0528E0623707200166675 - - WindowString - 62 385 781 470 0 0 1440 878 - WindowToolGUID - 1C530D57069F1CE1000CFCEE - WindowToolIsVisible - 0 - - - Identifier - MENUSEPARATOR - - - Identifier - windowTool.debuggerConsole - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAAC065D492600B07095 - PBXProjectModuleLabel - Debugger Console - - GeometryConfiguration - - Frame - {{0, 0}, {440, 358}} - RubberWindowFrame - 650 41 440 400 0 0 1280 1002 - - Module - PBXDebugCLIModule - Proportion - 358pt - - - Proportion - 358pt - - - Name - Debugger Console - ServiceClasses - - PBXDebugCLIModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAAD065D492600B07095 - 1C78EAAE065D492600B07095 - 1C78EAAC065D492600B07095 - - WindowString - 650 41 440 400 0 0 1280 1002 - - - Identifier - windowTool.run - Layout - - - Dock - - - ContentConfiguration - - LauncherConfigVersion - 3 - PBXProjectModuleGUID - 1CD0528B0623707200166675 - PBXProjectModuleLabel - Run - Runner - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {493, 167}} - {{0, 176}, {493, 267}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {405, 443}} - {{414, 0}, {514, 443}} - - - - - GeometryConfiguration - - Frame - {{0, 0}, {460, 159}} - RubberWindowFrame - 316 696 459 200 0 0 1280 1002 - - Module - PBXRunSessionModule - Proportion - 159pt - - - Proportion - 159pt - - - Name - Run Log - ServiceClasses - - PBXRunSessionModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C0AD2B3069F1EA900FABCE6 - 1C0AD2B4069F1EA900FABCE6 - 1CD0528B0623707200166675 - 1C0AD2B5069F1EA900FABCE6 - - ToolbarConfiguration - xcode.toolbar.config.run - WindowString - 316 696 459 200 0 0 1280 1002 - WindowToolGUID - 1C0AD2B3069F1EA900FABCE6 - WindowToolIsVisible - 0 - - - Identifier - windowTool.scm - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAB2065D492600B07095 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1C78EAB3065D492600B07095 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {452, 0}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD052920623707200166675 - PBXProjectModuleLabel - SCM - - GeometryConfiguration - - ConsoleFrame - {{0, 259}, {452, 0}} - Frame - {{0, 7}, {452, 259}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - TableConfiguration - - Status - 30 - FileName - 199 - Path - 197.09500122070312 - - TableFrame - {{0, 0}, {452, 250}} - - Module - PBXCVSModule - Proportion - 262pt - - - Proportion - 266pt - - - Name - SCM - ServiceClasses - - PBXCVSModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAB4065D492600B07095 - 1C78EAB5065D492600B07095 - 1C78EAB2065D492600B07095 - 1CD052920623707200166675 - - ToolbarConfiguration - xcode.toolbar.config.scm - WindowString - 743 379 452 308 0 0 1280 1002 - - - Identifier - windowTool.breakpoints - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD052930623707200166675 - PBXProjectModuleLabel - Breakpoints - - GeometryConfiguration - - BreakpointsTreeTableConfiguration - - enabledColumn - 16 - breakpointColumn - 201.5830078125 - - Frame - {{0, 0}, {240, 195}} - RubberWindowFrame - 342 421 240 216 0 0 1440 878 - - Module - PBXDebugBreakpointsModule - Proportion - 195pt - - - Proportion - 195pt - - - Name - Breakpoints - ServiceClasses - - PBXDebugBreakpointsModule - - StatusbarIsVisible - 0 - TableOfContents - - 1C0AD2AD069F1E9B00FABCE6 - 1C0AD2AE069F1E9B00FABCE6 - 1CD052930623707200166675 - - WindowString - 342 421 240 216 0 0 1440 878 - WindowToolGUID - 1C0AD2AD069F1E9B00FABCE6 - WindowToolIsVisible - 0 - - - Identifier - windowTool.bookmarks - Layout - - - Dock - - - Module - PBXBookmarksModule - Proportion - 100% - - - Proportion - 100% - - - Name - Bookmarks - ServiceClasses - - PBXBookmarksModule - - StatusbarIsVisible - 0 - WindowString - 538 42 401 187 0 0 1280 1002 - - - Identifier - windowTool.classBrowser - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - OptionsSetName - Hierarchy, all classes - PBXProjectModuleGUID - 1CA6456E063B45B4001379D8 - PBXProjectModuleLabel - Class Browser - NSObject - - GeometryConfiguration - - ClassesFrame - {{0, 0}, {374, 96}} - ClassesTreeTableConfiguration - - PBXClassNameColumnIdentifier - 208 - PBXClassBookColumnIdentifier - 22 - - Frame - {{0, 0}, {630, 331}} - MembersFrame - {{0, 105}, {374, 395}} - MembersTreeTableConfiguration - - PBXMemberTypeIconColumnIdentifier - 22 - PBXMemberNameColumnIdentifier - 216 - PBXMemberTypeColumnIdentifier - 97 - PBXMemberBookColumnIdentifier - 22 - - PBXModuleWindowStatusBarHidden2 - 1 - RubberWindowFrame - 385 179 630 352 0 0 1440 878 - - Module - PBXClassBrowserModule - Proportion - 332pt - - - Proportion - 332pt - - - Name - Class Browser - ServiceClasses - - PBXClassBrowserModule - - StatusbarIsVisible - 0 - TableOfContents - - 1C0AD2AF069F1E9B00FABCE6 - 1C0AD2B0069F1E9B00FABCE6 - 1CA6456E063B45B4001379D8 - - ToolbarConfiguration - xcode.toolbar.config.classbrowser - WindowString - 385 179 630 352 0 0 1440 878 - WindowToolGUID - 1C0AD2AF069F1E9B00FABCE6 - WindowToolIsVisible - 0 - - - - diff --git a/QSCommandLineTool.xcode/project.pbxproj b/QSCommandLineTool.xcode/project.pbxproj deleted file mode 100644 index 37fd79a..0000000 --- a/QSCommandLineTool.xcode/project.pbxproj +++ /dev/null @@ -1,578 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 39; - objects = { - 0259C573FE90428111CA0C5A = { - buildSettings = { - }; - buildStyles = ( - 2E58F360FFB2326E11CA0CBA, - 2E58F361FFB2326E11CA0CBA, - ); - hasScannedForEncodings = 1; - isa = PBXProject; - knownRegions = ( - English, - Japanese, - French, - German, - en, - ); - mainGroup = 0259C574FE90428111CA0C5A; - projectDirPath = ""; - targets = ( - 8D1AC9600486D14A00FE50C9, - E1C4F00906B8659500FA8819, - ); - }; - 0259C574FE90428111CA0C5A = { - children = ( - 32DBCF9E0370C38000C91783, - 32DBCF9F0370C38200C91783, - E1127F960695F44F008AE6A3, - 0259C582FE90428111CA0C5A, - 1ED78706FE9D4A0611CA0C5A, - 2E58F364FFB232C311CA0CBA, - ); - isa = PBXGroup; - name = QSCommandLineTool; - refType = 4; - sourceTree = ""; - }; - 0259C582FE90428111CA0C5A = { - children = ( - 7FEF1FFB07D4EE74005BC984, - E1C4F29C06B8B75200FA8819, - E1C4F0CF06B86EF000FA8819, - 8D1AC9730486D14A00FE50C9, - ); - isa = PBXGroup; - name = Resources; - refType = 4; - sourceTree = ""; - }; -//020 -//021 -//022 -//023 -//024 -//1E0 -//1E1 -//1E2 -//1E3 -//1E4 - 1ED78706FE9D4A0611CA0C5A = { - children = ( - 8D1AC9740486D14A00FE50C9, - E1C4F00A06B8659500FA8819, - ); - isa = PBXGroup; - name = Products; - refType = 4; - sourceTree = ""; - }; -//1E0 -//1E1 -//1E2 -//1E3 -//1E4 -//2E0 -//2E1 -//2E2 -//2E3 -//2E4 - 2E58F360FFB2326E11CA0CBA = { - buildSettings = { - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - ZERO_LINK = YES; - }; - isa = PBXBuildStyle; - name = Development; - }; - 2E58F361FFB2326E11CA0CBA = { - buildSettings = { - COPY_PHASE_STRIP = YES; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - ZERO_LINK = NO; - }; - isa = PBXBuildStyle; - name = Deployment; - }; - 2E58F364FFB232C311CA0CBA = { - children = ( - 7F0733E408072EED00DAD8D3, - 7F0733E508072EED00DAD8D3, - 7F0733E608072EED00DAD8D3, - 7F0733E708072EED00DAD8D3, - E1C4F07006B86DBB00FA8819, - E1C4F0B206B86E5F00FA8819, - DD92D38A0106425D02CA0E72, - ); - isa = PBXGroup; - name = Frameworks; - refType = 4; - sourceTree = ""; - }; -//2E0 -//2E1 -//2E2 -//2E3 -//2E4 -//320 -//321 -//322 -//323 -//324 - 32DBCF980370C29C00C91783 = { - fileEncoding = 4; - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - path = QSCommandLineTool_Prefix.pch; - refType = 4; - sourceTree = ""; - }; - 32DBCF9E0370C38000C91783 = { - children = ( - E1EAB047068128A800774DFF, - E1EAB045068128A200774DFF, - E1C4F00006B8655D00FA8819, - E1C4F01B06B867F100FA8819, - E1C4F01C06B867F100FA8819, - ); - isa = PBXGroup; - name = Classes; - refType = 4; - sourceTree = ""; - }; - 32DBCF9F0370C38200C91783 = { - children = ( - 32DBCF980370C29C00C91783, - ); - isa = PBXGroup; - name = "Other Sources"; - path = ""; - refType = 4; - sourceTree = ""; - }; -//320 -//321 -//322 -//323 -//324 -//7F0 -//7F1 -//7F2 -//7F3 -//7F4 - 7F0733E408072EED00DAD8D3 = { - isa = PBXFileReference; - lastKnownFileType = wrapper.framework; - name = QSCore.framework; - path = ../../../Build/QSCore.framework; - refType = 2; - sourceTree = SOURCE_ROOT; - }; - 7F0733E508072EED00DAD8D3 = { - isa = PBXFileReference; - lastKnownFileType = wrapper.framework; - name = QSEffects.framework; - path = ../../../Build/QSEffects.framework; - refType = 2; - sourceTree = SOURCE_ROOT; - }; - 7F0733E608072EED00DAD8D3 = { - isa = PBXFileReference; - lastKnownFileType = wrapper.framework; - name = QSFoundation.framework; - path = ../../../Build/QSFoundation.framework; - refType = 2; - sourceTree = SOURCE_ROOT; - }; - 7F0733E708072EED00DAD8D3 = { - isa = PBXFileReference; - lastKnownFileType = wrapper.framework; - name = QSInterface.framework; - path = ../../../Build/QSInterface.framework; - refType = 2; - sourceTree = SOURCE_ROOT; - }; - 7F0733E808072EED00DAD8D3 = { - fileRef = 7F0733E408072EED00DAD8D3; - isa = PBXBuildFile; - settings = { - }; - }; - 7F0733E908072EED00DAD8D3 = { - fileRef = 7F0733E508072EED00DAD8D3; - isa = PBXBuildFile; - settings = { - }; - }; - 7F0733EA08072EED00DAD8D3 = { - fileRef = 7F0733E608072EED00DAD8D3; - isa = PBXBuildFile; - settings = { - }; - }; - 7F0733EB08072EED00DAD8D3 = { - fileRef = 7F0733E708072EED00DAD8D3; - isa = PBXBuildFile; - settings = { - }; - }; - 7FEF1EB707D4C725005BC984 = { - containerPortal = 0259C573FE90428111CA0C5A; - isa = PBXContainerItemProxy; - proxyType = 1; - remoteGlobalIDString = E1C4F00906B8659500FA8819; - remoteInfo = qs; - }; - 7FEF1EB807D4C725005BC984 = { - isa = PBXTargetDependency; - target = E1C4F00906B8659500FA8819; - targetProxy = 7FEF1EB707D4C725005BC984; - }; - 7FEF1FFB07D4EE74005BC984 = { - fileEncoding = 4; - isa = PBXFileReference; - lastKnownFileType = text; - path = "qs-usage.txt"; - refType = 4; - sourceTree = ""; - }; - 7FEF1FFC07D4EE74005BC984 = { - fileRef = 7FEF1FFB07D4EE74005BC984; - isa = PBXBuildFile; - settings = { - }; - }; -//7F0 -//7F1 -//7F2 -//7F3 -//7F4 -//8D0 -//8D1 -//8D2 -//8D3 -//8D4 - 8D1AC9600486D14A00FE50C9 = { - buildPhases = ( - 8D1AC9660486D14A00FE50C9, - 8D1AC96A0486D14A00FE50C9, - 8D1AC96E0486D14A00FE50C9, - ); - buildRules = ( - ); - buildSettings = { - BUILD_DIR = "$(SYMROOT)/PlugIns/"; - FRAMEWORK_SEARCH_PATHS = "/Volumes/Lore/Forge/Development/Quicksilver/build/Quicksilver.app/Contents/Frameworks /Volumes/Lore/Forge/Build"; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = QSCommandLineTool_Prefix.pch; - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "$(HOME)/Developer/Palettes"; - OTHER_LDFLAGS = "-bundle"; - PRODUCT_NAME = QSCommandLineTool; - WRAPPER_EXTENSION = qsplugin; - }; - dependencies = ( - 7FEF1EB807D4C725005BC984, - ); - isa = PBXNativeTarget; - name = QSCommandLineTool; - productInstallPath = "$(HOME)/Developer/Palettes"; - productName = QSCommandLineTool; - productReference = 8D1AC9740486D14A00FE50C9; - productType = "com.apple.product-type.bundle"; - }; - 8D1AC9660486D14A00FE50C9 = { - buildActionMask = 2147483647; - files = ( - E1C4F01106B865D700FA8819, - E1C4F29D06B8B75200FA8819, - E1C4F0D106B86EF000FA8819, - 7FEF1FFC07D4EE74005BC984, - ); - isa = PBXResourcesBuildPhase; - runOnlyForDeploymentPostprocessing = 0; - }; - 8D1AC96A0486D14A00FE50C9 = { - buildActionMask = 2147483647; - files = ( - E1EAB046068128A200774DFF, - E1C4F01E06B867F100FA8819, - ); - isa = PBXSourcesBuildPhase; - runOnlyForDeploymentPostprocessing = 0; - }; - 8D1AC96E0486D14A00FE50C9 = { - buildActionMask = 2147483647; - files = ( - 8D1AC9700486D14A00FE50C9, - E1C4F07106B86DBB00FA8819, - E1C4F0B306B86E5F00FA8819, - 7F0733E808072EED00DAD8D3, - 7F0733E908072EED00DAD8D3, - 7F0733EA08072EED00DAD8D3, - 7F0733EB08072EED00DAD8D3, - ); - isa = PBXFrameworksBuildPhase; - runOnlyForDeploymentPostprocessing = 0; - }; - 8D1AC9700486D14A00FE50C9 = { - fileRef = DD92D38A0106425D02CA0E72; - isa = PBXBuildFile; - settings = { - }; - }; - 8D1AC9730486D14A00FE50C9 = { - fileEncoding = 4; - isa = PBXFileReference; - lastKnownFileType = text.plist; - path = Info.plist; - refType = 4; - sourceTree = ""; - }; - 8D1AC9740486D14A00FE50C9 = { - explicitFileType = wrapper.cfbundle; - includeInIndex = 0; - isa = PBXFileReference; - path = QSCommandLineTool.qsplugin; - refType = 3; - sourceTree = BUILT_PRODUCTS_DIR; - }; -//8D0 -//8D1 -//8D2 -//8D3 -//8D4 -//DD0 -//DD1 -//DD2 -//DD3 -//DD4 - DD92D38A0106425D02CA0E72 = { - isa = PBXFileReference; - lastKnownFileType = wrapper.framework; - name = Cocoa.framework; - path = /System/Library/Frameworks/Cocoa.framework; - refType = 0; - sourceTree = ""; - }; -//DD0 -//DD1 -//DD2 -//DD3 -//DD4 -//E10 -//E11 -//E12 -//E13 -//E14 - E1127F960695F44F008AE6A3 = { - children = ( - ); - isa = PBXGroup; - name = Templates; - path = ""; - refType = 4; - sourceTree = ""; - }; - E1C4F00006B8655D00FA8819 = { - fileEncoding = 30; - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.objc; - path = qs.m; - refType = 4; - sourceTree = ""; - }; - E1C4F00706B8659500FA8819 = { - buildActionMask = 2147483647; - files = ( - E1C4F01006B865C600FA8819, - ); - isa = PBXSourcesBuildPhase; - runOnlyForDeploymentPostprocessing = 0; - }; - E1C4F00806B8659500FA8819 = { - buildActionMask = 2147483647; - files = ( - E1C4F0B406B86E8200FA8819, - ); - isa = PBXFrameworksBuildPhase; - runOnlyForDeploymentPostprocessing = 0; - }; - E1C4F00906B8659500FA8819 = { - buildPhases = ( - E1C4F00706B8659500FA8819, - E1C4F00806B8659500FA8819, - ); - buildRules = ( - ); - buildSettings = { - BUILD_DIR = "$(SYMROOT)/PlugIns/"; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/AppKit.framework/Headers/AppKit.h"; - INSTALL_PATH = /usr/local/bin; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = "-framework Foundation -framework AppKit"; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = qs; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - ); - isa = PBXNativeTarget; - name = qs; - productName = qs; - productReference = E1C4F00A06B8659500FA8819; - productType = "com.apple.product-type.tool"; - }; - E1C4F00A06B8659500FA8819 = { - explicitFileType = "compiled.mach-o.executable"; - includeInIndex = 0; - isa = PBXFileReference; - path = qs; - refType = 3; - sourceTree = BUILT_PRODUCTS_DIR; - }; - E1C4F01006B865C600FA8819 = { - fileRef = E1C4F00006B8655D00FA8819; - isa = PBXBuildFile; - settings = { - }; - }; - E1C4F01106B865D700FA8819 = { - fileRef = E1C4F00A06B8659500FA8819; - isa = PBXBuildFile; - settings = { - }; - }; - E1C4F01B06B867F100FA8819 = { - fileEncoding = 30; - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - path = QSCommandLineToolPrefPane.h; - refType = 4; - sourceTree = ""; - }; - E1C4F01C06B867F100FA8819 = { - fileEncoding = 30; - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.objc; - path = QSCommandLineToolPrefPane.m; - refType = 4; - sourceTree = ""; - }; - E1C4F01E06B867F100FA8819 = { - fileRef = E1C4F01C06B867F100FA8819; - isa = PBXBuildFile; - settings = { - }; - }; - E1C4F07006B86DBB00FA8819 = { - isa = PBXFileReference; - lastKnownFileType = wrapper.framework; - name = Security.framework; - path = /System/Library/Frameworks/Security.framework; - refType = 0; - sourceTree = ""; - }; - E1C4F07106B86DBB00FA8819 = { - fileRef = E1C4F07006B86DBB00FA8819; - isa = PBXBuildFile; - settings = { - }; - }; - E1C4F0B206B86E5F00FA8819 = { - isa = PBXFileReference; - lastKnownFileType = wrapper.framework; - name = PreferencePanes.framework; - path = /System/Library/Frameworks/PreferencePanes.framework; - refType = 0; - sourceTree = ""; - }; - E1C4F0B306B86E5F00FA8819 = { - fileRef = E1C4F0B206B86E5F00FA8819; - isa = PBXBuildFile; - settings = { - }; - }; - E1C4F0B406B86E8200FA8819 = { - fileRef = DD92D38A0106425D02CA0E72; - isa = PBXBuildFile; - settings = { - }; - }; - E1C4F0CF06B86EF000FA8819 = { - children = ( - E1C4F0D006B86EF000FA8819, - ); - isa = PBXVariantGroup; - name = Localizable.strings; - path = ""; - refType = 4; - sourceTree = ""; - }; - E1C4F0D006B86EF000FA8819 = { - fileEncoding = 30; - isa = PBXFileReference; - lastKnownFileType = text.plist.strings; - name = en; - path = en.lproj/Localizable.strings; - refType = 4; - sourceTree = ""; - }; - E1C4F0D106B86EF000FA8819 = { - fileRef = E1C4F0CF06B86EF000FA8819; - isa = PBXBuildFile; - settings = { - }; - }; - E1C4F29C06B8B75200FA8819 = { - isa = PBXFileReference; - lastKnownFileType = wrapper.nib; - path = QSCommandLineToolPrefPane.nib; - refType = 4; - sourceTree = ""; - }; - E1C4F29D06B8B75200FA8819 = { - fileRef = E1C4F29C06B8B75200FA8819; - isa = PBXBuildFile; - settings = { - }; - }; - E1EAB045068128A200774DFF = { - fileEncoding = 30; - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.objc; - path = QSCommandLineTool.m; - refType = 4; - sourceTree = ""; - }; - E1EAB046068128A200774DFF = { - fileRef = E1EAB045068128A200774DFF; - isa = PBXBuildFile; - settings = { - }; - }; - E1EAB047068128A800774DFF = { - fileEncoding = 30; - isa = PBXFileReference; - lastKnownFileType = sourcecode.c.h; - path = QSCommandLineTool.h; - refType = 4; - sourceTree = ""; - }; - }; - rootObject = 0259C573FE90428111CA0C5A; -}