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