diff options
author | billh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c> | 2002-01-11 21:06:22 +0000 |
---|---|---|
committer | billh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c> | 2002-01-11 21:06:22 +0000 |
commit | da45119a1fe75f232d66f83c180968c01dc64f43 (patch) | |
tree | daa80b85c17a24c2506d3c305ff1d9fe4b06fb69 | |
parent | 1fb3c4bc6ba863a4dec09c0b1097b9e6c752d766 (diff) | |
download | at-spi2-core-da45119a1fe75f232d66f83c180968c01dc64f43.tar.gz |
Incremented version number for desktop-alpha release.
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@221 e2bd861d-eb25-0410-b326-f6ed22b6b98c
-rw-r--r-- | ChangeLog | 14 | ||||
-rw-r--r-- | README | 8 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | docs/reference/cspi/tmpl/spi_accessible.sgml | 1 | ||||
-rw-r--r-- | test/test-simple.c | 2 |
5 files changed, 21 insertions, 6 deletions
@@ -1,3 +1,12 @@ +2002-01-11 Bill Haneman <bill.haneman@sun.com> + + * configure.in: + Incremented revision for desktop alpha release. + + * README: + Fixed a couple of the more glaring errors (still not + very up-to-date). + 2002-01-11 Michael Meeks <michael@ximian.com> * registryd/deviceeventcontroller.c @@ -106,6 +115,11 @@ 2002-01-11 Bill Haneman <bill.haneman@sun.com> + * configure.in: + Rev the version to 0.5 (the previous tarball was named 0.4, + even though the micro number was 3), so we need to rev upwards + again for beta2/"desktop-alpha" + * test/demo.csh: Checked in a demo script, which requires editing before use! Proceed with caution. @@ -46,7 +46,7 @@ The directories within this package are arranged as follows: central accessibility registry, and the registry executable is built in this directory. - at-bridge : this directory contains code that bridges + atk-bridge : this directory contains code that bridges the at-spi to the GTK+ toolkit, and which is loaded at runtime by GTK+-based Gnome applications. The 'bridge' automatically registers GTK+-2.0 @@ -113,13 +113,13 @@ http://developer.gnome.org/projects/gap/tech-docs/at-spi-docs/book1.html). Though 'simple-at' will work with the test application 'app', a better demonstration of the AT-SPI can be made after installing libspi and libcspi (via 'make install'). If you set the GTK_MODULES -environment variable to "libgail:libat-bridge", any GTK+2.0 +environment variable to "gail:atk-bridge", any GTK+2.0 application run subsequently will register with the at-spi registry, and 'simple-at' will register for and receive focus and buttonpress events from those applications. -At the moment application and at deregistration are broken, so you are -advised to kill the registry daemon if you exit either 'at' or 'app' +At the moment application and at deregistration are not 100% reliable, +so if you get you are advised to kill the registry daemon if you exit either 'at' or 'app' instances, via the 'bonobo-slay' command. You may run as many instances of each application or sample AT client as you like, concurrently - you may find it useful to do so in separate terminal windows. diff --git a/configure.in b/configure.in index fc31d223..4b1fd082 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ AC_INIT(idl/Accessibility.idl) AT_SPI_MAJOR_VERSION=0 AT_SPI_MINOR_VERSION=0 -AT_SPI_MICRO_VERSION=4 +AT_SPI_MICRO_VERSION=5 AT_SPI_INTERFACE_AGE=0 AT_SPI_BINARY_AGE=0 AT_SPI_VERSION="$AT_SPI_MAJOR_VERSION.$AT_SPI_MINOR_VERSION.$AT_SPI_MICRO_VERSION" diff --git a/docs/reference/cspi/tmpl/spi_accessible.sgml b/docs/reference/cspi/tmpl/spi_accessible.sgml index dbadff05..f1778050 100644 --- a/docs/reference/cspi/tmpl/spi_accessible.sgml +++ b/docs/reference/cspi/tmpl/spi_accessible.sgml @@ -328,6 +328,7 @@ Accessible Objects @SPI_ROLE_CALENDAR: @SPI_ROLE_CANVAS: @SPI_ROLE_CHECK_BOX: +@SPI_ROLE_CHECK_MENU_ITEM: @SPI_ROLE_COLOR_CHOOSER: @SPI_ROLE_COLUMN_HEADER: @SPI_ROLE_COMBO_BOX: diff --git a/test/test-simple.c b/test/test-simple.c index 8d1b7bca..9b2d72e2 100644 --- a/test/test-simple.c +++ b/test/test-simple.c @@ -715,7 +715,7 @@ main (int argc, char **argv) test_roles (); test_misc (); test_desktop (); - test_keylisteners (); + test_keylisteners (); win = create_test_window (); |