Release v2.9.2
[platform/upstream/at-spi2-core.git] / NEWS
1 What's new in at-spi2-core 2.9.2:
2
3 * Fix D-Bus introspection for GetActions.
4
5 * Use glib-mkenums to generate enum types, and use these generated types
6   for role and state names, rather than static tables.
7
8 * Annotate filter in atspi_register_device_event_listener with allow-none
9   (BGO#700237).
10
11 * Rename various functions to avoid name collisions (BGO#700243). The old
12   functions are deprecated in favor of the renamed functions and renamed
13   for introspection.
14
15 What's new in at-spi2-core 2.7.91:
16
17 * Add atspi_accessible_get_object_locale (BGO#694368).
18
19 * Start the bus launcher in the initialization phase (BGO#694984).
20
21 What's new in at-spi2-core 2.7.90:
22
23 * Removed a debug print that was accidentally included in 2.7.5.
24
25 What's new in at-spi2-core 2.7.5:
26
27 * Add ATSPI_ROLE_LEVEL_BAR to correspond to the new atk role.
28
29 * Fix various compiler warnings.
30
31 What's new in at-spi2-core 2.7.4:
32
33 * Fix some ref count leaks.
34
35 * Some functions that return accessibles now propagate errors.
36
37 What's new in at-spi2-core 2.7.3:
38
39 * Atspi_accessible_get_index_in_parent no longer returns -1 if the object's
40   parent is not cached (BGO#688057).
41
42 * re-register keystroke listeners if the registry goes away and then returns.
43
44 * Fix atspi_device_listener_new_simple.
45
46 * Fix some compiler warnings.
47
48 * Build: use gobject-introspection's Makefile instead of rolling our own.
49
50 * Fix a crash when parsing events without detail when there is a listener for the event that names a specific detail value.
51
52 * Fix crash when removing hung processes.
53
54 * Fix deregistering of applications.
55
56 * A few documentation fixes.
57
58 What's new in at-spi2-core 2.7.2:
59
60 * Only call an event listener once per event, even if the listener registered
61   for both the event and a superset of the event.
62
63 * Don't distribute dbind-config.h (BGO#688083).
64
65 * Fix gtk-doc for Atspi-Registry (BGO#688224).
66
67 * Some introspection fixes to make vapigen happy (BGO#688223).
68
69 * [registry] Fixed a crash handling DeregisterKeystrokeListener.
70
71 What's new in at-spi2-core 2.7.1:
72
73 * Update the cache in response to role change notifications (BGO#685469).
74
75 * Don't output a warning when a p2p connection isn't available.
76
77 What's new in at-spi2-core 2.5.92:
78
79 * Fix some annotations.
80
81 * Exit, rather than crash, when unable to open an X display (BGO#660407).
82
83 * Fix various memory leaks (BGO#684033).
84
85 What's new in at-spi2-core 2.5.91:
86
87 * Fix build with -fno-common.
88
89 * Add glib-2.0 to requires in at-spi2.pc (BGO#682595)
90
91 What's new in at-spi2-core 2.5.5:
92
93 * Add atspi_action_get_localized_name (BGO#680598).
94
95 * Allow building from out of source directory (BGO#680281)
96
97 What's new in at-spi2-core 2.5.4:
98
99 * Fix a missing return value.
100
101 * Fix a crash when unable to remove a match rule.
102
103 What's new in at-spi2-core 2.5.3:
104
105 * Fix a memory leak (BGO#678738)
106
107 What's new in at-spi2-core 2.5.2:
108
109 * Fix a crash when a call to fetch a hyperlink times out.
110
111 * Fix C++ compilation.
112
113 * Remove a warning that was sometimes logged when a method call timed out.
114
115 * Fix crash in atspi_deregister_keystroke_listener (FDO#50578)
116
117 What's new in at-spi2-core 2.5.1:
118
119 * Add atspi_set_timeout.
120
121 * By default, disable method call timeouts until an application has been on
122 the bus for 15 seconds (work-around for applications with potentially long
123 start-up times). This behavior can be changed with a call to atspi_set_timeout.
124
125 * Fix GError sent when receiving a reply of the wrong type
126     
127 * Fix typo in atspi_document_get_attribute_value
128     
129 * Fix for bug 675004 - object:state-changed:defunct events are emitted as object:state-change:defunct
130
131 What's new in at-spi2-core 2.4.0:
132
133 * Fix typo in at-spi-dbus-bus.desktop.in (BGO#605662).
134
135 What's new in at-spi2-core 2.3.92:
136
137 * Some changes to try to prevent at-spi2-registryd from incorrectly
138   thinking that an AT is hung and passing keys meant for it to the application.
139
140 * Fix crash fetching an error from a reply when retrieving a property.
141
142 What's new in at-spi2-core 2.3.91:
143
144 * Invalidate states when receiving a focus event (BGO#663992).
145
146 * Fix atspi_table_get_row_column_extents_at_index.
147
148 * Expect a signed int for GetIndexInParent, per the spec.
149
150 * Send key events to listeners assumed to be hung, but don't block.
151
152 * Reduce the method call timeout slightly, so that it will be lower than
153   the keystroke listener timeout.
154
155 * Don't cache data for transient objects.
156
157 * Enable caching on a call to atspi_accessible_set_cache_mask, even if
158   atspi-event_main() hasn't been called.
159
160 What's new in at-spi2-core 2.3.90:
161
162 * At-spi-bus-launcher now emits PropertiesChanged signals from the correct
163   interface.
164
165 * If a keystroke listener does not respond, disable it until it responds.
166   This prevents the desktop from locking up if an AT hangs or is suspended
167   and has a keyboard listener registered.
168
169 * Fix a warning when a NULL object is returned as the detail of an event.
170
171 What's new in at-spi2-core 2.3.5:
172
173 * Fix for BGO#668334: Set correct end offset in atspi_text_get_attributes.
174
175 * Add some type checking on method replies; this should prevent crashes if
176   an application-side AT-SPI implementor returns something unexpected.
177
178 * Call g_settings_sync after updating toolkit-accessibility.
179
180 * Add ScreenReaderEnabled D-Bus property as a proxy for the GSettings key.
181
182 * Fix for BGO#669344: Don't use "restrict" as a variable name, since it can
183   be a keyword.
184
185 What's new in at-spi2-core 2.3.4:
186
187 * Add some dbus message signature checks.
188
189 * Fix a crash if a device listener incorrectly returns a non-bool.
190
191 * Fix for BGO#666870: Keystroke listeners do not work unless an event listener
192   is also registered [also needs updated at-spi2-atk]
193
194 * Fix for BGO#667254: Some atspi-selection_* functions were broken.
195
196 * When a call times out, ping the connection and avoid making subsequent calls
197   until the ping is answered.
198
199 What's new in at-spi2-core 2.3.3:
200
201 * Handle event detail suffixes (such as :system).
202
203 What's new in at-spi2-core 2.3.2:
204
205 * Some documentation improvements.
206
207 What's new in at-spi2-core 2.3.1:
208
209 * Fix return type of org.a11y.Bus.IsEnabled property
210     
211 * Declare void functions as such
212
213 What's new in at-spi2-core 2.2.1:
214
215 * Fix org.a11y.Bus.Enabled property to set its initial state from the
216   GSettings key, if available and an initial property is not given on the
217   command line.
218
219 * Fix for BGO#660947: Gracefully exit when already running, rather than
220   triggering a SIGABRT.
221
222 What's new in at-spi2-core 2.1.92:
223
224 * Fixed a crash when handling event listeners.
225
226 * Fix for BGO#659088: Correctly define ATSPI_MODIFIER_NUMLOCK.
227
228 * Add some defensive checks to prevent problems with defunct objects.
229
230 * BGO#657051: Fix a build error on Solaris.
231
232 * Fix some missing return statements.
233
234 * Some fixes related to deregistering event listeners.
235
236 What's new in at-spi2-core 2.1.91:
237
238 * Fixed a crash when deregistering event listeners.
239
240 * Made DBus IsEnabled property readwrite.
241
242 What's new in at-spi2-core 2.1.90:
243
244 * Fixed a memory leak on DBus errors.
245
246 * Added org.a11y.Status.IsEnabled (currently a read-only property) to the bus
247   launcher.
248
249 * Fix for BGO#656004: atspi_accessible_get_relation_set returns a GArray again.
250
251 * Numerous documentation fixes from Aline Bessa.
252
253 * CLean up device listeners from disconnected applications.
254
255 * Fix for BGO#657585: Do not crash when the bus launcher is unable to open the
256   X display.
257
258 What's new in at-spi2-core 2.1.5:
259
260 * Propertly free DBus error in atspi_accessible_get_process_id.
261
262 * Clean up names of some private functions.
263
264 * Move DBus interface name constants into atspi-constants.h and make public.
265
266 * Remove support for relocated CORBA.
267
268 * Fix for BGO#655127: Avoid Python crash for atspi_accessible_get_relation_set.
269
270 What's new in at-spi2-core 2.1.4:
271
272 * Some API changes to device and event listeners for compatibility with
273   Javascript.
274
275 * Fix for BGO#654314: make role names consistent with atk.
276 * FIx for BGO#654921: Run within Unity.
277
278 * Added some new roles.
279
280 What's new in at-spi2-core 2.1.3:
281
282 * use stored values for AT-SPI role names where possible.
283
284 * Fix for BGO#652596: Use DBus property to set value.
285
286
287 * Fix gtk-doc build cflags/libraries.
288
289 * Set error for some DBus errors where this was not being done.
290
291
292 * Add atspi_accessible_get_process_id (as a short-cut to help debugging).
293
294 * Fix failure to update cache in response to children-changed events in some
295   cases.
296
297 What's new in at-spi2-core 2.1.2:
298
299 * Fix atspi_table_get_caption|summary.
300
301 * Fix introspection for atspi_table_get_row_column_at_index.
302
303 * Copy match rule attributes, rather than just ref counting the hash, for
304   compatibility with pygi.
305
306 * Rework atspi_accessible_set_cache_mask to make it usable.
307
308 * Fix a crash that might happen if a method call times out.
309
310 * Disable caching if atspi_event_main has not been called to run the main loop.
311
312 * Fix atspi_accessible_get_toolkit_version.
313
314 * Add atspi_accessible_get_atspi_version to fetch the version of the AT-SPI
315   specification provided by an application.
316
317 * Cache application-wide toolkit name and version.
318
319 * Allow caching of attributes, but not enabling by default, as there is no
320   event yet (BGO#649771).
321
322 * Make deferred_messages a GQueue rather than a GList for performance reasons.
323
324 * Fix accessibility bus breakage when a user runs an administrative app.
325
326 What's new in at-spi2-core 2.1.1:
327
328 * Fixed a seg fault in at-spi-bus-launcher when ending a session (BGO#648942).
329
330 * Fixed a possible crash when an application is short-lived.
331
332 * FIxed memory leaks in atspi_accessible_get_toolkit_(name|version).
333
334 * AT-SPI will now call g_error if it is unable to find the accessibility bus.
335   This results in aborting but with a somewhat less cryptic error than before.
336
337 What's new in at-spi2-core 2.0.1:
338
339 * Fix a memory leak when sending events.
340
341 * Fix for BGO#648059: get_application should return something w/ROLE_APPLICATION
342     
343 * Fix for BGO#648013: Honor aclocal flags
344
345 * FIx for BGO#648014: Add intltoolize to autogen.sh
346
347 * Fix for BGO#648130: event host_application should return NULL for the desktop
348
349 * Added atspi_accessible_get_id to retrieve the id of an application.
350
351 * Remove doc about non-existent ATSPI_KEYSET_ALL_KEYS.
352
353 What's new in at-spi2-core 2.0.0:
354
355 * Fix for BGO#646403: Use correct signature in at-spi2-registryd for
356   EndSessionResponse.
357
358 * Remove a Makefile reference to dbus-glib.
359
360 What's new in at-spi2-core 1.91.93:
361
362 * Removed dbus-glib-related includes, as they are no longer required.
363
364 What's new in at-spi2-core 1.91.92:
365
366 * Fixed atspi_table_get_column_header and atspi_value_set_current_value.
367
368 * Removed dbus-glib dependency; libatspi now includes a copy of dbus-gmain.c
369   modified to fix a crash (FDO#35115).  Session management code has been
370   ported to gdbus.
371
372 * Fixed a crash when deregistering a keystroke listener.
373
374 * Reworked accessibility bus management (BGO#644851).
375
376 * Fixed a possible sign issue with state sets.
377
378 What's new in at-spi2-core 1.91.91:
379
380 * Changed device event IPC to use uint32 for hw_code and modifiers, to be
381     more consistent with the rest of the API.
382
383 * GetNSelections has an out parameter, not an in.
384
385 * Fix for BGO#643384: - atspi_register_keystroke_listener() should take a
386   bitmask, not AtspiKeyListenerSyncType.
387
388 * Avoid setting enum values to 0x80000000, to prevent a pygi exception.
389     
390 * Fix for BGO#643454: Kill the accessibility bus daemon with the GNOME session
391
392 * Fix for BGO#643110: Do not allow all users to connect to the accessibility bus.
393
394 What's new in at-spi2-core 1.91.90:
395
396 * BGO#641164: Fixed several build errors.
397
398 * Fixed some memory leaks and possible crashes.
399
400 * Fixed atspi_selection_get_selected_child and
401   atspi_selection_get_n_selected_children.
402
403 * Fixed wrong introspection information in some places.
404
405 * BGO#641869: Removed the --enable-relocate option.
406
407 * Avoid returning uninitialized data on error for some methods.
408
409 * Use the GSettings rather than GConf key to test that accessibility is
410   enabled.
411
412 * Change some enums from 16-bit to 32-bit to match spec.
413
414 What's new in at-spi2-core 1.91.6.1:
415
416 * Fixed a crash introduced in 1.91.6.
417
418 * atspi_accessible_get_interfaces will now explicitly return the Accessible
419   interface.
420
421 What's new in at-spi2-core 1.91.6:
422
423 * Some build fixes.
424
425  * Several updated translations.
426
427 * Added a method to check whether an object implements the Hyperlink interface.
428
429 * Fixed a crash in atspi_image_get_image_description.
430
431 * Fixed atspi_editable_text_set_text_contents.
432
433 * More error-handling fixes.
434
435 * Fixed a crash in atspi_event_listener_register_from-callback.
436
437 * Method calls now time out after 1 second.
438
439 * Added setters for component extents/size/position.
440
441 * Added atspi-accessible_set_cache_mask.
442
443 What's new in at-spi2-core 1.91.5:
444
445 * Fixed several memory leaks.
446
447 * Fixed some text methods, methods that return points or rectangles,
448   image locale and description, atspi-accessible_get_description, and some
449   table methods.
450
451 * Added a trailing colon for focus events.
452
453 * Set the error parameter for dbus errors rather than displaying a warning.
454
455 * Fixed the keystroke listener deregister method.
456
457 * The cache is now updated before raising an event, not after, so that event
458   handlers that query for cached values will see the updated data.
459
460 * The registry daemon now returns an error when a caller requests a property
461   that the desktop does not support.
462
463 * Added disposal of objects, and fixed several associated bugs.
464
465 * Added i18n.
466
467 * Fixed mouse events.
468
469 * Libatspi's documentation is now compiled with gtk-doc.
470
471 * Fixed building from a separate build directory.
472
473
474 What's new in at-spi2-core 1.91.4:
475
476 * use peer-to-peer connections when available.
477
478 * Fix uninitialized variable in get_index_in_parent.
479
480 * Add timeout, and support inspecting our own app.
481
482 * Add get_interfaces, and fetch interface and state set over the wire if needed.
483
484 * Avoid adding data for an accessible twice if it is referenced prior to an
485   AddAccessible signal being received.
486
487 * Fix copying of any_data for an event.
488
489 * at-spi-registryd returns ChildCount as a variant, per the DBus spec.
490
491 * Hypertext, hyperlink, and table fixes.
492
493 * Several cache-related fixes.
494
495 * Change some error return values to match AT-SPI-CORBA behavior.
496
497 * Some attribute-related fixes.
498
499 * Renamed 'text' to 'content' in AtspiTextRange to match original IDL.
500
501 What's new in at-spi2-core 1.91.3:
502
503 * Added a C-based AT-side binding (libatspi) which can be used in
504   conjunction with GObject introspection to generate bindings for other
505   languages.  However, this release has many bugs and is more of a development
506   snapshot than a usable release.
507
508 What's new in at-spi2-core 1.91.2:
509
510 * The desktop object now returns ROLE_DESKTOP_FRAME rather than ROLE_UNKNOWN.
511
512
513 What's new in at-spi2-core 1.91.0:
514
515 * --disable-relocate is the default again.
516
517 What's new in at-spi2-core 0.3.92:
518
519 * Do not start accessibility bus if at-spi-corba is enabled.
520
521 What's new in at-spi2-core 0.3.91:
522
523 * Enabled the accessibility bus, so apps should be accessible, for instance,
524 if an application becomes setuid root.
525
526 * Several build fixes.
527
528 * Default to --enable-relocate for now.
529
530 What's new in at-spi2-core 0.3.90:
531
532 * FDO#29427: Registering for mouse:abs now works.
533
534 * Add methods/signals to allow an application to track the events that are
535 being listened to to avoid unnecessarily emitting signals.
536
537 What's new in at-spi2-core 0.3.4:
538
539 * Added GetChildren to the spec.
540
541 What's new in at-spi2-core 0.3.3:
542
543 * Add return values to some functions that were missing them.
544
545 * Make DeviceEventListener notifiers reentrant so that an application can
546 query the desktop object while processing a device event.
547
548 * Fix for FDO#28300: fails to link with pedantic linkers.
549
550 * Fix crash if GetChildAtIndex is called with an invalid index.
551
552 What's new in at-spi2-core 0.3.2:
553
554 * Make sure that disconnecting applications send their root path in the
555 remove applications signal. This was causing applications to not be
556 removed from the desktop properly.
557
558 What's new in at-spi2-core 0.3.1:
559
560 * Set an application's Id when registering it.
561
562 * Disabled relocation by default.