From: Mike Gorse Date: Mon, 3 May 2010 21:16:11 +0000 (-0400) Subject: Add NEWS, disable relocate, and bump version to 0.3.1 X-Git-Tag: AT_SPI2_ATK_2_12_0~390 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git;a=commitdiff_plain;h=b8c55ada2957296d6e3de4ea155788918907b918;hp=a39a67db715dc5ead6a4b53d64dc12ac500fc03e Add NEWS, disable relocate, and bump version to 0.3.1 --- diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..49f20a9 --- /dev/null +++ b/NEWS @@ -0,0 +1,26 @@ +What's new in at-spi2-atk 0.3.1: + +* Added a gconf schema. + +* org.freedesktop.DBus.Properties.GetAll now works rather then crashing. + +* The position, size, and extents of an AtkSocket are now fetched from the +corresponding AtkPlug. + +* An application is no longer registered if its root is an AtkPlug. + +* Fix BGO#538680 - Count ignored in GetMatchesTo + +* Fix FDO#27626 - deadlock when registering an application. + +* Fix a problem with various hyperlink methods. + +* Fix for an AtkPlug sometimes not appearing in the hierarchy. + +* Fix a crash if the registry returns an unexpected message while embedding. + +* Remove libxml2 dependency since libxml2 is no longer used. + +* Fix handling of MATCH_ANY for a stateset in a collection match rule. + +* Disabled relocation by default. diff --git a/configure.ac b/configure.ac index 5128363..06ffe8b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,8 @@ -AC_INIT([at-spi2-atk], [0.1.8], [accessibility-atspi@lists.linux-foundation.org]) +AC_INIT([at-spi2-atk], [0.3.1], [accessibility-atspi@lists.linux-foundation.org]) AC_CONFIG_AUX_DIR(config) AT_SPI_ATK_MAJOR_VERSION=0 -AT_SPI_ATK_MINOR_VERSION=1 +AT_SPI_ATK_MINOR_VERSION=3 AT_SPI_ATK_INTERFACE_AGE=0 AT_SPI_ATK_BINARY_AGE=0 AT_SPI_ATK_VERSION="$AT_SPI_MAJOR_VERSION.$AT_SPI_MINOR_VERSION" @@ -76,7 +76,7 @@ else fi AC_SUBST(X_LIBS) -AC_ARG_ENABLE(relocate, [ --enable-relocate Relocate to coexist with CORBA [default=yes]], enable_relocate="$enableval", enable_relocate=yes) +AC_ARG_ENABLE(relocate, [ --enable-relocate Relocate to coexist with CORBA [default=no]], enable_relocate="$enableval", enable_relocate=no) if test x$enable_relocate = xyes ; then AC_DEFINE(RELOCATE, , [Relocate to coexist with CORBA]) fi