Changeset 222 for trunk/Cocoa/F-Script Anywhere/Source
- Timestamp:
- 05/16/06 18:44:19 (18 years ago)
- Location:
- trunk/Cocoa/F-Script Anywhere/Source
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cocoa/F-Script Anywhere/Source/Bundle Loader-Info.plist
r153 r222 22 22 <string>FSAL</string> 23 23 <key>CFBundleVersion</key> 24 <string>1. 2b1</string>24 <string>1.3</string> 25 25 </dict> 26 26 </plist> -
trunk/Cocoa/F-Script Anywhere/Source/Bundle-Info.plist
r153 r222 22 22 <string>FSAB</string> 23 23 <key>CFBundleVersion</key> 24 <string>1. 2b1</string>24 <string>1.3</string> 25 25 </dict> 26 26 </plist> -
trunk/Cocoa/F-Script Anywhere/Source/DeVercruesseProcess.m
r154 r222 111 111 bundleURL = CFURLCreateWithFileSystemPath(NULL, bundleLoc, kCFURLPOSIXPathStyle, NO); 112 112 bundleRef = CFBundleCreate(NULL, bundleURL); 113 CFRelease(bundleURL); 113 114 114 115 if (bundleRef == NULL) { 115 116 BOOL isDir; 116 CFRelease(bundleURL);117 117 if ([[NSFileManager defaultManager] fileExistsAtPath: [self loc] isDirectory: &isDir] && !isDir) 118 118 return [self loc]; -
trunk/Cocoa/F-Script Anywhere/Source/FSAApp.mm
r217 r222 239 239 if (err != noErr) 240 240 [self installationError: err inAppWithPID: pid]; 241 else 242 [appList didPatchProcessID: pid]; 241 243 } 242 244 -
trunk/Cocoa/F-Script Anywhere/Source/FSAAppList.m
r221 r222 132 132 { 133 133 [tableView reloadData]; 134 [self tableView: tableView shouldSelectRow: [tableView selectedRow]];134 // [self tableView: tableView shouldSelectRow: [tableView selectedRow]]; 135 135 } 136 136 … … 143 143 { 144 144 DeVercruesseProcess *app = [self _applicationForPID: pid]; 145 [patchingApps removeObject: app]; 146 [patchedApps addObject: app]; 145 if(app){ 146 [patchingApps removeObject: app]; 147 [patchedApps addObject: app]; 148 } 147 149 [self _processStatusChanged]; 148 150 } … … 170 172 return NO; 171 173 172 if (read(fd, &pefHeader, sizeof(pefHeader)) != sizeof(pefHeader)) 174 if (read(fd, &pefHeader, sizeof(pefHeader)) != sizeof(pefHeader)){ 175 close(fd); 173 176 return NO; 177 } else 178 close(fd); 174 179 175 180 if (pefHeader.tag1 != kPEFTag1 || pefHeader.tag2 != kPEFTag2) … … 229 234 } 230 235 */ 231 232 236 if ( ![app isBackgroundOnly] && 233 237 ( ( [app isCocoa] && ![self appIsPEF: app]) || … … 461 465 id e = [cocoaApps objectEnumerator]; 462 466 while(anApp = [e nextObject]){ 463 if([alwaysApps containsObject:[anApp name]] && ![patchedApps containsObject:anApp]){467 if([alwaysApps containsObject:[anApp name]]){ 464 468 [NSApp installBundleInAppWithPID:[anApp pid]]; 465 469 } -
trunk/Cocoa/F-Script Anywhere/Source/Info-Application.plist
r153 r222 8 8 <string>F-Script Anywhere</string> 9 9 <key>CFBundleGetInfoString</key> 10 <string>F-Script Anywhere 1. 2b1,11 © 2002–0 4Nicholas Riley</string>10 <string>F-Script Anywhere 1.3, 11 © 2002–06 Nicholas Riley</string> 12 12 <key>CFBundleIconFile</key> 13 13 <string>Application icon</string> … … 21 21 <string>APPL</string> 22 22 <key>CFBundleShortVersionString</key> 23 <string>1. 2b1</string>23 <string>1.3</string> 24 24 <key>CFBundleSignature</key> 25 25 <string>FSAn</string> 26 26 <key>CFBundleVersion</key> 27 <string>1. 2b1</string>27 <string>1.3</string> 28 28 <key>NSMainNibFile</key> 29 29 <string>MainMenu</string> -
trunk/Cocoa/F-Script Anywhere/Source/VERSION
r19 r222 1 1. 1.6d11 1.3
Note:
See TracChangeset
for help on using the changeset viewer.