Changeset 171850 in webkit


Ignore:
Timestamp:
Jul 31, 2014 7:05:05 AM (10 years ago)
Author:
Carlos Garcia Campos
Message:

Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.

.:

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

Source/WebKit2:

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

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r171846 r171850  
     12014-07-31  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
     4
     5        * Source/cmake/OptionsGTK.cmake: Bump version numbers.
     6
    172014-07-31  Carlos Garcia Campos  <cgarcia@igalia.com>
    28
  • trunk/Source/WebKit2/ChangeLog

    r171848 r171850  
     12014-07-31  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
     4
     5        * gtk/NEWS: Add release notes for 2.5.1.
     6
    172014-07-31  Carlos Garcia Campos  <cgarcia@igalia.com>
    28
  • trunk/Source/WebKit2/gtk/NEWS

    r166638 r171850  
     1=================
     2WebKitGTK+  2.5.1
     3=================
     4
     5What's new in WebKitGTK+ 2.5.1?
     6
     7  - WebKit1 API has been removed.
     8  - Binary version bump to make WebKit1 and WebKit2 parallel installable.
     9  - Switch to CMake build system.
     10  - The WebKitWebView::create signal now receives a WebKitNavigationAction
     11    with information about the navigation action that triggered the signal.
     12  - WebKitWebViewGroup has been removed from the API and WebKitUserContentManager
     13    has been added to handle user stylesheets.
     14  - WebKitCertificateInfo has also been removed. WebKitWebView::load-failed-with-tls-errors
     15    signal now receives a GTlsCertificate and GTlsCertificateFlags, and
     16    webkit_web_context_allow_tls_certificate_for_host() receives a GTlsCertificate.
     17  - The view mode API (webkit_web_view_set_view_mode() and webkit_web_view_get_view_mode())
     18    has been removed, since WebCore doesn't support view source mode anymore.
     19  - The DOM bindings API has been split into stable and unstable parts,
     20    and all deprecated methods have been removed. The stable part will
     21    keep API/ABI backwards compatibility, while the unstable part might change.
     22  - Add API to load arbitrary data optionally giving the encoding and MIME Type.
     23  - Add support for plugins using GTK+ 3.
     24  - Add HighDPI support for non-accelerated compositing contents.
     25  - Use a different user agent string depending on the site.
     26
    127=================
    228WebKitGTK+  2.3.4
  • trunk/Source/cmake/OptionsGTK.cmake

    r171846 r171850  
    33set(PROJECT_VERSION_MAJOR 2)
    44set(PROJECT_VERSION_MINOR 5)
    5 set(PROJECT_VERSION_PATCH 0)
     5set(PROJECT_VERSION_PATCH 1)
    66set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
    77set(WEBKITGTK_API_VERSION 4.0)
     
    187187add_definitions(-DGETTEXT_PACKAGE="WebKit2GTK-${WEBKITGTK_API_VERSION}")
    188188add_definitions(-DDATA_DIR="${CMAKE_INSTALL_DATADIR}")
    189 add_definitions(-DUSER_AGENT_GTK_MAJOR_VERSION=538)
    190 add_definitions(-DUSER_AGENT_GTK_MINOR_VERSION=35)
     189add_definitions(-DUSER_AGENT_GTK_MAJOR_VERSION=601)
     190add_definitions(-DUSER_AGENT_GTK_MINOR_VERSION=1)
    191191add_definitions(-DWEBKITGTK_API_VERSION_STRING="${WEBKITGTK_API_VERSION}")
    192192
Note: See TracChangeset for help on using the changeset viewer.