⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 176517 in webkit


Ignore:
Timestamp:
Nov 24, 2014, 4:45:13 AM (12 years ago)
Author:
Carlos Garcia Campos
Message:

.:
Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.

  • Source/cmake/OptionsGTK.cmake: Bump version numbers.

Source/WebKit2:
Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.2 release.

  • gtk/NEWS: Add release notes for 2.7.2.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r176442 r176517  
     12014-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
    172014-11-20  Csaba Osztrogonác  <ossy@webkit.org>
    28
  • trunk/Source/WebKit2/ChangeLog

    r176514 r176517  
     12014-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
    172014-11-24  Krzysztof Czech  <k.czech@samsung.com>
    28
  • trunk/Source/WebKit2/gtk/NEWS

    r175246 r176517  
     1=================
     2WebKitGTK+  2.7.2
     3=================
     4
     5What'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
    124=================
    225WebKitGTK+  2.7.1
  • trunk/Source/cmake/OptionsGTK.cmake

    r175626 r176517  
    33set(PROJECT_VERSION_MAJOR 2)
    44set(PROJECT_VERSION_MINOR 7)
    5 set(PROJECT_VERSION_MICRO 1)
     5set(PROJECT_VERSION_MICRO 2)
    66set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_MICRO})
    77set(WEBKITGTK_API_VERSION 4.0)
     
    99# Libtool library version, not to be confused with API version.
    1010# 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 0 1)
     11CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 40 0 3)
     12CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 19 1 1)
    1313
    1414set(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.