Changeset 225

Show
Ignore:
Timestamp:
01/04/07 10:55:17 (2 years ago)
Author:
gbooker
Message:
  • Added some skeleton functions
  • Made the pref pane universal in deployment configuration
  • Added keys necessary for the pref pane to be installed by double clicking on it.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CPFPerianPrefPaneController.m

    r222 r225  
    22 
    33@implementation CPFPerianPrefPaneController 
     4 
     5- (id)initWithBundle:(NSBundle *)bundle 
     6{ 
     7    if ( ( self = [super initWithBundle:bundle] ) != nil ) { 
     8    } 
     9     
     10    return self; 
     11} 
     12 
     13- (void)mainViewDidLoad 
     14{ 
     15        /* Read prefs here and display */ 
     16} 
     17 
     18- (void)didUnselect 
     19{ 
     20        /* Write prefs here */ 
     21} 
    422 
    523- (IBAction)installUninstall:(id)sender 
  • trunk/Perian.xcodeproj/project.pbxproj

    r224 r225  
    15761576                        isa = XCBuildConfiguration; 
    15771577                        buildSettings = { 
     1578                                ARCHS = ( 
     1579                                        ppc, 
     1580                                        i386, 
     1581                                ); 
    15781582                                COPY_PHASE_STRIP = YES; 
    15791583                                GCC_ENABLE_FIX_AND_CONTINUE = NO; 
  • trunk/PerianPane-Info.plist

    r222 r225  
    2222        <key>CFBundleIconFile</key> 
    2323        <string>Perian_icon</string> 
     24        <key>NSPrefPaneIconFile</key> 
     25        <string>Perian_icon</string> 
    2426        <key>CFBundleIdentifier</key> 
    2527        <string>org.perian.PerianPane</string> 
     
    3234        <key>CFBundleVersion</key> 
    3335        <string>1.0</string> 
     36        <key>CFBundleName</key> 
     37        <string>Perian</string> 
    3438        <key>NSMainNibFile</key> 
    3539        <string>PerianPrefPane</string>