Changeset 130608 in webkit


Ignore:
Timestamp:
Oct 7, 2012 12:33:49 PM (12 years ago)
Author:
mitz@apple.com
Message:

Web process XPC services don't have correct version information in their Info.plist files
https://bugs.webkit.org/show_bug.cgi?id=98619

Reviewed by Anders Carlsson.

  • WebProcessService/Info.plist: Added CFBundleGetInfoString, and changed

CFBundleShortVersionString and CFBundleVersion to report the source version.

  • WebProcessServiceForWebKitDevelopment/Info.plist: Ditto.
Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r130585 r130608  
     12012-10-07  Dan Bernstein  <mitz@apple.com>
     2
     3        Web process XPC services don't have correct version information in their Info.plist files
     4        https://bugs.webkit.org/show_bug.cgi?id=98619
     5
     6        Reviewed by Anders Carlsson.
     7
     8        * WebProcessService/Info.plist: Added CFBundleGetInfoString, and changed
     9        CFBundleShortVersionString and CFBundleVersion to report the source version.
     10        * WebProcessServiceForWebKitDevelopment/Info.plist: Ditto.
     11
    1122012-10-06  Dan Bernstein  <mitz@apple.com>
    213
  • trunk/Source/WebKit2/WebProcessService/Info.plist

    r129957 r130608  
    33<plist version="1.0">
    44<dict>
     5        <key>CFBundleGetInfoString</key>
     6        <string>${BUNDLE_VERSION}, Copyright 2003-2012 Apple Inc.</string>
    57        <key>CFBundleDevelopmentRegion</key>
    68        <string>English</string>
     
    1618        <string>XPC!</string>
    1719        <key>CFBundleShortVersionString</key>
    18         <string>1.0</string>
     20        <string>${SHORT_VERSION_STRING}</string>
    1921        <key>CFBundleSignature</key>
    2022        <string>????</string>
    2123        <key>CFBundleVersion</key>
    22         <string>1</string>
     24        <string>${BUNDLE_VERSION}</string>
    2325        <key>LSFileQuarantineEnabled</key>
    2426        <true/>
  • trunk/Source/WebKit2/WebProcessServiceForWebKitDevelopment/Info.plist

    r129957 r130608  
    33<plist version="1.0">
    44<dict>
     5        <key>CFBundleGetInfoString</key>
     6        <string>${BUNDLE_VERSION}, Copyright 2003-2012 Apple Inc.</string>
    57        <key>CFBundleDevelopmentRegion</key>
    68        <string>English</string>
     
    1618        <string>XPC!</string>
    1719        <key>CFBundleShortVersionString</key>
    18         <string>1.0</string>
     20        <string>${SHORT_VERSION_STRING}</string>
    1921        <key>CFBundleSignature</key>
    2022        <string>????</string>
    2123        <key>CFBundleVersion</key>
    22         <string>1</string>
     24        <string>${BUNDLE_VERSION}</string>
    2325        <key>LSFileQuarantineEnabled</key>
    2426        <true/>
Note: See TracChangeset for help on using the changeset viewer.