public
Description: An iPhoto plugin to export photos to Gallery.
Homepage: http://zwily.com/iphoto
Clone URL: git://github.com/zwily/iphototogallery.git
Search Repo:
fix debug build; pre-populate new album settings with info from current 
album
zwily (author)
Thu Jun 07 19:49:15 -0700 2007
zwily (committer)
Sat May 03 09:01:47 -0700 2008
commit  d21516d307aa49d1c913ea812c3cf65dac352f31
tree    f4dd35dfd08802057bc34d16d840fa1548ae38a6
parent  03cd902cf0a855aa5ac4830fea886a7a3aa59650
...
154
155
156
 
157
158
159
...
154
155
156
157
158
159
160
0
@@ -154,6 +154,7 @@
0
 - imageDictionaryAtIndex:(unsigned int)fp12;
0
 - (float)imageAspectRatioAtIndex:(unsigned int)fp12;
0
 - selectedAlbums;
0
+- albumComments;
0
 - albumName;
0
 - albumMusicPath;
0
 - (unsigned int)albumCount;
...
305
306
307
 
 
 
 
 
 
 
 
308
309
 
310
311
 
312
313
314
...
305
306
307
308
309
310
311
312
313
314
315
316
 
317
318
 
319
320
321
322
0
@@ -305,10 +305,18 @@ static int loggingIn;
0
         [nameFormatter release];
0
     }
0
     
0
+ // Get defaults for the Title and Description fields (thx Nathaniel Gray)
0
+ NSString *currAlbum, *currComments = nil;
0
+ currAlbum = [exportManager albumName];
0
+ currAlbum = currAlbum ? currAlbum : @"";
0
+ if ([exportManager respondsToSelector:@selector(albumComments)])
0
+ currComments = [exportManager albumComments];
0
+ currComments = currComments ? currComments : @"";
0
+
0
     [albumSettingsPanel makeFirstResponder:albumSettingsTitleField];
0
- [albumSettingsTitleField setStringValue:@""];
0
+ [albumSettingsTitleField setStringValue:currAlbum];
0
     [albumSettingsNameField setStringValue:@""];
0
- [albumSettingsDescriptionField setString:@""];
0
+ [albumSettingsDescriptionField setString:currComments];
0
     
0
     // populate the "nested in" popup
0
     [albumSettingsNestedInPopup removeAllItems];
...
524
525
526
 
 
 
527
 
 
528
529
530
...
524
525
526
527
528
529
530
531
532
533
534
535
0
@@ -524,7 +524,12 @@
0
       buildSettings = {
0
         CURRENT_PROJECT_VERSION = 2;
0
         FRAMEWORK_SEARCH_PATHS = Frameworks/;
0
+ GCC_OPTIMIZATION_LEVEL = 0;
0
+ GCC_VERSION_i386 = 4.0;
0
+ GCC_VERSION_ppc = 3.3;
0
         MACOSX_DEPLOYMENT_TARGET = 10.2;
0
+ MACOSX_DEPLOYMENT_TARGET_i386 = 10.4;
0
+ MACOSX_DEPLOYMENT_TARGET_ppc = 10.2;
0
         OTHER_LDFLAGS = (
0
           "-weak_framework",
0
           Quartz,

Comments

    No one has commented yet.