forked from GNOME/orca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
11379 lines (7522 loc) · 370 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
3.33.91 - 27 August 2019
Web:
* Improve performance with structural navigation amongst large objects.
Also fix performance regression introduced in unstable release.
* Treat headings as paragraphs for the purpose of structural navigation
* Treat push buttons with state has-popup as focus-mode widgets
* Fix chattiness resulting from svg elements with no information
* Don't generate tutorial messages for widgets in document content
* Eliminate some chattiness with Google Drive menus
* Improve presentation of widgets which are destroyed and recreated
while focused
* Improve detection and presentation of content which is exposed to
us incorrectly due to CSS properties
* Ongoing work on Chromium support. Note: ATK support in Chromium is
still a work in progress and not yet ready for end-user testing.
But we're getting close, so stay tuned!
GNOME Shell:
* Eliminate some chattiness with Dash
New and updated translations (THANKS EVERYONE!!!):
ca Catalan Robert Antoni Buj i Gelonch
cs Czech Marek Cernocky
de German Tim Sabsch
en_GB British English Bruce Cowan
eu Basque Asier Sarasua Garmendia
fr French Claude Paroz
gl Galician Fran Diéguez
lt Lithuanian Aurimas Černius
lv Latvian Rūdolfs Mazurs
ne Nepali Pawan Chitrakar
po Polish Piotr Drąg
sl Slovenian Matej Urbančič
sr Serbian Марко Костић
tr Turkish Çağatay Yiğit Şahin
=========
3.33.90 - 2 August 2019
Web:
* Try to include results count during find in page searches
* Fix bugs preventing SayAll on page load from working
* Fix bug in braille presentation of new Firefox location input
* Work around another instance of CSSed text being exposed as one char
per line
* Improve presentation of treegrids
* Reduce chattiness with editable comboboxes and with auto-focused
descendants
* Never treat layout-only-table cells as focus-mode widgets
* Make finding clickables more performant
* Ensure we present final word in element when navigating by word
* Present caret-moved events from mouse clicks even if element hasn't
changed
* Ongoing work on Chromium script. Please note: ATK support in Chromium
needs much work. Until that work has been done, Orca will not be able
to provide access to Chromium. The current support is very much a work
in progress and not yet ready for end-user testing.
Mouse Review:
* Improve overall presentation of units of text under the pointer
* Improve logic filtering out irrelevant mouse movements during review
* Apply non-mousereview cell/row presentation preferences for a
more consistent experience
* Don't present description for mouse review if tooltip presentation
is off
General:
* Add support for Shift Lock
* Add initial support for AtspiText's scrollSubstringTo
* Add fall backs for click-at-point failures
* Also check for "underline:spelling" as indication of spelling error
* Improve response time for mouse input events
* Allow building with gettext ≥ 0.20
New and updated translations (THANKS EVERYONE!!!):
es Spanish Daniel Mustieles
hu Hungarian Attila Hammer
id Indonesian Kukuh Syafaat
pt_BR Brazilian Portuguese Rafael Fontenelle
ro Romanian Florentina Mușat
ru Russian Stas Solovey
sl Slovenian Matej Urbančič
sv Swedish Anders Jonsson
=========
3.33.3 - 18 June 2019
Web:
* Improve presentation of Google Sheets when native accessibility
support is being used rather than live-region-based support
* Add support for in-process ARIA feature for alternative text for
cell indices
* Fix bug in live region support causing some information to not be
presented
* Improve presentation of off-screen content (so that it isn't
spoken as if each word is on its own line)
* Ensure we present newly-focused widget when current widget gets
destroyed
* Fix presentation of description-term and description-value roles
* Fix bug causing basic context information to be missing during
structural navigation
* Improve presentation of Dojo color-chooser buttons
* Speak the landmark type before the landmark name/content rather
than after
* Don't treat two landmarks as being on the same line
* Fix issue resulting in some items being skipped during SayAll
* Ensure we don't filter out links with author-provided names
* Improve likelihood that we'll speak link role for descendant text
* Improve behavior of non-interactive web cells with click handlers
* Ensure we present the newly-focused element after dialog is dismissed
* Explicitly clear text selection when controlling navigation
* Work around another issue in Gecko's broken text implementation
* Ongoing work on Chromium script. Please note: ATK support in Chromium
needs much work. Until that work has been done, Orca will not be able
to provide access to Chromium. The current support is very much a work
in progress and not yet ready for end-user testing.
Mouse Review:
* Fix bug causing us to present the wrong document when multiple
documents are open
General:
* Fix several issues related to presentation of combo boxes
* Separate out voice variants in GUI
* Fix braille traceback when there are no lines to display
* Add marks at end of line for speech
* Fix several "chattiness" issues
* Improve performance searching for objects in accessibility tree
* Improve flat review of table rows
* Ignore window deactivate events if the event is not from the active
window
New and updated translations (THANKS EVERYONE!!!):
el Greek Efstathios Iosifidis
es Spanish Daniel Mustieles
eu Basque Asier Sarasua Garmendia
hu Hungarian Balázs Úr, Attila Hammer
id Indonesian Kukuh Syafaat
nl Dutch Nathan Follens
=========
3.33.1 - 18 April 2019
Web:
* Fix issue navigating to and around multibyte characters
* Fix issue related to our workaround for broken Gecko text
* Improve presentation of nameless links with non-meaningful URL
* Fix bug causing us to get stuck in a nested layout tables when
using table navigation on the non-layout parent
* Don't exit focus mode when navigating among text in a web app
* Only do the work to filter inferred labels if we have to
* Eliminate duplicate presentation of table-row content
* Fix bug in going to the beginning/end of a container via structural
navigation
Speech:
* When we don't have a custom char name, use speech-dispatcher's API
to speak characters so that letters are not presented as words
Qt:
* Ignore events from accelerator labels
LibreOffice:
* Do not announce selection changes from unfocused combo boxes
General:
* Handle the reported number of text selections being -1
* Migrate from intltool to gettext
New and updated translations (THANKS EVERYONE!!!):
da Danish Ask Hjorth Larsen
fi Finnish Jiri Grönroos
fr French Guillaume Bernard
=========
3.32.0 - 13 March 2019
New and updated translations (THANKS EVERYONE!!!):
cs Czech Marek Cernocky
de German Tim Sabsch
=========
3.31.92 - 8 March 2019
General:
* Create generic switcher script and use it for all non-gnome-shell
switchers
* Improve presentation when initially getting into the Compiz and
MATE switchers
New and updated translations (THANKS EVERYONE!!!):
fr French Claude Paroz
hu Hungarian Balázs Úr
it Italian Milo Casagrande
lv Latvian Rūdolfs Mazurs
nl Dutch Nathan Follens
ro Romanian Daniel Șerbănescu
sr Serbian Марко Костић
=========
3.31.91 - 21 February 2019
Web:
* Ensure web contents are scrolled into view during SayAll
* Scroll the current object to the top edge when using structural
navigation
* Prevent extra context being presented in contenteditable elements
* Work around YouTube focus issue when navigating by heading
* Improve presentation of graphical/icon-based push buttons
* Increase the likelihood that inline list items will be presented as
one line
* Attempt to identify and ignore bogus events from background etherpad
* Fix issue presenting text with links when using etherpad in object
mode
* Don't do SayAll for URIs starting with "moz-extension"
* Improve interaction and presentation of focusable trees
LibreOffice:
* Fix presentation of text selection spanning multiple, partial
lines in a list
General:
* Fix hang resulting from building flat review context from objects
claiming a bogus, huge bounding box
* Handle broken accessibility tree when generating labelOrName
New and updated translations (THANKS EVERYONE!!!):
cs Czech Marek Cernocky
da Danish Alan Mortensen
de German Tim Sabsch
gl Galician Fran Diéguez
hu Hungarian Balázs Úr
id Indonesian Kukuh Syafaat
kk Kazakh Baurzhan Muftakhidinov
lt Lithuanian Aurimas Černius
po Polish Piotr Drąg
pt_BR Brazilian Portuguese Rafael Fontenelle
sl Slovenian Matej Urbančič
sv Swedish Anders Jonsson
tr Turkish Sabri Ünal
=========
3.31.4 - 14 January 2019
New Commands:
* Add unbound command to present current object's size and position
* Add an unbound command to switch between layout mode and object mode
Web:
* Ignore page loads for non-active documents
* Fix presentation of focusable text with MathML children
* Eliminate some chattiness with MathML embedded in links and headings
* Improve finding sentence start in contents with embedded objects
* Make toggle buttons and non-focusable buttons reachable via "b"
* Improve consistency in placement of navlist
* Fallback on access key when there is no aria-keyshortcuts value
* Check 'URI' in addition to 'DocURL' when getting URL of document
* Add initial Chromium script. Please note: ATK support in Chromium
needs much work. Until that work has been done, Orca will not be able
to provide access to Chromium. The current support is very much a work
in progress and not yet ready for end-user testing.
LibreOffice:
* Ensure we fall back on native headers when dynamic headers aren't set
Braille:
* Fail initialization if device is not plugged yet
* On initialization error, make sure to clean BrlAPI connection
* Ensure we don't pan beyond the length of the line being displayed
* Make sure the attribute mask is as long as the text string
General:
* Ignore window deactivations we believe are not user-triggered
(Reduces chattiness when using certain window-manager shortcuts)
* Improve performance searching the accessibility tree for needed
information
* Don't clear the cache of non-Gecko windows by default (improves
performance)
* Don't bother checking the mousereview item when mousereview is not
active (improves performance)
* Fix bug in flat review say all causing us to cut off information
* Fall back on rolename when presenting title of nameless frames
* Ensure we use keyval_name when event_string is absent for keyboard
events
New and updated translations (THANKS EVERYONE!!!):
es Spanish Daniel Mustieles
fr French Charles Monzat
sl Slovenian Matej Urbančič
sv Swedish Anders Jonsson
=========
3.31.1 - 19 Octoboer 2018
General:
* Include the selected item count when presenting selection
* Fix double presentation of items in certain lists
* Handle various instances of objects going defunct
* Present expanded state even when state expandable is not
exposed
* Treat expanded events from listboxes and push buttons as
presentable events
* Ignore spurious focus claim from gnome-shell window after
switcher use
* Add handling for objects with role "redundant object"
* Ensure we're not silent when a cell gains focus
* Add initial support for Smuxi (gnome frontend)
* Restore X keyboard layout on orca segfault
* Add support for removing user profiles
Web:
* Improve behavior of page summary when caret context is null
or the document cannot be found
* Handle component interface failures in label inference
* Sanity-check offsets before calling getRangeExtents()
* Make braille presentation of new document web role consistent
with old document frame role
* Ensure we correctly speak the role of edit spin buttons
LibreOffice:
* Work around Writer killing focused cell during row insertion
and deletion
* Don't present ancestors after editing Calc cell
New and updated translations (THANKS EVERYONE!!!):
cs Czech Marek Cernocky
=========
3.30.1 - 19 Octoboer 2018
General:
* Fix presentation of nameless menu items in certain gnome-shell
extensions
* Improve presentation of Pluma spell-check dialog
* Fix bug in sentence echo
* Fix issue with profile names containing XML special characters
Web:
* Fix some chattiness with SayAll in web content
LibreOffice:
* Work around Writer issue preventing presentation of selected text
New and updated translations (THANKS EVERYONE!!!):
nb Norwegian bokmål Kjartan Maraas
ru Russian Stas Solovey
sr Serbian Марко Костић
=========
3.30.0 - 17 September 2018
General:
* Present event for non-showing object if it's focused
* Don't present unselected-cell message for text objects
* Don't speak "no focus" even when there is no accessible application
focused (it annoys users more than it helps them)
* Automatically present details content upon expansion of controlling
widget
* Bump version for availability of simulating modifiers in at-spi
Web:
* Ignore bogus focus event for active window from Gecko
* Don't speak row header role with multiple objects are on the same line
* Only prefer the name of links when it's author-provided
New and updated translations (THANKS EVERYONE!!!):
cs Czech Marek Cernocky
de German Tim Sabsch
hu Hungarian Balázs Úr
pt_BR Brazilian Portuguese Tiago Casal
sk Slovak Peter Vágner
sv Swedish Anders Jonsson
=========
3.29.92 - 3 September 2018
General:
* Fall back on displayed text for labels which lack an accessible name
* Fix regression resulting from presentation of all selected items
* Always treat ROLE_APPLICATION objects as having size
Web:
* Clear cache to work around missing state-changed event
New and updated translations (THANKS EVERYONE!!!):
cs Czech Marek Cernocky
da Danish Ask Hjorth Larsen
de German Tim Sabsch
fr French Claude Paroz
gl Galician Fran Dieguez
hu Hungarian Attila Hammer
id Indonesian Kukuh Syafaat
it Italian Milo Casagrande
lt Lithuanian Aurimas Černius
lv Latvian Rūdolfs Mazurs
po Polish Piotr Drąg
pt_BR Brazilian Portuguese Rafael Fontenelle
ro Romanian Daniel Șerbănescu
sl Slovenian Matej Urbančič
sv Swedish Anders Jonsson
tr Turkish Emin Tufan Çetin
=========
3.29.4 - 30 July 2018
General:
* Announce when all items in a container have been selected
* Rename selected-text command, bind it to a keystroke, and make it work in
spreadsheets and other containers
* Check additional ancestry when trying to find current flat review location
* Limit double-orca caps lock synthesis to within 0.5s
* Minimize looking for unrelated labels in gnome-shell (performance)
* Add brief delay before announcing "no focus"
Terminal:
* Treat terminal insertions which end at the caret as presentable
* Prevent double-echoing of typed characters
LibreOffice:
* Add option to always speak full selected range in spreadsheet
Speech:
* Fix issues in recently-added progress marking and SSML support
New and updated translations (THANKS EVERYONE!!!):
ca Catalan Xavi Ivars
de German Tim Sabsch
es Spanish Daniel Mustieles
=========
3.29.3 - 7 July 2018
Web + Email:
* Stop Orca from descending into widget elements it should not descend
* Fix bug preventing Orca from presenting the current object
* Fix chattiness problem due to creation of bogus window accessibles
* Filter out bogus load events from Firefox extensions
* Correcly update caret position when Page Up/Down used in editable text
* Fix focus mode staying toggled off after leaving context menu
* Don't exit focus mode when navigating to/amongst radio buttons
* Eliminate double-presentation of name when name comes from contents
* Improve MathML presentation
LibreOffice:
* Present Calc cell selection changes
General:
* Fix many bugs and improve performance of Mouse Review
* Handle starting flat review when offset is after final character
* Do a better job of determining the focused object upon launch
* Ensure the expanded state of tree rows is annnounced
* Support synthesizing caps lock for double-orca support
(requires AT-SPI2 2.30 or later)
* Make double-orca presses perform the underlying key action
* Reduce chattiness in icon views
* Ensure buttons with single-character names get spoken
* Fix several issues in Orca's presentation of unrelated labels
* Improve behavior/presentation when current object becomes defunct
* Fall back on described-by relation to get description
* Ignore various bogus events from apps and toolkits
Speech:
* Respect SSML norm
* Add progress marking support
Braille:
* Fix braille updating when backspacing text on long lines
* braille: only set viewport[0] to 0 when the string fits
* Update braille when caret moves in web page due to mouse click
* Support CMD_FWINLTSKIP and CMD_FWINRTSKIP from brltty
New and updated translations (THANKS EVERYONE!!!):
es Spanish Daniel Mustieles
=========
3.28.2 - 28 June 2018
Web + Email:
* Update Orca to handle "document web" role now used in Gecko
General:
* Fix bug causing certain combo boxes to not be presented
Braille:
* Fix braille word wrap being incorrectly enabled
* Fix brlmon regression introduced by 71b63379f
New and updated translations (THANKS EVERYONE!!!):
cs Czech Marek Cernocky
de German Tim Sabsch
=========
3.28.1 - 21 April 2018
Web + Email:
* Fix Orca-triggered focus change in Thunderbird message composition
window
General:
* Handle event floods from Caja and Nautilus more efficiently
Braille:
* Release device when braille is deactivated for some applications
* Fix bogus dots appearing after text
New and updated translations (THANKS EVERYONE!!!):
sv Swedish Anders Jonsson
3.28.0 - 26 March 2018
Web + Email:
* Ensure focus is grabbed on image links when navigating
* Fix bug causing notifications to trigger browse mode
LibreOffice:
* Improve heuristic to identify spellcheck dialog
General:
* Ensure list name is presented for ancestor lists
New and updated translations (THANKS EVERYONE!!!):
cs Czech Marek Černocký
da Danish Alan Mortensen
de German Tim Sabsch
es Spanish Daniel Mustieles
fi Finnish Jiri Grönroos
fr French Claude Paroz
hu Hungarian Gábor Kelemen, Balázs Úr
it Italian Milo Casagrande
lt Lithuanian Aurimas Černius
lv Latvian Rūdolfs Mazurs
nl Dutch Nathan Follens
sl Slovenian Matej Urbančič
sr Serbian Марко Костић
sr@latin Serbian Latin Милош Поповић
sv Swedish Anders Jonsson
tr Turkish Emin Tufan Çetin
zh_CN Chinese (China) Mingcong Bai
=========
3.27.91 - 19 February 2018
Web + Email:
* Improve navigation among, and presentation of, editable elements with
descendants
* Fix bug in which Orca went silent due to text elements failing to
support the accessible text interface
* Eliminate double presentation of visual labels which also provide the
accessible description
* Fix issue causing Orca to skip over certain table content in SayAll
* Improve presentation of displayed text in ARIA dialogs
* Re-enable announcement of page tab switches in Firefox
LibreOffice:
* Work around https://bugs.documentfoundation.org/show_bug.cgi?id=109398
* Eliminate double presentation of redundant frames
General:
* Implement initial support for braille "word wrap"
* Improve presentation of locations in file chooser dialog
* Only present text changes from type-ahead entries if they are focused
* Eliminate some chattiness resulting from redundant focus claims from
Gtk+ tables
* Eliminate double-presentation of spin button value changes
* Fix bug causing nameless, valueless comboboxes to not be presented
* Fix issues in Orca's documentation
* Bump minimum version of AT-SPI2
New and updated translations (THANKS EVERYONE!!!):
de German Tim Sabsch
eo Esperanto Kristjan SCHMIDT
es Spanish Daniel Mustieles
fr French Claude Paroz
gl Galician Fran Dieguez
id Indonesian Kukuh Syafaat
po Polish Piotr Drąg
pt_BR Brazilian Portuguese Enrico Nicoletto
uk Ukrainian Андрій Бандура
=========
3.27.3 - 11 December 2017
Web + Email:
* Fixed several issues in presentation of editable content
* Hack around lack of window:activate events for ARIA dialogs
* Fix presentation of find results in new version of Firefox
* Improve handling of focused elements getting destroyed when activated
* Attempt to identify and navigate around non-navigable embedded documents
General:
* Fix chattiness issue caused by off-screen labels in Gtk+ listboxes
* Eliminate incorrect presentation of previous panel
* Fix issues to pass 'yelp-check validate'
New and updated translations (THANKS EVERYONE!!!):
ca@valencia Catalan (Valencian) Xavi Ivars
cs Czech Marek Černocký
ne Nepali Pawan Chitrakar
no Norwegian bokmål Kjartan Maraas
sv Swedish Anders Jonsson
tr Turkish Muhammet Kara, Olcay Aşcı
=========
3.26.0 - 15 September 2017
Web:
* Add support for aria-errormessage
* Add support for aria-keyshortcuts
* Fix several issues related to presentation of plain text content
LibreOffice:
* Filter out checked event from window which isn't active
* Work around event-ordering issue
General:
* Fix incorrect presentation of old ancestors
* Fix issue related to presentation of status bars
* Remove unneeded try/except around Gdk.notify_startup_complete()
New and updated translations (THANKS EVERYONE!!!):
ca Catalan Jordi Mas
cs Czech Marek Cernocky
da Danish Kenneth Nielsen
de German Christian Kirbach,
Mario Blättermann
fi Finnish Jiri Grönroos
fr French Alain Lojewski
fur Friulian Fabio Tomat
gl Galician Fran Dieguez
hu Hungarian Attila Hammer
it Italian Milo Casagrande
lt Lithuanian Aurimas Černius
lv Latvian Rūdolfs Mazurs
ml Malayalam Anish Sheela
pl Polish Piotr Drąg
pt_BR Brazilian Portuguese Rafael Fontenelle,
Tiago Casal
sl Slovenian Matej Urbančič
sr Serbian Марко Костић
sr@latin Serbian Милош Поповић
sv Swedish Anders Jonsson
tr Turkish Emin Tufan Çetin
=========
3.25.4 - 31 July 2017
Web:
* Add support for DPub ARIA roles
* Add custom localized role names for ARIA feed and figure roles
* Treat articles as "large objects" for the purpose of structural
navigation
* Ensure we present infobar-like widgets with role of alert
* Eliminate double presentation of name of widgets which descend from
label element
* Fix presentation of checkboxes and radio buttons with descendants
when using caret navigation
* Work around Gecko not pruning alt="" images from accessibility tree
LibreOffice:
* Fix bug in presentation of selected item in comboboxes
* Ensure we present focus claims from lists which manage descendants
* Fix performance issue presenting selection changes in spreadsheet
General:
* Work around missing events for popup menus, submenus, and dialogs
* Work around missing state-changed:focused events for Gtk+ apps
* Update locusOfFocus to active window even in the case of broken
hierarchy
* Fix presentation of cells with multiple renderers
* Handle more instances of dead accessible objects and non-responsive
applications
* Eliminate chattiness resulting from events coming from ancestor of
locusOfFocus
* Improve presentation of newly-focused listboxes
* Sanity-check values app provides in response to getTextAtOffset()
* Address Python 3.6 invalid escape sequence deprecation
New and updated translations (THANKS EVERYONE!!!):
es Spanish Daniel Mustieles
fr French Claude Paroz
hu Hungarian Attila Hammer
id Indonesian Andika Triwidada
kk Kazakh Baurzhan Muftakhidinov
lv Latvian Rūdolfs Mazurs
ne Nepali Pawan Chitrakar
=========
3.24.0 - 20 March 2017
Web:
* Fix issue in new command to move to the end of the current container.
* Fix instance in which we were failing to present contenteditable
content.
* Sanity check our attempt to hack around broken text from Gecko.
General:
* Improve presentation of Gtk+ editable combo boxes.
* Attempt to handle children-changed:add event flood from menus.
MATE:
* Filter out focus events from widgets in windows which claim to be
active, but actually are not.
New and updated translations (THANKS EVERYONE!!!):