Changeset 176517 in webkit
- Timestamp:
- Nov 24, 2014, 4:45:13 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
ChangeLog (modified) (1 diff)
-
Source/WebKit2/ChangeLog (modified) (1 diff)
-
Source/WebKit2/gtk/NEWS (modified) (1 diff)
-
Source/cmake/OptionsGTK.cmake (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r176442 r176517 1 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com> 2 3 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release. 4 5 * Source/cmake/OptionsGTK.cmake: Bump version numbers. 6 1 7 2014-11-20 Csaba Osztrogonác <ossy@webkit.org> 2 8 -
trunk/Source/WebKit2/ChangeLog
r176514 r176517 1 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com> 2 3 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.2 release. 4 5 * gtk/NEWS: Add release notes for 2.7.2. 6 1 7 2014-11-24 Krzysztof Czech <k.czech@samsung.com> 2 8 -
trunk/Source/WebKit2/gtk/NEWS
r175246 r176517 1 ================= 2 WebKitGTK+ 2.7.2 3 ================= 4 5 What's new in WebKitGTK+ 2.7.2? 6 7 - Fix SSL connection issues with some websites after the POODLE vulnerability fix. 8 - Add API to handle user script messages. 9 - Add context menu API to Web Process Extensions. 10 - Add API to create a WebKitWebContext. 11 - Add API to override the default local storage directory. 12 - Add WebKitWebResource::failed-with-tls-errors signal to notify about load failures 13 due to TLS errors also in sub-resources. 14 - Fix several crashes in accessibility implementation. 15 - Fix XMLHttpRequest with a timeout when using the network process. 16 - Fix XMLHttpRequest with cookies disabled when using the network process. 17 - Fix a crash in the network process when a synchronous load redirects to a new url 18 in a different security origin. 19 - Fix a crash in TextureMapper when video resolution changes. 20 - Correctly report the memory used by the media player to the garbage collector to 21 make sure it’s freed when the video element is removed from the DOM. 22 - Fix documentation of webkit_print_operation_get_page_setup(). 23 1 24 ================= 2 25 WebKitGTK+ 2.7.1 -
trunk/Source/cmake/OptionsGTK.cmake
r175626 r176517 3 3 set(PROJECT_VERSION_MAJOR 2) 4 4 set(PROJECT_VERSION_MINOR 7) 5 set(PROJECT_VERSION_MICRO 1)5 set(PROJECT_VERSION_MICRO 2) 6 6 set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_MICRO}) 7 7 set(WEBKITGTK_API_VERSION 4.0) … … 9 9 # Libtool library version, not to be confused with API version. 10 10 # See http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html 11 CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 39 0 2)12 CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 19 01)11 CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 40 0 3) 12 CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 19 1 1) 13 13 14 14 set(ENABLE_CREDENTIAL_STORAGE ON CACHE BOOL "Whether or not to enable support for credential storage using libsecret.")
Note:
See TracChangeset
for help on using the changeset viewer.