Changeset 7510


Ignore:
Timestamp:
11/24/06 20:21:57 (5 years ago)
Author:
sam
Message:

Mise à jour BUI MacOS => 3.3

Location:
trunk/Bui_Core
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Bui_Core/resources/launcher/mac/Info.plist

    r6230 r7510  
    88                <string>APPL</string> 
    99                <key>CFBundleIdentifier</key> 
    10                 <string>fr.SCPlatform.##app.name##</string> 
     10                <string>org.scenariplatform.##app.name##</string> 
    1111                <key>CFBundleExecutable</key> 
    1212                <string>launcher</string> 
     
    1616                <true/> 
    1717                <key>CFBundleName</key> 
    18                 <string>##app.name##</string> 
     18                <string>##app.name(fullName)##</string> 
    1919                <key>CFBundleGetInfoString</key> 
    20                 <string>##app.name## version ##app.version##_##app.version.developmentStage##</string> 
     20                <string>##app.name## version ##app.version####app.version.developmentStage##</string> 
    2121                <key>CFBundleShortVersionString</key> 
    2222                <string>##app.version##</string> 
    2323                <key>CFBundleVersion</key> 
    24                 <string>##app.version##_##app.version.developmentStage##</string> 
     24                <string>##app.version####app.version.developmentStage##</string> 
    2525                <key>NSHumanReadableCopyright</key> 
    2626                <string>##app.name## version ##app.version## ##app.copyright##</string> 
  • trunk/Bui_Core/resources/packaging/mac/README.txt

    r5806 r7510  
    1 Installation instructions for ##app.name## 
     1Installation instructions for ##app.name(fullName)## 
    22    
    33 
     
    55No Intel compatible version is available for the moment. 
    66 
    7 Copy ##app.name## to wherever you want (/Applications for example). 
     7Copy ##app.name(fullName)## to wherever you want (/Applications for example). 
    88 
    99Your done!  
  • trunk/Bui_Core/xBuildClient.xml

    r7483 r7510  
    104104                                - app.version(developmentStage) 
    105105                                - pAppName 
     106                                - pAppNameFull 
    106107                                - pAppId 
    107108                                - pDestAppLicencesDir : répertoire ou ont été générés les fichiers de licence 
     
    383384                                        <copy file="${corelauncherdir.mac}/Info.plist" tofile="${destapprootdir}/Info.plist${app.dynFileExtension}" encoding="UTF-8" overwrite="true"/> 
    384385                                        <replaceregexp file="${destapprootdir}/Info.plist${app.dynFileExtension}" match="##app.name##" replace="${app.name}" byline="yes"/> 
     386                                        <replaceregexp file="${destapprootdir}/Info.plist${app.dynFileExtension}" match="##app.name\(fullName\)##" replace="${app.name(fullName)}" byline="yes"/> 
    385387                                        <replaceregexp file="${destapprootdir}/Info.plist${app.dynFileExtension}" match="##app.profile\(name\)##" replace="${app.profile(name)}" byline="yes"/> 
    386388                                        <replaceregexp file="${destapprootdir}/Info.plist${app.dynFileExtension}" match="##app.version##" replace="${app.version}" byline="yes"/> 
     
    638640                                - pDestAppLicencesDir : répertoire ou ont été générés les fichiers de licence 
    639641                                - pAppName 
     642                                - pAppNameFull 
    640643                                - app.publisher 
    641644                                - app(url) 
  • trunk/Bui_Core/xPackaging.mac.xml

    r7508 r7510  
    4848                        A déclarer ds l'appelant: 
    4949                                - app.name; 
     50                                - app.name(fullName); 
    5051                                - app.version; 
    5152                                - app.version(developmentStage); 
     
    6566                <mkdir dir="${package.mac.tmpDir}"/> 
    6667                <!-- packaging --> 
    67                 <mkdir dir="${package.mac.tmpDir}/${app.name}.app"/> 
    68                 <copy todir="${package.mac.tmpDir}/${app.name}.app"> 
     68                <mkdir dir="${package.mac.tmpDir}/${app.name(fullName)}.app"/> 
     69                <copy todir="${package.mac.tmpDir}/${app.name(fullName)}.app"> 
    6970                        <fileset dir="${destmainappmacdir}" includes="**/**"/> 
    7071                </copy> 
     
    7879                        <fileset dir="${coreMacDir}" includes="**/**"/> 
    7980                </copy> 
    80                 <replaceregexp match="##app.name##" replace="${app.name}" flags="g" byline="true"> 
    81                         <fileset dir="${package.mac.tmpDir}" includes="*.txt"/> 
    82                 </replaceregexp> 
     81                        <replaceregexp match="##app.name##" replace="${app.name}" flags="g" byline="true"> 
     82                                <fileset dir="${package.mac.tmpDir}" includes="*.txt"/> 
     83                        </replaceregexp> 
     84                        <replaceregexp match="##app.name\(fullName\)##" replace="${app.name(fullName)}" flags="g" byline="true"> 
     85                                <fileset dir="${package.mac.tmpDir}" includes="*.txt"/> 
     86                        </replaceregexp> 
    8387                <replaceregexp match="##app.server\(port\)##" replace="${app.server(port)}" flags="g" byline="true"> 
    8488                        <fileset dir="${package.mac.tmpDir}" includes="*.txt"/> 
Note: See TracChangeset for help on using the changeset viewer.