summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS11
-rw-r--r--at-spi2-atk.doap10
-rw-r--r--atk-adaptor/bridge.c8
-rw-r--r--meson.build2
-rw-r--r--tests/atk_test_util.c2
5 files changed, 17 insertions, 16 deletions
diff --git a/NEWS b/NEWS
index e3f0108..fc70dd3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,14 @@
+What's new in at-spi2-atk 2.34.0:
+
+* Updated doap.
+
+What's new in at-spi2-atk 2.33.92:
+
+* License is now lGPL-2.1+.
+* Several test fixes (thanks to Samuel THibault).
+* Initialize desktop name/path early; needed since we now defer
+ registration.
+
What's new in at-spi2-atk 2.33.91:
* Defer registration until the main loop is entered. This fixes an issue
diff --git a/at-spi2-atk.doap b/at-spi2-atk.doap
index 435b9cc..7a51b8a 100644
--- a/at-spi2-atk.doap
+++ b/at-spi2-atk.doap
@@ -8,19 +8,15 @@
<shortdesc xml:lang="en">GTK+ module for bridging AT-SPI to ATK</shortdesc>
<description xml:lang="en">at-spi2-atk is the library used to bridge ATK to AT-SPI, allowing applications exposing information via ATK to interface with clients that use AT-SPI. This module provides the necessary inter-process communication to allow accessibility-oriented software to operate.</description>
<homepage rdf:resource="http://www.linuxfoundation.org/en/Accessibility/ATK/AT-SPI/AT-SPI_on_D-Bus"/>
+ <license rdf:resource="http://usefulinc.com/doap/licenses/lgpl" />
+ <bug-database rdf:resource="https://gitlab.gnome.org/GNOME/at-spi2-atk/issues/" />
+ <download-page rdf:resource="http://download.gnome.org/sources/at-spi2-atk/" />
<mailing-list rdf:resource="https://lists.linux-foundation.org/mailman/listinfo/accessibility-atspi"/>
<category rdf:resource="http://api.gnome.org/doap-extensions#core" />
<programming-language>C</programming-language>
<maintainer>
<foaf:Person>
- <foaf:name>Mark Doffman</foaf:name>
- <foaf:mbox rdf:resource="mailto:mark.doffman@codethink.co.uk" />
- <gnome:userid>markdoffman</gnome:userid>
- </foaf:Person>
- </maintainer>
- <maintainer>
- <foaf:Person>
<foaf:name>Mike Gorse</foaf:name>
<foaf:mbox rdf:resource="mailto:mgorse@suse.com" />
<gnome:userid>mgorse</gnome:userid>
diff --git a/atk-adaptor/bridge.c b/atk-adaptor/bridge.c
index 2f8e1dd..06407f4 100644
--- a/atk-adaptor/bridge.c
+++ b/atk-adaptor/bridge.c
@@ -413,14 +413,6 @@ _atk_bridge_register_application (gpointer data)
spi_global_app_data->registration_pending = 0;
- g_free (app->desktop_name);
- g_free (app->desktop_path);
-
- /* These will be overridden when we get a reply, but in practice these
- defaults should always be correct */
- app->desktop_name = g_strdup (ATSPI_DBUS_NAME_REGISTRY);
- app->desktop_path = g_strdup (ATSPI_DBUS_PATH_ROOT);
-
message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
ATSPI_DBUS_PATH_ROOT,
ATSPI_DBUS_INTERFACE_SOCKET,
diff --git a/meson.build b/meson.build
index 78db0ab..fd0b516 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('at-spi2-atk', 'c',
- version: '2.33.91',
+ version: '2.34.0',
license: 'LGPLv2.1+',
default_options: [
'buildtype=debugoptimized',
diff --git a/tests/atk_test_util.c b/tests/atk_test_util.c
index 8e88877..3e3c08a 100644
--- a/tests/atk_test_util.c
+++ b/tests/atk_test_util.c
@@ -47,6 +47,7 @@ run_app (const char *file_name)
NULL);
_exit (EXIT_SUCCESS);
}
+ if (child_pid) fprintf(stderr, "child_pid %d\n", child_pid);
}
static AtspiAccessible *try_get_root_obj (AtspiAccessible *obj)
@@ -74,6 +75,7 @@ AtspiAccessible * get_root_obj (const char *file_name)
struct timespec timeout = { .tv_sec = 0, .tv_nsec = 10 * 1000000 };
AtspiAccessible *obj = NULL;
+ fprintf(stderr, "run_app: %s\n", file_name);
run_app (file_name);
obj = atspi_get_desktop (0);