Changeset 100898 in webkit


Ignore:
Timestamp:
Nov 21, 2011 4:14:09 AM (12 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK] Update NEWS and configure.ac for 1.7.2 release
https://bugs.webkit.org/show_bug.cgi?id=72868

Reviewed by Xan Lopez.

.:

  • configure.ac: Bumped version number.

Source/WebKit/gtk:

  • NEWS: Added release notes for 1.7.2.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r100868 r100898  
     12011-11-21  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Update NEWS and configure.ac for 1.7.2 release
     4        https://bugs.webkit.org/show_bug.cgi?id=72868
     5
     6        Reviewed by Xan Lopez.
     7
     8        * configure.ac: Bumped version number.
     9
    1102011-11-19  Kevin Ollivier  <kevino@theolliviers.com>
    211
  • trunk/Source/WebKit/gtk/ChangeLog

    r100874 r100898  
     12011-11-21  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Update NEWS and configure.ac for 1.7.2 release
     4        https://bugs.webkit.org/show_bug.cgi?id=72868
     5
     6        Reviewed by Xan Lopez.
     7
     8        * NEWS: Added release notes for 1.7.2.
     9
    1102011-10-17  Antonio Gomes  <agomes@rim.com>
    211
  • trunk/Source/WebKit/gtk/NEWS

    r98500 r100898  
     1=================
     2WebKitGTK+ 1.7.2
     3=================
     4
     5What's new in WebKitGTK+ 1.7.2?
     6
     7  - Fix process freeze when right-clicking on windowless Flash.
     8  - Performance improvements by avoiding unnecessary clips while
     9    painting.
     10  - Notify errors happening on downloads not started by a web view.
     11  - Allow building with GLib >= 2.31.
     12  - Significant JavaScript performance improvements on x86 and x86-64.
     13  - Fix application cache directory in WebKit2.
     14  - Add initial support for cookies in WebKit2.
     15  - Implement support for downloads in WebKit2.
     16  - Add methods to load HTML and plain text to WebKit2 GTK+ API.
     17  - Add webkit_web_view_get_uri() to WebKit2 GTK+ API.
     18  - Don't show items in option elements with display:none.
     19  - Add webkit_web_view_load_request() to WebKit2 GTK+ API.
     20  - Add support for WebAudio AudioFileReader.
     21  - Port MiniBrowser to use WebKit2 GTK+ API instead of the C API.
     22  - Add more settings to WebKitSettings in WebKit2 GTK+ API: Private
     23    browsing, developer extras, resizable text areas, tabs to links,
     24    caret mode, font settings, default charset.
     25  - Fix windowless plugins drawing in WebKit2.
     26  - Fix memory leak when fullscreening a video.
     27  - Remove visited links from page's page group when clearing back
     28    forward list.
     29  - Switch to a backing store approach for painting WebKitWebView. It
     30    improves scrolling performance.
     31  - Add methods to get/set the settings of a web view to WebKit2 GTK+
     32    API.
     33  - Add webkit_settings_new_with_settings() to WebKit2 GTK+ API.
     34  - Add title property to WebKitWebView in WebKit2 GTK+ API.
     35
    136=================
    237WebKitGTK+ 1.7.1
  • trunk/configure.ac

    r99285 r100898  
    33m4_define([webkit_major_version], [1])
    44m4_define([webkit_minor_version], [7])
    5 m4_define([webkit_micro_version], [1])
     5m4_define([webkit_micro_version], [2])
    66
    77# This is the version we'll be using as part of our User-Agent string
     
    1010# Sourced from Source/WebCore/Configurations/Version.xcconfig
    1111m4_define([webkit_user_agent_major_version], [535])
    12 m4_define([webkit_user_agent_minor_version], [7])
     12m4_define([webkit_user_agent_minor_version], [10])
    1313
    1414AC_INIT([WebKit],[webkit_major_version.webkit_minor_version.webkit_micro_version],[http://bugs.webkit.org/])
     
    3636dnl # Libtool library version, not to confuse with API version
    3737dnl # see http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
    38 LIBWEBKITGTK_VERSION=11:1:11
     38LIBWEBKITGTK_VERSION=11:2:11
    3939AC_SUBST([LIBWEBKITGTK_VERSION])
    4040
Note: See TracChangeset for help on using the changeset viewer.