-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathNEWS
1530 lines (1279 loc) · 32.9 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
==============
version 3.44.1
==============
What's New
==========
- Replace intltool dep with gettext
- Add meson build support
- Drop autotools build
- Add CI
- plugins: Port from imp to importlib
- Drop last occurrence of importing imp
- Drop using deprecated gtk features
- Don't add when cancelling "New Bookmark" dialog
- event_monitor: Port "Clear Selection" button from "stock"
- event_monitor: Fix saving to file
- event_monitor: Fix jumping to object on click
- node: Calculate screen coords for gtk4 apps
- node: More reliably detect the right gtk4 window
- Move retrieval of window stacking order to WindowManager
- Only consider windows in current workspace for "Inspect under mouse"
- WindowInfo: Add stacking order
- WindowInfo: Add info whether on current workspace
- Unify WindowManager implementations further, consider size
- win manager: Add more infos to WindowInfo
- window_manager: Extract helper method to get toolkit name and version
- window_manager: Escape special chars in window title regex
- Wnck: Use frame geometry when client geometry includes CSD
- Support "Inspect under mouse" for Gtk 4 apps
- GNOME: Use gtk and sandboxed app ID to retrieve app icon
- GnomeShellWindowManager: Retrieve mouse pos from Mutter
- GNOME Shell: Add extension and win manager using Mutter win pos
- GNOME Shell: Add info whether on current workspace
- GNOME Shell/Mutter: Use client/frame geometry except for GTK 3
- GNOME Shell/Mutter: Support GNOME 47
- GNOME Shell: Install the GNOME Shell extension
- Add a window manager that retrieves screen coords from KWin
- KWinWindowManager: Support KWin 6 as well
- KWinWindowManager: Don't fail on win title containing quotes
- KWinWindowManager: Get mouse position via KWin API
- KWinWindowManager: Get window stacking order from KWin
- KWin: Use 'console.info' instead of 'print' in KWin script
- KWin 6: Use client/frame geometry instead of buffer geometry except for GTK 3
- Kwin: Drop extra KWin 5 win title suffix right away
- KWin: Retrieve app/window icon via desktop entry
- interface_view: Add help text
- interface_view: Update acc description when it changes
- interface_view: Update help text when it changes
- interface_view: Show infos for Hyperlink iface
- ipython_view: Handle more color-related ANSI escape codes
- ipython_view: Use raw string for regex
- Add project_license tag to AppStream metadata file
New And Updated Translations
============================
- Chinese (China)
- Czech
- Danish
- Georgian
- Hindi
- Hungarian
- Kazakh
- Nepali
- Russian
- Hebrew
- Romanian
- Slovenian
- Swedish
- Turkish
- Ukrainian
==============
version 3.42.0
==============
What's New
==========
- ipython_view: Clear text after cursor on Ctrl+K
- ipython_view: Copy selection to clipboard on Ctrl+C (Ctrl+Shift+c)
- ipython_view: Fix off-by-one number in input prompt
- ipython_view: Fix output with ipython3 8.5
- interface_view: Actually update value when it changes
- interface_view: Add TableCell interface
- interface_view: Handle exception when loading icon
- interface_view: Skip updating text that's already up-to-date
- event_monitor: Drop hardcoded color
- node: Drop unused Node#blinkRect and Xlib dependency
- bookmarks: Use available dialog space for bookmark list
- orce accerciser to run in X11 mode as required by libwnck
- Require Gtk >= 3.24
New And Updated Translations
============================
- Georgian
- Turkish
- Indonesian
- Russian
- Ukrainian
- Polish
- Spanish
- Hungarian
- Swedish
- Basque
- Chinese (China)
==============
version 3.40.0
==============
What's New
==========
- ipython_view: Clear output on Ctrl+L
- Fix navigating to a bookmark when "View" -> "Show applications without
children" is disabled (the default)
- Make expanding and selecting the corresponding item in the treeview work when
clicking on a bookmark for the first time
- Fix support for IPython 8
New And Updated Translations
============================
- Catalan
- Danish
- Basque
- Swedish
- Indonesian
- Occitan
- Spanish
- Hebrew
==============
version 3.39.1
==============
What's New
==========
- Make configure check for IPython
- Add timestamps in the Event Monitor
Contributors: Aline Bessa, SteveLee
New And Updated Translations
============================
- Catalan
- Portuguese
- Swedish
- Czech
- Greek
- Slovak
- Portuguese
==============
version 3.38.0
==============
==============
version 3.37.1
==============
What's New
==========
- Remove some unused screenshots
- Fix indentation, buffer reset, autocompletion in IPython console
- Highlight region-changed events from screen reader
Contributors: Andre Klapper, Rok Mandeljc
New And Updated Translations
============================
- German
- Indonesian
- Romanian
- Slovenian
- Spanish
- Ukrainian
==============
version 3.36.0
==============
What's New
==========
Document new python-xlib dependency
Update screenshots
New And Updated Translations
============================
- Brazilian Portuguese
- Catalan
- Czech
- French
- Friulian
- Indonesian
- Italian
- Japanese
- Malay
- Serbian
- Spanish
- Turkish
==============
version 3.34.0
==============
===============
version 3.33.92
===============
What's New
==========
- Add highlighting on text selection
New And Updated Translations
============================
- Hungarian
- Swedish
===============
version 3.33.91
===============
What's New
==========
- Fix autoreconf dependency check
New And Updated Translations
============================
- Nepali
- Polish
- Spanish
===============
version 3.33.4
===============
What's New
==========
- Fix startup warnings
- Fix some accessibleId access cases
- Allow building with gettext ≥ 0.20
- Show event sender
- Bug #10 Fix auto-completion
- On left arrow, go to parent before collapsing it
- Use TreeModelFilter to filter the view
- Let accerciser be selected, but do not refresh or highlight it
- Hide applications without widgets by default
Contributors: Joanmarie Diggs, Ting-Wei Lan, Jan-Marek Glogowski
New And Updated Translations
============================
- Indonesian
===============
version 3.33.3
===============
What's New
==========
- Fix using translations
- Fix some ui labelling
- Fix showing relations
- Use Unicode in translatable strings
- Fix support for IPython 7
- Fix build instructions
- Add expand/collapse node key handling
- Don't crash on empty schema list
- Better handle removed cursor row
- Use fonts which explicitly show U+FFFC
Contributors: Piotr Drąg, Jan-Marek Glogowski
New And Updated Translations
============================
- Polish
- Brazilian Portuguese
- Spanish
- Hungarian
- Polish
===============
version 3.33.2
===============
What's New
==========
- Restore preventing accerciser from exploring itself
- Fix focus computation for ctrl-alt-b
- Show accessible ID
===============
version 3.33.1
===============
What's New
==========
- help: Fix broken Mallard markup for key combinations
- help: Remove unhelpful Preferences screenshot.
- Use autoreconf instead deprecated gnome-autogen
- Bug 787592 - Fix accessing items without a compositor
- Bug #6 - Preferences dialog: fix setting title
- Bug #3 #4 - Fix warnings
Contributors: Andre Klapper, Javier Jardón
New And Updated Translations
============================
- Spanish
- Swedish
===============
version 3.32.0
===============
What's New
==========
- Updated maintainers info
- Stopped using intltool
- desktop: Dropped obsolete X-GNOME-Full-Name fields
- Updated bug reporting links
- help: Replace git.gnome.org by gitlab.gnome.org
Contributors: Jeremy Bicha, Andre Klapper
New And Updated Translations
============================
- Brazilian Portuguese
- Czech
- Danish
- Dutch
- Hungarian
- Indonesian
- Lithuanian
- Polish
- Slovenian
- Spanish
- Swedish
- Turkish
===============
version 3.31.4
===============
What's New
==========
- Updated maintainers info
- Fixed appdata file name
- Fixed duplicate section ID on help
- Marked missing string for translation
- Removed unused images from localized user docs accerciser.png
- Bug776301 - ipython: Update to support IPython version 5
- Python 3.7+ support, async is a keyword
- Replace Bugzilla by Gitlab URL in DOAP file.
Contributors: Jeremy Bicha, Piotr Drąg, Javier Hernández, Miro
Hrončok, Andre Klapper, Kalev Lember, Samuel Thibault
New And Updated Translations
============================
- Belarusian
- Brazilian Portuguese
- Catalan
- Catalan (Valencian)
- Chinese (simplified)
- French
- Greek
- Italian
- Czech
- Danish
- Dutch
- Esperanto
- Friulian
- German
- Hungarian
- Indonesian
- Lithuanian
- Nepali
- Norwegian bokmål
- Polish
- Slovak
- Serbian
- Slovenian
- Spanish
- Turkish
- Swedish
===============
version 3.22.0
===============
What's New
==========
- Added AppData file
- Better fix for #709122
- Fix schema translations
- Provide a symbolic variant of the app icon
- Remove reference to icons/HighContrast/Makefile
- Preference dialog right resizable
- Bringing the rsvg-based highlight feature back
- Allow interface viewer states to fill horizontally
Contributors: Daniel Mustieles, Matthias Clasen, Jakub Steiner, Javier Jardón,
Joseph Scheuhammer, Richard Hughes and Javier Hernández.
New And Updated Translations
============================
- Finnish
- Turkish
- Bosnian
- Czech
- Brazilian
- Spanish
- Norwegian
- Hungarian
- Slovenian
- French
- Swedish
- Chinese
- Slovenian
- Greek
- Lithuanian
- Serbian
- Polish
- Galician
- Korean
- Italian
- Latvian
- Danish
- Russian
- Basque
- Estonian
- Occitan
- Portuguese
- Indonesian
- German
- Slovak
- Bulgarian
- Kazakh
- British English
===============
version 3.14.0
===============
===============
version 3.13.92
===============
What's New
==========
- doap: update URLs
- doap: category apps
- doap: add <programming-language>
- Mark images as not translatable to keep them off translators radar
- Addressing some PyGObject initializer deprecations
- Adding transient windows for bookmarks dialogs
Contributors: Piotr Drąg, Gabor Kelemen, Olav Vitters, Javier Hernández
New And Updated Translations
============================
- Tom Tryfonidis (el)
- Daniel Mustieles (es)
- Inaki Larranaga Murgoitio (eu)
- Anders Jonsson (sv)
- Alexandre Franke (fr)
===============
version 3.12.0
===============
What's New
==========
- User docs: Fixed a few boken/redirected links
Contributors: Andre Klapper
New And Updated Translations
============================
- Alexandre Franke (fr)
- Daniel Mustieles (es)
=================
version 3.11.92.1
=================
What's New
==========
- IPython View: Add backwards compatibility with old stable releases of IPython
New And Updated Translations
============================
- Seong-ho Cho (ko)
===============
version 3.11.92
===============
What's New
==========
- Validate plugin: Make use of metaclasses compatible on python 2.x & 3.x
- Interface Viewer plugin
- Display of states should be wider
- Avoid the misalignement of elements when resizing
- Fix for bug 660971 - Fixing iv plugin's caret offset value
- Fix spinner on Value's section
- Macaroon
- Make Macaroon work in Python 3
- Update get_text call according to latest API
- When recording, put right ATSPI roles in the output sequence
- Quick select: fix inspect accessible under mouse
Contributors:
Joanmarie Diggs, Javier Hernández, Joseph Scheuhammer
New And Updated Translations
============================
- Alexandre Franke (fr)
===============
version 3.11.91
===============
What's New
==========
- ipython: Update to match the latest IPython API
- ipython: seek to 0 after truncating stdout
- ipython: Adding auto-indentation
- Fix for bug 723403 - Save window's properties at 'delete-event' time
===============
version 3.11.90
===============
What's New
==========
- help: fix a typo
- Remove INSTALL from git repo
- Fix for bug 709349 - Make the highlight window a POPUP window
- Fix for bug 709122 - Do not wrap __class__ object from plugins' methods
Contributors:
Michael Catanzaro, Javier Hernández
New And Updated Translations
============================
- Max Orxy (de)
- Yaron Shahrabani (he)
- Christian Kirbach (de)
- Anish A (ml)
- Gil Forcada (ca)
- Yuri Myasoedov (ru)
- Nishio Futoshi (jp)
- Chao-Hsiung Liao (zh_HK & zh_TW)
- Rūdolfs Mazurs (lv)
- Pavol Klačanský (sk)
- Timo Jyrinki (fi)
- Andika Triwidada (id)
- Tong Hui (zh_CN)
- Daniel Mustieles (es)
==============
version 3.8.0
==============
New And Updated Translations
============================
- Victor Ibragimov (tg)
- Seong-ho Cho (ko)
- Piotr Drag: Fix translations of keywords in .desktop files (eu, pt_BR)
- Milo Casagrande (it)
==============
version 3.7.92
==============
What's New
==========
- Fix for bug 695141 - Add high contrast icon
New And Updated Translations
============================
- Marek Černocký (cs)
- Enrico Nicoletto (pt_BR)
- Gheyret Kenji (ug)
- Matej Urbančič (sl)
- Dimitris Spingos (el)
- Aurimas Černius (lt)
- Joan Duran (ca)
- Мирослав Николић (sr)
- Nilamdyuti Goswami (as)
- Mattias Põldaru (et)
- Alexandre Franke (fr)
- Duarte Loreto (pt)
- Balázs Úr (hu)
- Ask H. Larsen (da)
- Carles Ferrando (ca@valencia)
==============
version 3.7.91
==============
What's New
==========
- Fix for bug 687885 - Add keywords to the desktop file
- Fix for bug 692543 - Remove markup from translatable strings
- Fix for bug 694120 - Accerciser crash at launch because python3 gettext
- Added some categories in the .desktop file for accerciser
- Fixed view manager's popup menu and translations
- Updates on accerciser.doap
New And Updated Translations
============================
- Daniel Mustieles (es)
- Мирослав Николић (sr)
- Aurimas Černius (lt)
- Gheyret Kenji (ug)
- Kjartan Maraas (nb)
- Fran Diéguez (gl)
- Matej Urbančič (sl)
- Yaron Shahrabani (he)
- Piotr Drag (pl)
- Chao-Hsiung Liao (zh_HK & zh_TW)
- Anish A (ml)
- Marek Černocký (cs)
- Inaki Larranaga Murgoitio (eu)
- Mario Blättermann (de)
==============
version 3.7.4
==============
What's New
==========
Fix for bug 691136 - Replace deprecated GObject methods with their GLib equivalents
Fix for bug 691145 - The Interface Viewer's States tree is too small
Fix for bug 691147 - The Interface Viewer displays markup
Fix for bug 691141 - Interface Viewer does not populate in Python 3
==============
version 3.7.3
==============
What's New
==========
Two GNOME Goals accomplished:
- Joanmarie Diggs did the Python 3 Porting Goal (Thank you!)
- Modernize your autotools configuration
Other changes:
- Force accerciser to use Wnck 3.0 version
- Stop including the spec file for rpm packages
New And Updated Translations
============================
- Mattias Põldaru (et)
- Christian Kirbach (de)
- Anish A (ml)
- Roman Mátyus (sk)
- Tom Tryfonidis (el)
- Gil Forcada (ca)
==============
version 3.6.0
==============
What's New
==========
Frédéric Péters:
- help: fix link to gnome-help a11y help page
- help: adapt Galician and Spanish translations after link fix
New And Updated Translations
============================
- Seong-ho Cho (ko)
- Rui Batista (pt)
- Joan Duran (ca)
- Carles Ferrando (ca@valencia)
- YunQiang Su (zh_CN)
- Alexandre Franke (fr)
- Nishio Futoshi (jp)
- Tom Tryfonidis (el)
- Rudolfs Mazurs (lv)
==============
version 3.5.92
==============
New And Updated Translations
============================
- Gabor Kelemen (hu)
- Chris Leonard (en_GB)
- Daniel Mustieles (es)
- Marek Černocký (cs)
- Rafael Ferreira (pt_BR)
- Seong-ho Cho (ko)
- Ask Hjorth Larsen (da)
==============
version 3.5.91
==============
What's New
==========
- Use yelp-tools instead of gnome-doc-utils
New And Updated Translations
============================
- Piotr Drag (pl)
- Nilamdyuti Goswami (as)
==============
version 3.5.90
==============
What's New
==========
- Do not check for 'toolkit-accessibility' gsettings key
- Bump minimum version of Python to 2.7
New And Updated Translations
============================
- Aurimas Černius (lt)
- Tobias Endrigkeit (de)
- Nilamdyuti Goswami (as)
=============
version 3.5.5
=============
What's New
==========
- Reverting commit a47442
New And Updated Translations
============================
- Alexander Shopov (bg)
- Andika Triwidada (id)
- Chao-Hsiung Liao (zh_HK)
- Chao-Hsiung Liao (zh_TW)
- Мирослав Николић (sr)
=============
version 3.5.3
=============
What's New
==========
- Fix for bug #673782 - Accerciser does not fully load in F17
- Fix for bug #675989 - Use python object attributes instead of gobject ones
- Fix for bug #674884 - Use XDG base directory instead of $HOME
- Remove markup from strings in .ui files
- Fix for bug #671179 - Unexpected behaviours in ipython_view
- Fix for bug #671261 - UnicodeDecodeError breaks the interface viewer
- Fix for bug #674166 - Settings in wrong path
- Fix for bug #654418 - Strings with context are not getting properly localized even though the translations have been provided
- Fix for bug #663777 - WidgetHasText validator fails for widgets which don't need to implement getText()
- Add a trailing underscore to identifiers which are Python keywords
- Fix for Bug #678517 - Macaroon script recorder is broken
New And Updated Translations
============================
- Chandan Kumar (hi)
- Gil Forcada (ca)
- Carles Ferrando (ca@valencia)
- Bruno Brouard (fr)
- Demosthenes Koptsis (el)
- Daniel Mustieles (es)
- Fran Diéguez (gl)
- Yaron Shahrabani (he)
- Matej Urbančič (sl)
- Kjartan Maraas (nb)
- Yuri Kozlov (ru)
- Tom Tryfonidis (el)
=============
version 3.4.0
=============
New And Updated Translations
============================
- Daniel Korosti (uk)
- Rudolfs Mazurs (lv)
- Wolfgang Stöggl (de)
- Aron Xu (zh_CN)
==============
version 3.3.90
==============
What's New
==========
* New feature: Add Option to filter out apps with 0 children (Aline Bessa)
* Updating the ipython view plugin to the ipython v0.12 API (with ipython-0.11 backwards compatibility)
* Fix for bug #670415 - Accerciser isn't explorable through the treeview
New And Updated Translations
============================
- Mattias Põldaru (et)
- Khoem Sokhem (km)
- Roman Mátyus (sk)
- Bruno Brouard (fr)
- Gheyret Kenji (ug)
- Marek Černocký (cs)
- Daniel Mustieles (es)
=============
version 3.3.5
=============
What's New
==========
* Fix for bug #659296 - Uncompatibilities with new version of IPython
* Bug 666251: Fix broken tags in gl.po
* Merge branch 'macaroon-pygi' into master
New And Updated Translations
============================
- Łukasz Jernaś (pl)
- Daniel Mustieles (es)
- Praveen Illa (te)
- Jiro Matsuzawa (jp)
- Kjartan Maraas (nb)
- Fran Diéguez (gl)
=============
version 3.3.1
=============
New And Updated Translations
============================
- YunQiang Su (zh_CN)
- Xandru Armesto (ast)
- Sasi Bhushan (te)
=============
version 3.2.0
=============
New And Updated Translations
============================
- Yaron Shahrabani (he)
- Piotr Drag (pl)
- Carles Ferrando (ca@valencia)
- Lucas Lommer (cs)
==============
version 3.1.92
==============
What's New
==========
* Make maintiner mode enabled by default
* Fix for bug #658242 - Need context for a proper translation
* Fix for bug #659425 - Highlight is not working in fallback mode
New And Updated Translations
============================
- Daniel Nylander (sv)
- Andika Triwidada (id)
- Chao-Hsiung Liao (zh_HK)
- Chao-Hsiung Liao (zh_TW)
- Kjartan Maraas (nb)
- Aurimas Černius (lt)
- Daniel Mustieles (es)
- Fran Diéguez (gl)
- Yuri Myasoedov (ru)
- Piotr Drag (pl)
- Mario Blättermann (de)
- Jorge González (es)
- Alexandre Franke (fr)
- Bruce Cowan (en_GB)
- Rudolfs Mazurs (lv)
- Martin Srebotnjak (sl)
- Antonio Fernandes C. Neto (pt_BR)
- Мирослав Николић (sr)
- Rui Batista (pt)
- Jiro MATSUZAWA (jp)
- Matej Urbančič (sl)
- Aputsiaq Janussen (da)
- Alexander Shopov (bg)
- Aurimas Černius (lt)
- Joan Duran (ca)
- Gabor Kelemen (hu)
- Inaki Larranaga Murgoitio (eu)
==============
version 3.1.91
==============
What's New
==========
* Fix for bug #657803 - Missing part in pygi port
* Fix for bug #625902 - Port to GSettings
* Fix for bug #658191 - GSettings schema isn't translatable
* Make gschema strings translatable
* Fix for bug 658196 - Refresh node popup menu from accessible treeview isn't working
New And Updated Translations
============================
- Jorge González (es)
- Kjartan Maraas (nb)
- Fran Diéguez (gl)
- Daniel Nylander (sv)
- Chao-Hsiung Liao (zh_HK)
- Chao-Hsiung Liao (zh_TW)
- Aurimas Černius (lt)
- Bruno Brouard (fr)
==============
version 3.1.90
==============
What's New
==========
* Ported from pygtk to gtk3 using gobject-based introspection bindings.
New And Updated Translations
============================
- Daniel Mustieles (es)
- Jorge González (es)
- Abduxukur Abdurixit (ug)
- Og B. Maciel (pt_BR)
- Alexandre Franke (fr)
- Piotr Drag (pl)
=============
version 3.1.5
=============
New And Updated Translations
============================
- Daniel Mustieles (es)
- Jorge González (es)
- Theppitak Karoonboonyanan (th)
- Andika Triwidada (id)
- Alexander Shopov (bg)
- Piotr Drag (pl)
- Yuri Myasoedov (ru)
=============
version 3.1.4
=============
What's New
==========
* New mallard based-topic documentation.
New And Updated Translations
============================
- Fran Diéguez (gl)
- Jorge González (es)
- Daniel Mustieles (es)
- Muhammet Kara (tr)
- Kjartan Maraas (nb)
- Rudolfs Mazurs (lv)
- Yaron Shahrabani (he)
- Mario Blättermann (de)
- Aurimas Černius (lt)
- Matej Urbančič (sl)
- Daniel Nylander (sv)
=============
version 3.1.3
=============
What's New
==========
* Fix for bug #653942 - Remove script recorder references from POTFILES.in
* Fix for bug #650097 - accerciser shows all text attributes in the same row