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

Changeset 181647 in webkit


Ignore:
Timestamp:
Mar 17, 2015, 6:08:59 AM (11 years ago)
Author:
Carlos Garcia Campos
Message:

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

.:

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

Source/WebKit2:

  • gtk/NEWS: Add release notes for 2.7.92.
Location:
releases/WebKitGTK/webkit-2.8
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.8/ChangeLog

    r181530 r181647  
     12015-03-17  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.92 release.
     4
     5        * Source/cmake/OptionsGTK.cmake: Bump version numbers.
     6
    172015-03-11  Carlos Garcia Campos  <cgarcia@igalia.com>
    28
  • releases/WebKitGTK/webkit-2.8/Source/WebKit2/ChangeLog

    r181640 r181647  
     12015-03-17  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.92 release.
     4
     5        * gtk/NEWS: Add release notes for 2.7.92.
     6
    172015-03-17  Zan Dobersek  <zdobersek@igalia.com>
    28
  • releases/WebKitGTK/webkit-2.8/Source/WebKit2/gtk/NEWS

    r180932 r181647  
     1=================
     2WebKitGTK+ 2.7.92
     3=================
     4
     5What's new in WebKitGTK+ 2.7.92?
     6
     7  - Add APNG support.
     8  - Disable RC4 support in networking backend.
     9  - Add a configure option to build with OpenGL ES 2.
     10  - Add an option to enable MiniBrowser for non developer builds and always install it.
     11  - Check TLS errors as soon as they are set in the SoupMessage to prevent any data
     12    from being sent to the server in case of invalid certificate.
     13  - Make WebKitWebView always hold a reference on WebKitWebContext now that it's
     14    possible to create new web contexts.
     15  - Fix a crash when entering accelerated compositing mode before the WebView is
     16    realized.
     17  - Fix some transfer annotations used in GObject DOM bindings.
     18  - Fix GObject DOM objects leaked when the web view contents are updated.
     19  - Fix a crash viewing http://www.last.fm/.
     20  - Fix an infinite loop in ARM Linux when parallel GC is enabled it again.
     21  - Fix the build with older versions of GStreamer.
     22  - Fix the build when NEON_INTRINSICS is enabled.
     23  - Fix the build with video enabled but WebAudio disabled.
     24  - Translation updates: Hebrew, Polish.
     25
    126=================
    227WebKitGTK+ 2.7.91
  • releases/WebKitGTK/webkit-2.8/Source/cmake/OptionsGTK.cmake

    r181530 r181647  
    33set(PROJECT_VERSION_MAJOR 2)
    44set(PROJECT_VERSION_MINOR 7)
    5 set(PROJECT_VERSION_MICRO 91)
     5set(PROJECT_VERSION_MICRO 92)
    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 43 1 6)
    12 CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 19 5 1)
     11CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 43 2 6)
     12CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 19 6 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.