I'd like you to do a code review. Please review the following patch:
----------------------------------------------------------------------
r1633: suzhe | 2010-01-27 15:53:09 +0800
- Bump version to 0.11.2
----------------------------------------------------------------------
=== cmake/Configure.cmake
==================================================================
--- cmake/Configure.cmake (revision 1632)
+++ cmake/Configure.cmake (revision 1633)
@@ -58,7 +58,7 @@
SET(LIBGGADGET_BINARY_VERSION "\"${LIBGGADGET_BINARY_VERSION_UNQUOTED}\"")
SET(GGL_MAJOR_VERSION 0)
SET(GGL_MINOR_VERSION 11)
-SET(GGL_MICRO_VERSION 1)
+SET(GGL_MICRO_VERSION 2)
SET(GGL_VERSION_UNQUOTED "${GGL_MAJOR_VERSION}.${GGL_MINOR_VERSION}.${GGL_MICRO_VERSION}")
SET(GGL_VERSION "\"${GGL_VERSION_UNQUOTED}\"")
SET(GGL_EPOCH "-1.0")
@@ -73,7 +73,7 @@
# This string is used in auto update request. It should be updated to the
# time of a release build is made. Its format is yymmdd-HHMMSS.
-SET(GGL_VERSION_TIMESTAMP "\"090909-000000\"")
+SET(GGL_VERSION_TIMESTAMP "\"100127-000000\"")
# Define the version of Google Desktop Gadget API that this release supports.
SET(GGL_API_MAJOR_VERSION 5)
=== ChangeLog
==================================================================
--- ChangeLog (revision 1632)
+++ ChangeLog (revision 1633)
@@ -1,3 +1,16 @@
+* 0.11.2 - Jan 27th 2009
+ o DBus proxy: Introspect remote object asynchronously.
+ o Rss gadget: Improved compatibility with some websites.
+ o Edit element: Added vAlign property (Only implemented in Gtk version).
+ o Base element: Added focus overlay and tab stop feature.
+ o Gtk host: Added a menu item to add an iGoogle gadget directly.
+ o Fixed compatibility issue with gtk+-2.18.0 or above.
+ o Fixed compatibility issue with xulrunner 1.9.2.
+ o Fixed some compile warnings when compiling with gcc 4.4.x
+ o Fixed some crash issues.
+ o Fixed some issues in soup-xml-http-request for handling zero length POST.
+ o Lots of other bugfixes.
+
* 0.11.1 - Sep 9th 2009
o Many reported issues have been fixed, including: 311, 313, 314, 315, 316,
320, 321, 323, 324, 326, 327, 328, 329, 331, 332, 333, etc.
=== configure.ac
==================================================================
--- configure.ac (revision 1632)
+++ configure.ac (revision 1633)
@@ -21,7 +21,7 @@
# Version
# Bug report address
AC_INIT([google-gadgets-for-linux],
- [0.11.1],
+ [0.11.2],
[google-gadgets...@googlegroups.com])
# Requires autoconf version >= 2.50
@@ -50,7 +50,7 @@
# Version numbers of Google Gadgets for Linux package.
GGL_MAJOR_VERSION=0
GGL_MINOR_VERSION=11
-GGL_MICRO_VERSION=1
+GGL_MICRO_VERSION=2
GGL_VERSION_UNQUOTED="$GGL_MAJOR_VERSION.$GGL_MINOR_VERSION.$GGL_MICRO_VERSION"
GGL_VERSION="\"$GGL_VERSION_UNQUOTED\""
@@ -93,7 +93,7 @@
# This string is used in auto update request. It should be updated to the
# time of a release build is made. Its format is yymmdd-HHMMSS.
-GGL_VERSION_TIMESTAMP="\"090909-000000\""
+GGL_VERSION_TIMESTAMP="\"100127-000000\""
AC_SUBST(GGL_VERSION_TIMESTAMP)
# Define the version of Google Desktop Gadget API that this release supports.
This is a semiautomated message from "svkmail". Complaints or suggestions?
Mail edy...@gmail.com.
2010/1/27 <jame...@gmail.com>: