Changeset 106793 in webkit


Ignore:
Timestamp:
Feb 6, 2012 2:26:05 AM (12 years ago)
Author:
Carlos Garcia Campos
Message:

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

Reviewed by Philippe Normand.

.:

  • configure.ac: Bumped version number.

Source/WebKit/gtk:

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

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r106772 r106793  
     12012-02-06  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Update NEWS and configure.ac for 1.7.5 release
     4        https://bugs.webkit.org/show_bug.cgi?id=77859
     5
     6        Reviewed by Philippe Normand.
     7
     8        * configure.ac: Bumped version number.
     9
    1102012-02-05  ChangSeok Oh  <shivamidow@gmail.com>
    211
  • trunk/Source/WebKit/gtk/ChangeLog

    r106788 r106793  
     12012-02-06  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Update NEWS and configure.ac for 1.7.5 release
     4        https://bugs.webkit.org/show_bug.cgi?id=77859
     5
     6        Reviewed by Philippe Normand.
     7
     8        * NEWS: Added release notes for 1.7.5.
     9
    1102012-02-06  Carlos Garcia Campos  <cgarcia@igalia.com>
    211
  • trunk/Source/WebKit/gtk/NEWS

    r105059 r106793  
     1=================
     2WebKitGTK+ 1.7.5
     3=================
     4
     5What's new in WebKitGTK+ 1.7.5?
     6
     7  - Add new signals to track resources loading.
     8  - Add --no-timeout command line option to DumpRenderTree.
     9  - Expose accessibility hierarchy in WebKit2 to ATK/AT-SPI based ATs.
     10  - Allow to build using extra jhbuild modulesets.
     11  - Fix emission of ATK text-caret-moved and text-selection-changed
     12    events.
     13  - Update primary clipboard with the current selection in X11
     14    platforms in WebKit2.
     15  - Implement the policy client in WebKit2 GTK+ API.
     16  - Add basic printing support to WebKit2.
     17  - Do not add unnecessary blanks at the end of a line of text to fix.
     18    the line returned by atk_text_get_text_at_offset().
     19  - Make sure input text field is repainted when value is changed.
     20  - Add print-backgrounds setting to WebKit2 GTK+ API.
     21  - Respect the has-backward-stepper and has-forward-stepper
     22    properties when drawing scrollbars.
     23  - WebKit-3.0.gir now includes information about C includes or
     24    exported packages.
     25  - WebKit1 API documentation was not generated when building with
     26    gtk-2.0.
     27  - Make WebKitWebView work inside a GtkOffscreenWindow.
     28  - Implement DownloadClient and add downloads API to WebKit2 GTK+
     29    API.
     30
    131=================
    232WebKitGTK+ 1.7.4
  • trunk/configure.ac

    r106688 r106793  
    33m4_define([webkit_major_version], [1])
    44m4_define([webkit_minor_version], [7])
    5 m4_define([webkit_micro_version], [4])
     5m4_define([webkit_micro_version], [5])
    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], [18])
     12m4_define([webkit_user_agent_minor_version], [20])
    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:4:11
     38LIBWEBKITGTK_VERSION=12:0:12
    3939AC_SUBST([LIBWEBKITGTK_VERSION])
    4040
Note: See TracChangeset for help on using the changeset viewer.