Fix a couple of NEWS typos
[platform/upstream/at-spi2-core.git] / NEWS
1 What's new in at-spi2-core 2.3.91:
2
3 * Invalidate states when receiving a focus event (BGO#663992).
4
5 * Fix atspi_table_get_row_column_extents_at_index.
6
7 * Expect a signed int for GetIndexInParent, per the spec.
8
9 * Send key events to listeners assumed to be hung, but don't block.
10
11 * Reduce the method call timeout slightly, so that it will be lower than
12   the keystroke listener timeout.
13
14 * Don't cache data for transient objects.
15
16 * Enable caching on a call to atspi_accessible_set_cache_mask, even if
17   atspi-event_main() hasn't been called.
18
19 What's new in at-spi2-core 2.3.90:
20
21 * At-spi-bus-launcher now emits PropertiesChanged signals from the correct
22   interface.
23
24 * If a keystroke listener does not respond, disable it until it responds.
25   This prevents the desktop from locking up if an AT hangs or is suspended
26   and has a keyboard listener registered.
27
28 * Fix a warning when a NULL object is returned as the detail of an event.
29
30 What's new in at-spi2-core 2.3.5:
31
32 * Fix for BGO#668334: Set correct end offset in atspi_text_get_attributes.
33
34 * Add some type checking on method replies; this should prevent crashes if
35   an application-side AT-SPI implementor returns something unexpected.
36
37 * Call g_settings_sync after updating toolkit-accessibility.
38
39 * Add ScreenReaderEnabled D-Bus property as a proxy for the GSettings key.
40
41 * Fix for BGO#669344: Don't use "restrict" as a variable name, since it can
42   be a keyword.
43
44 What's new in at-spi2-core 2.3.4:
45
46 * Add some dbus message signature checks.
47
48 * Fix a crash if a device listener incorrectly returns a non-bool.
49
50 * Fix for BGO#666870: Keystroke listeners do not work unless an event listener
51   is also registered [also needs updated at-spi2-atk]
52
53 * Fix for BGO#667254: Some atspi-selection_* functions were broken.
54
55 * When a call times out, ping the connection and avoid making subsequent calls
56   until the ping is answered.
57
58 What's new in at-spi2-core 2.3.3:
59
60 * Handle event detail suffixes (such as :system).
61
62 What's new in at-spi2-core 2.3.2:
63
64 * Some documentation improvements.
65
66 What's new in at-spi2-core 2.3.1:
67
68 * Fix return type of org.a11y.Bus.IsEnabled property
69     
70 * Declare void functions as such
71
72 What's new in at-spi2-core 2.2.1:
73
74 * Fix org.a11y.Bus.Enabled property to set its initial state from the
75   GSettings key, if available and an initial property is not given on the
76   command line.
77
78 * Fix for BGO#660947: Gracefully exit when already running, rather than
79   triggering a SIGABRT.
80
81 What's new in at-spi2-core 2.1.92:
82
83 * Fixed a crash when handling event listeners.
84
85 * Fix for BGO#659088: Correctly define ATSPI_MODIFIER_NUMLOCK.
86
87 * Add some defensive checks to prevent problems with defunct objects.
88
89 * BGO#657051: Fix a build error on Solaris.
90
91 * Fix some missing return statements.
92
93 * Some fixes related to deregistering event listeners.
94
95 What's new in at-spi2-core 2.1.91:
96
97 * Fixed a crash when deregistering event listeners.
98
99 * Made DBus IsEnabled property readwrite.
100
101 What's new in at-spi2-core 2.1.90:
102
103 * Fixed a memory leak on DBus errors.
104
105 * Added org.a11y.Status.IsEnabled (currently a read-only property) to the bus
106   launcher.
107
108 * Fix for BGO#656004: atspi_accessible_get_relation_set returns a GArray again.
109
110 * Numerous documentation fixes from Aline Bessa.
111
112 * CLean up device listeners from disconnected applications.
113
114 * Fix for BGO#657585: Do not crash when the bus launcher is unable to open the
115   X display.
116
117 What's new in at-spi2-core 2.1.5:
118
119 * Propertly free DBus error in atspi_accessible_get_process_id.
120
121 * Clean up names of some private functions.
122
123 * Move DBus interface name constants into atspi-constants.h and make public.
124
125 * Remove support for relocated CORBA.
126
127 * Fix for BGO#655127: Avoid Python crash for atspi_accessible_get_relation_set.
128
129 What's new in at-spi2-core 2.1.4:
130
131 * Some API changes to device and event listeners for compatibility with
132   Javascript.
133
134 * Fix for BGO#654314: make role names consistent with atk.
135 * FIx for BGO#654921: Run within Unity.
136
137 * Added some new roles.
138
139 What's new in at-spi2-core 2.1.3:
140
141 * use stored values for AT-SPI role names where possible.
142
143 * Fix for BGO#652596: Use DBus property to set value.
144
145
146 * Fix gtk-doc build cflags/libraries.
147
148 * Set error for some DBus errors where this was not being done.
149
150
151 * Add atspi_accessible_get_process_id (as a short-cut to help debugging).
152
153 * Fix failure to update cache in response to children-changed events in some
154   cases.
155
156 What's new in at-spi2-core 2.1.2:
157
158 * Fix atspi_table_get_caption|summary.
159
160 * Fix introspection for atspi_table_get_row_column_at_index.
161
162 * Copy match rule attributes, rather than just ref counting the hash, for
163   compatibility with pygi.
164
165 * Rework atspi_accessible_set_cache_mask to make it usable.
166
167 * Fix a crash that might happen if a method call times out.
168
169 * Disable caching if atspi_event_main has not been called to run the main loop.
170
171 * Fix atspi_accessible_get_toolkit_version.
172
173 * Add atspi_accessible_get_atspi_version to fetch the version of the AT-SPI
174   specification provided by an application.
175
176 * Cache application-wide toolkit name and version.
177
178 * Allow caching of attributes, but not enabling by default, as there is no
179   event yet (BGO#649771).
180
181 * Make deferred_messages a GQueue rather than a GList for performance reasons.
182
183 * Fix accessibility bus breakage when a user runs an administrative app.
184
185 What's new in at-spi2-core 2.1.1:
186
187 * Fixed a seg fault in at-spi-bus-launcher when ending a session (BGO#648942).
188
189 * Fixed a possible crash when an application is short-lived.
190
191 * FIxed memory leaks in atspi_accessible_get_toolkit_(name|version).
192
193 * AT-SPI will now call g_error if it is unable to find the accessibility bus.
194   This results in aborting but with a somewhat less cryptic error than before.
195
196 What's new in at-spi2-core 2.0.1:
197
198 * Fix a memory leak when sending events.
199
200 * Fix for BGO#648059: get_application should return something w/ROLE_APPLICATION
201     
202 * Fix for BGO#648013: Honor aclocal flags
203
204 * FIx for BGO#648014: Add intltoolize to autogen.sh
205
206 * Fix for BGO#648130: event host_application should return NULL for the desktop
207
208 * Added atspi_accessible_get_id to retrieve the id of an application.
209
210 * Remove doc about non-existent ATSPI_KEYSET_ALL_KEYS.
211
212 What's new in at-spi2-core 2.0.0:
213
214 * Fix for BGO#646403: Use correct signature in at-spi2-registryd for
215   EndSessionResponse.
216
217 * Remove a Makefile reference to dbus-glib.
218
219 What's new in at-spi2-core 1.91.93:
220
221 * Removed dbus-glib-related includes, as they are no longer required.
222
223 What's new in at-spi2-core 1.91.92:
224
225 * Fixed atspi_table_get_column_header and atspi_value_set_current_value.
226
227 * Removed dbus-glib dependency; libatspi now includes a copy of dbus-gmain.c
228   modified to fix a crash (FDO#35115).  Session management code has been
229   ported to gdbus.
230
231 * Fixed a crash when deregistering a keystroke listener.
232
233 * Reworked accessibility bus management (BGO#644851).
234
235 * Fixed a possible sign issue with state sets.
236
237 What's new in at-spi2-core 1.91.91:
238
239 * Changed device event IPC to use uint32 for hw_code and modifiers, to be
240     more consistent with the rest of the API.
241
242 * GetNSelections has an out parameter, not an in.
243
244 * Fix for BGO#643384: - atspi_register_keystroke_listener() should take a
245   bitmask, not AtspiKeyListenerSyncType.
246
247 * Avoid setting enum values to 0x80000000, to prevent a pygi exception.
248     
249 * Fix for BGO#643454: Kill the accessibility bus daemon with the GNOME session
250
251 * Fix for BGO#643110: Do not allow all users to connect to the accessibility bus.
252
253 What's new in at-spi2-core 1.91.90:
254
255 * BGO#641164: Fixed several build errors.
256
257 * Fixed some memory leaks and possible crashes.
258
259 * Fixed atspi_selection_get_selected_child and
260   atspi_selection_get_n_selected_children.
261
262 * Fixed wrong introspection information in some places.
263
264 * BGO#641869: Removed the --enable-relocate option.
265
266 * Avoid returning uninitialized data on error for some methods.
267
268 * Use the GSettings rather than GConf key to test that accessibility is
269   enabled.
270
271 * Change some enums from 16-bit to 32-bit to match spec.
272
273 What's new in at-spi2-core 1.91.6.1:
274
275 * Fixed a crash introduced in 1.91.6.
276
277 * atspi_accessible_get_interfaces will now explicitly return the Accessible
278   interface.
279
280 What's new in at-spi2-core 1.91.6:
281
282 * Some build fixes.
283
284  * Several updated translations.
285
286 * Added a method to check whether an object implements the Hyperlink interface.
287
288 * Fixed a crash in atspi_image_get_image_description.
289
290 * Fixed atspi_editable_text_set_text_contents.
291
292 * More error-handling fixes.
293
294 * Fixed a crash in atspi_event_listener_register_from-callback.
295
296 * Method calls now time out after 1 second.
297
298 * Added setters for component extents/size/position.
299
300 * Added atspi-accessible_set_cache_mask.
301
302 What's new in at-spi2-core 1.91.5:
303
304 * Fixed several memory leaks.
305
306 * Fixed some text methods, methods that return points or rectangles,
307   image locale and description, atspi-accessible_get_description, and some
308   table methods.
309
310 * Added a trailing colon for focus events.
311
312 * Set the error parameter for dbus errors rather than displaying a warning.
313
314 * Fixed the keystroke listener deregister method.
315
316 * The cache is now updated before raising an event, not after, so that event
317   handlers that query for cached values will see the updated data.
318
319 * The registry daemon now returns an error when a caller requests a property
320   that the desktop does not support.
321
322 * Added disposal of objects, and fixed several associated bugs.
323
324 * Added i18n.
325
326 * Fixed mouse events.
327
328 * Libatspi's documentation is now compiled with gtk-doc.
329
330 * Fixed building from a separate build directory.
331
332
333 What's new in at-spi2-core 1.91.4:
334
335 * use peer-to-peer connections when available.
336
337 * Fix uninitialized variable in get_index_in_parent.
338
339 * Add timeout, and support inspecting our own app.
340
341 * Add get_interfaces, and fetch interface and state set over the wire if needed.
342
343 * Avoid adding data for an accessible twice if it is referenced prior to an
344   AddAccessible signal being received.
345
346 * Fix copying of any_data for an event.
347
348 * at-spi-registryd returns ChildCount as a variant, per the DBus spec.
349
350 * Hypertext, hyperlink, and table fixes.
351
352 * Several cache-related fixes.
353
354 * Change some error return values to match AT-SPI-CORBA behavior.
355
356 * Some attribute-related fixes.
357
358 * Renamed 'text' to 'content' in AtspiTextRange to match original IDL.
359
360 What's new in at-spi2-core 1.91.3:
361
362 * Added a C-based AT-side binding (libatspi) which can be used in
363   conjunction with GObject introspection to generate bindings for other
364   languages.  However, this release has many bugs and is more of a development
365   snapshot than a usable release.
366
367 What's new in at-spi2-core 1.91.2:
368
369 * The desktop object now returns ROLE_DESKTOP_FRAME rather than ROLE_UNKNOWN.
370
371
372 What's new in at-spi2-core 1.91.0:
373
374 * --disable-relocate is the default again.
375
376 What's new in at-spi2-core 0.3.92:
377
378 * Do not start accessibility bus if at-spi-corba is enabled.
379
380 What's new in at-spi2-core 0.3.91:
381
382 * Enabled the accessibility bus, so apps should be accessible, for instance,
383 if an application becomes setuid root.
384
385 * Several build fixes.
386
387 * Default to --enable-relocate for now.
388
389 What's new in at-spi2-core 0.3.90:
390
391 * FDO#29427: Registering for mouse:abs now works.
392
393 * Add methods/signals to allow an application to track the events that are
394 being listened to to avoid unnecessarily emitting signals.
395
396 What's new in at-spi2-core 0.3.4:
397
398 * Added GetChildren to the spec.
399
400 What's new in at-spi2-core 0.3.3:
401
402 * Add return values to some functions that were missing them.
403
404 * Make DeviceEventListener notifiers reentrant so that an application can
405 query the desktop object while processing a device event.
406
407 * Fix for FDO#28300: fails to link with pedantic linkers.
408
409 * Fix crash if GetChildAtIndex is called with an invalid index.
410
411 What's new in at-spi2-core 0.3.2:
412
413 * Make sure that disconnecting applications send their root path in the
414 remove applications signal. This was causing applications to not be
415 removed from the desktop properly.
416
417 What's new in at-spi2-core 0.3.1:
418
419 * Set an application's Id when registering it.
420
421 * Disabled relocation by default.