Log 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.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (130607 => 130608)
--- trunk/Source/WebKit2/ChangeLog 2012-10-07 19:20:30 UTC (rev 130607)
+++ trunk/Source/WebKit2/ChangeLog 2012-10-07 19:33:49 UTC (rev 130608)
@@ -1,3 +1,14 @@
+2012-10-07 Dan Bernstein <[email protected]>
+
+ 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.
+
2012-10-06 Dan Bernstein <[email protected]>
WebKit2 part of <rdar://problem/12446507> [mac] WebKit clients cannot change the behavior of text-rendering: auto
Modified: trunk/Source/WebKit2/WebProcessService/Info.plist (130607 => 130608)
--- trunk/Source/WebKit2/WebProcessService/Info.plist 2012-10-07 19:20:30 UTC (rev 130607)
+++ trunk/Source/WebKit2/WebProcessService/Info.plist 2012-10-07 19:33:49 UTC (rev 130608)
@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>CFBundleGetInfoString</key>
+ <string>${BUNDLE_VERSION}, Copyright 2003-2012 Apple Inc.</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
@@ -15,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
- <string>1.0</string>
+ <string>${SHORT_VERSION_STRING}</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>1</string>
+ <string>${BUNDLE_VERSION}</string>
<key>LSFileQuarantineEnabled</key>
<true/>
<key>NSPrincipalClass</key>
Modified: trunk/Source/WebKit2/WebProcessServiceForWebKitDevelopment/Info.plist (130607 => 130608)
--- trunk/Source/WebKit2/WebProcessServiceForWebKitDevelopment/Info.plist 2012-10-07 19:20:30 UTC (rev 130607)
+++ trunk/Source/WebKit2/WebProcessServiceForWebKitDevelopment/Info.plist 2012-10-07 19:33:49 UTC (rev 130608)
@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>CFBundleGetInfoString</key>
+ <string>${BUNDLE_VERSION}, Copyright 2003-2012 Apple Inc.</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
@@ -15,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
- <string>1.0</string>
+ <string>${SHORT_VERSION_STRING}</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>1</string>
+ <string>${BUNDLE_VERSION}</string>
<key>LSFileQuarantineEnabled</key>
<true/>
<key>NSPrincipalClass</key>
_______________________________________________ webkit-changes mailing list [email protected] http://lists.webkit.org/mailman/listinfo/webkit-changes
