-
Notifications
You must be signed in to change notification settings - Fork 5
/
ChangeLog
2112 lines (1596 loc) · 67.3 KB
/
ChangeLog
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
NOTE: THIS FILE IS NO LONGER UPDATED. Please see the git log for recent
changes.
2009-05-24 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in: Bumped to version 1.7.2.
* src/lib/accerciser/accessible_treeview.py:
* plugins/interface_view.py: Added accessible name changed
listeners to update the view accordingly (bug #582434).
2009-05-15 Eitan Isaacson <[email protected]>
* plugins/interface_view.py: Fixed editable text bug (bug #574223).
* plugins/Makefile.am:
* plugins/event_monitor.py:
* plugins/event_monitor.ui:
* plugins/interface_view.py:
* plugins/interface_view.ui:
* plugins/script_recorder.py:
* plugins/script_recorder.ui:
* plugins/validate.py:
* plugins/validate.ui:
* po/POTFILES.in: Migrated to GtkBuilder (bug 572207).
2009-05-04 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in: Bumped to version 1.7.1.
* src/lib/accerciser/accerciser.py (Main.run): Minimize CPU usage
and wakeups by setting gil to False, and pumping events with a
timeout as opposed to an idle callback (bug #576954).
* .gitignore: Added for cleaner git usage.
2009-05-02 Eitan Isaacson <[email protected]>
* plugins/ipython_view.py: Made up/down history not loop (bug #578608).
* README:
* accerciser.spec.in:
* debian/control:
* macaroon/pyreqs.py:
* pyreqs.py: Removed bonobo and ORBit2 dependencies. Accerciser
does not depend on them directly, and they will be deprecated in
GNOME 3.0 (bug #580421).
2009-04-13 Brian G. Merrell <[email protected]>
* NEWS:
* README:
* configure.in: Prepared 1.6.1 release.
2009-04-05 Eitan Isaacson <[email protected]>
* src/lib/accerciser/prefs_dialog.py:
* src/lib/accerciser/node.py: Updated highlight SVG to work with
newer rsvg (bug #576756).
2009-03-16 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in: Prepared 1.6.0 release.
2009-03-11 Mike Gorse <[email protected]>
* plugins/interface_view.py: Call getindexInParent to pass the
correct index to addSelection (bug #574783).
2009-03-04 Eitan Isaacson <[email protected]>
* src/lib/accerciser/main_window.py: Added an informative window
title (bug #574103).
* src/lib/accerciser/prefs_dialog.py: Fixed empty padding
issue (bug #574101)
* plugins/script_recorder.py: Port to gtksourceview2 (bug #574100).
2009-02-17 Brad Taylor <[email protected]>
* plugins/interface_view.py: Don't allow the set_range to change the
value of our accessible (bug #572201).
2009-02-17 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in: Prepared 1.5.91 release.
2009-02-03 Eitan Isaacson <[email protected]>
* autogen.sh: Provide a $srcdir (bug #570332).
Thanks Theppitak Karoonboonyanan!
2009-02-02 Brian G. Merrell <[email protected]>
* src/lib/accerciser/i18n.py.in: Use gettext.gettext (imported as
translate_func) instead of _ in C_ to avoid distcheck failure. This
is part of the 1.5.9 release.
2009-02-02 Brian G. Merrell <[email protected]>
* NEWS:
* README:
* configure.in: Prepared 1.5.9 release.
2009-01-28 Eitan Isaacson <[email protected]>
* po/ca.po:
* po/el.po:
* po/es.po:
* po/hu.po:
* po/nb.po:
* po/sl.po:
* po/sv.po:
* po/zh_CN.po: Updated PO files for msgctx.
* src/lib/accerciser/i18n.py.in:
* src/lib/accerciser/plugin/plugin_manager.py:
* src/lib/accerciser/ui_manager.py: Use C_() instead of Q_() with
context (bug #569341).
2009-01-26 Eitan Isaacson <[email protected]>
* src/lib/accerciser/ui_manager.py: Added context for "Bookmarks"
for translation (bug #520296).
2009-01-18 Eitan Isaacson <[email protected]>
* NEWS
* README
* configure.in: Mark for 1.5.5 release.
2009-01-15 Eitan Isaacson <[email protected]>
* pyreqs.py: Put pygtk as the first required module (bug #547778).
2009-01-07 Brian G. Merrell <[email protected]>
* plugins/interface_view.py: Correctly calculate the range of
characters to be deleted, so that it would match the range of
characters to be deleted in the outgoing calls cache when
appropriate (bug #563284)
2009-01-05 Brian G. Merrell <[email protected]>
* NEWS:
* README:
* configure.in: Prepared 1.5.4 release.
2009-01-05 Brian G. Merrell <[email protected]>
* plugins/interface_view.py: Import markup_escape_text from gobject
instead of glib. This seems to work more consistently across distros.
2008-12-18 Eitan Isaacson <[email protected]>
* plugins/interface_view.py (InterfaceViewer.onAccChanged): Escape
label text for accessible roles and names (bug #564776).
2008-12-01 Eitan Isaacson <[email protected]>
* MAINTAINERS: Updated with Brian's info.
2008-12-01 Brian G. Merrell <[email protected]>
* NEWS:
* README:
* configure.in: Prepared 1.5.2 release.
2008-11-20 Brian G. Merrell <[email protected]>
* plugins/interface_view.py: Get each relation name in a list of
relations instead of getting the first relation name every time.
Bug #561598
2008-11-18 Eitan Isaacson <[email protected]>
* src/lib/accerciser/node.py: If duration is 0, don't highlight at all.
2008-10-10 Eitan Isaacson <[email protected]>
* src/lib/accerciser/i18n.py.in:
* src/lib/accerciser/plugin/plugin_manager.py:
* src/lib/accerciser/ui_manager.py: Added proper context to the term
'View' with the Q_ thing. Thanks Wouter Bolsterlee! Bug #520296.
* src/lib/accerciser/node.py: When a node is updated to desktop, don't
highlight the entire desktop, it get's annoying.
* plugins/event_monitor.py: Disable event monitoring if the event we
are listening for disappears.
* plugins/interface_view.py: Catch exceptions when getting states
during state changes, they could be defunct state, which means the
object is dead.
* src/accerciser.in: Set process name to 'accerciser'. Bug #555416.
* configure.in: Bumped version to 1.5.1
* help/C/accerciser.xml: Changed "left plugin display area" to "right
plugin display area". Bug #555108. Thanks Lucas Lommer!
2008-09-22 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in:
* debian/changelog: Prepared 1.4.0 release.
2008-09-08 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in:
* debian/changelog: Updated for 1.3.92 release.
* src/accerciser.in: Put pygtk.require before loading the gnome
module. Thanks Fredric Peters! (bug #547778).
2008-09-03 Eitan Isaacson <[email protected]>
* accerciser.schemas.in:
Changed color string to be parsable (bug #550689).
2008-09-01 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in:
* debian/changelog: Updated for 1.3.91 release.
2008-08-04 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in:
* debian/changelog: Bumped to new version, 1.3.6.
* src/lib/accerciser/node.py: Removed "finally" block for
compatability (bug #545904), thanks Will. Hard code default colors.
2008-07-21 Eitan Isaacson <[email protected]>
* src/lib/accerciser/node.py: Fixed highlighting in composited
environments.
2008-07-20 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* debian/changelog: Updated for 1.3.5 release.
* pyreqs.py: Changed pyatspi version checking to use the new
__version__ symbol.
2008-07-08 Eitan Isaacson <[email protected]>
* accerciser.schemas.in:
* debian/changelog:
* debian/rules:
* src/lib/accerciser/accessible_treeview.py:
* src/lib/accerciser/node.py:
* src/lib/accerciser/prefs_dialog.py:
* src/lib/accerciser/tools.py: Added new highlight features and
eye-candy. Updated debian dirs.
* src/lib/accerciser/accessible_treeview.py:
* src/lib/accerciser/main_window.py:
* src/lib/accerciser/plugin/plugin_manager.py:
* src/lib/accerciser/tools.py:
* src/lib/accerciser/ui_manager.py: Added a context menu to the
main tree.
2008-07-02 Eitan Isaacson <[email protected]>
* src/lib/accerciser/accessible_treeview.py: Fixed
UnboundLocalError (bug #540166).
2008-06-16 Eitan Isaacson <[email protected]>
* confugure.in: Set trunk version to 1.3.5.
* NEWS:
* confugure.in:
* README: Updated to version 1.3.4.
2008-06-12 Eitan Isaacson <[email protected]>
* pyreqs.py: Make pyreqs behave nicely in a headless build
environment (bug #528828).
* po/LINGUAS: Fixed build issue - bugs 537272 and 536468.
Thanks David Fuereder!
* accerciser.desktop.in.in:
* po/ar.po:
* po/bg.po:
* po/bn.po:
* po/bn_IN.po:
* po/ca.po:
* po/cs.po:
* po/da.po:
* po/de.po:
* po/dz.po:
* po/el.po:
* po/en_CA.po:
* po/en_GB.po:
* po/es.po:
* po/fi.po:
* po/fr.po:
* po/gl.po:
* po/gu.po:
* po/he.po:
* po/hi.po:
* po/hu.po:
* po/it.po:
* po/ja.po:
* po/lt.po:
* po/lv.po:
* po/mk.po:
* po/ml.po:
* po/nb.po:
* po/nl.po:
* po/oc.po:
* po/or.po:
* po/pa.po:
* po/pl.po:
* po/pt.po:
* po/pt_BR.po:
* po/ru.po:
* po/si.po:
* po/sl.po:
* po/sq.po:
* po/sv.po:
* po/te.po:
* po/th.po:
* po/tr.po:
* po/uk.po:
* po/vi.po:
* po/zh_CN.po: Fixed desktop file typo (bug #520729).
Thanks Pedro Fragoso!
2008-04-22 Brian G. Merrell <[email protected]>
* plugins/ipython_view.py: modified the code to check for different
modifiers (CONTROL, SHIFT, and MOD1/ALT) and correct the behavior of
the 'Home' key to perform as the user would expect (bug #431882).
2008-04-21 Eitan Isaacson <[email protected]>
* NEWS:
* confugure.in:
* README: Updated to version 1.3.1.
* pyreqs.py: Check that the version of pyatspi is current enough.
2008-04-21 Brian G. Merrell <[email protected]>
* src/lib/accerciser/accerciser.py: Added whitespace to strings (bug
#528261).
2008-03-26 Eitan Isaacson <[email protected]>
* plugins/validate.glade:
* plugins/validate.py: Implement save functionality,
thanks Brian Merrell! (bug #508665). Added an extra column
to the append in _exceptionError()'s append to model.
2008-03-16 Eitan Isaacson <[email protected]>
* plugins/quick_select.py: Make it work better with tab lists
and windows.
2008-03-07 Wouter Bolsterlee <[email protected]>
* plugins/interface_view.py: Added some translator
comments.
2008-03-05 Eitan Isaacson <[email protected]>
* src/lib/accerciser/plugin/plugin_manager.py: Added translator
comments for "View" (bug #520296).
* plugins/interface_view.py: Removed prefix space from
translatable string (bug #514232).
* src/lib/accerciser/accessible_treeview.py:
* plugindata/validate/basic.py:
* plugins/interface_view.glade: Added translator comments.
2008-02-28 Eitan Isaacson <[email protected]>
* plugins/event_monitor.glade: Move the separator directly beneath
the text window (bug #494634). Thanks Brian G. Merrell!
* plugins/event_monitor.py: Make hyperlinks work with single
clicks (bug #494632). Thanks Steve Lee and Brian G. Merrell!
* plugins/api_view.py: Put interface combo box on tob (bug
#493650). Thanks Brian G. Merrell!
* plugins/interface_view.py: Swapped absolute and relative
positions in Component section (bug #503654).
2008-02-10 Eitan Isaacson <[email protected]>
* src/lib/accerciser/Makefile.am: Removed pyatspi.zip
* NEWS:
* README:
* configure.in:
* debian/changelog: 1.1.91 release.
2008-02-08 Eitan Isaacson <[email protected]>
* src/lib/accerciser/pyatspi.zip: Deleted.
2008-01-28 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in:
* debian/changelog: 1.1.90 release.
* src/lib/accerciser/accerciser.py: Make event handling asynchronous.
* plugins/event_monitor.py: Remove decoupling of event handling, we
don't need to worry about it any more.
2008-01-26 Eitan Isaacson <[email protected]>
* src/lib/accerciser/accerciser.py: Fixed hang when enabling
desktop a11y through accerciser (bug #509805). Thanks Pedro Fragoso.
2008-01-16 Peter Parente <[email protected]>
* plugindata/validate/basic.py: Added comments
2008-01-14 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in:
* debian/changelog: Bumped to version 1.1.5.
* plugindata/validate/basic.py: Added translator comments.
2008-01-11 Eitan Isaacson <[email protected]>
* plugindata/validate/Makefile.am: Fixed install path.
* plugins/event_monitor.py: Added a new global hotkey for
starting/stopping recording.
* plugins/validate.glade: Removed Save button, changed layout so
it won't be so wide. Added label relationships to comobox and label.
* plugins/validate.py: Removed Save button stuff.
* plugindata/validate/Makefile.am:
* plugindata/Makefile.am: Added missing Makefile.ams.
2008-01-10 Peter Parente <[email protected]>
* plugins/validate.py
* plugins/validate.glade
* plugindata/validate/basic.py: Old code for validate plugin
2007-12-03 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in:
* debian/changelog: Bumped to version 1.1.3.
2007-12-01 Eitan Isaacson <[email protected]>
* plugins/ipython_view.py (IPythonView.__init__): Removed a "print".
* plugins/ipython_view.py (ConsoleView.onKeyPressExtend): Fixed
strange bug when trying to extend a superclass's method through a
callback (bug #500900).
2007-11-13 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in:
* debian/changelog: Bumped to version 1.1.2.
2007-11-03 Eitan Isaacson <[email protected]>
* src/accerciser.in: Initialized GDK threading, IPython 0.8.* is
forcing us to do this because it imports ctypes which enables
Python threading (bug #469427).
* plugins/ipython_view.py (ConsoleView): De-coupled all caret
movement and text manipulation in the ConsoleView from the input
event handling. Without decoupling we get a lockup if threading
is enabled when a GAIL callback tries to acquire the lock during a
GDK event dispatch.
2007-10-29 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in:
* debian/changelog: Bumped to version 1.1.1.
2007-10-12 Eitan Isaacson <[email protected]>
* README:
* configure.in:
* debian/changelog: Bumped to 1.0.2.
* NEWS: Updated to 1.0.1.
* src/lib/accerciser/accerciser.py: Removed _onAccChanged
callback, and put in a more general selection changed callback in
main_window.py (bug #484843).
* src/lib/accerciser/main_window.py: Put in a selection changed
callback to update the status bar with the current path (bug #484843).
* src/lib/accerciser/plugin/message.py: Fixed tooltip style issue
(bug #460071).
* src/lib/accerciser/prefs_dialog.py: Fixed bug that would not
alow preferences window to be closed (bug #481176).
2007-10-05 Eitan Isaacson <[email protected]>
* configure.in:
* README: Changed to version 1.0.1
* help/C/accerciser.xml: Fixed bad entity name (bug
#475593). Thanks Frederic Peters!
2007-09-17 Eitan Isaacson <[email protected]>
* src/lib/accerciser/node.py (Node.update): Assert that a
Component interface is actually given before trying to use it.
* README: Bumped to version 1.1.0 for GNOME 2.21 development
cycle.
* configure.in: Bumped to version 1.1.0 for GNOME 2.21 development
cycle.
2007-09-16 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in:
* debian/changelog: Updated to version 1.0.0.
2007-09-15 Eitan Isaacson <[email protected]>
* src/lib/accerciser/pyatspi.zip: Updated to latest pyatspi revision.
These are updates from bugs #472301 and #467366.
2007-09-04 Eitan Isaacson <[email protected]>
* NEWS:
* README:
* configure.in:
* debian/changelog: Changed to version 0.1.92.
2007-08-31 Eitan Isaacson <[email protected]>
* MAINTAINERS: Updated to new format.
2007-08-30 Eitan Isaacson <[email protected]>
* plugins/interface_view.glade:
* plugins/script_recorder.glade: Added translation comments
to some hard strings (bug 471756).
* plugins/event_monitor.glade:
* plugins/interface_view.glade:
* plugins/script_recorder.glade: Unmark stock ids for
translation, thanks Gabor Kelemen! (bug 470901).
2007-08-29 Eitan Isaacson <[email protected]>
* plugins/interface_view.py: Limit splits in accessible
attribute pairs, thanks Scott Haeger! (bug 464365).
2007-08-27 Eitan Isaacson <[email protected]>
* doc/accerciser.1: New manpage.
* doc/Makefile.am: New Makefile.am.
* configure.in: Added doc dir.
* Makefile.am: Added doc dir.
* NEWS: Updated news with manpage.
* NEWS: Updated with news for version 0.1.91.
* README: Updated to version 0.1.91.
* configure.in: Updated to version 0.1.91.
* debian/changelog: Updated to version 0.1.91.
2007-08-13 Eitan Isaacson <[email protected]>
* NEWS: Updated to version 0.1.90.
* po/POTFILES.skip: Added accerciser.desktop.in.
2007-08-09 Eitan Isaacson <[email protected]>
* plugins/api_view.py: Fixed assumption that the type of a variable is
always a string.
2007-07-31 Eitan Isaacson <[email protected]>
* po/POTFILES.in: Removed weird automated addition.
* po/POTFILES.skip: Removed accerciser.desktop.in.
* src/lib/accerciser/plugin/message.py: Added an assertion test to
fix bug #460071. I wish I understood what the root of the problem
is, but I can't seem to replicate this on my system.
2007-07-30 Eitan Isaacson <[email protected]>
* po/POTFILES.in:
* po/POTFILES.skip: Added and skipped relevant files.
Thanks Claude Paroz.
2007-07-29 Eitan Isaacson <[email protected]>
* README:
* configure.in:
* debian/changelog: Version bumped to version 0.1.90.
* NEWS: Updated for version 0.1.6.
2007-07-20 Eitan Isaacson <[email protected]>
* src/lib/accerciser/__init__.py: Block SIGSTP so we don't hang
the desktop, thank you Simos Xenitellis (bug 457965).
2007-07-08 Eitan Isaacson <[email protected]>
* plugins/interface_view.glade: Marked 'C' string as untranslatable.
* src/lib/accerciser/accessible_treeview.py: Added some safety harnesses.
* src/lib/accerciser/plugin/view.py: Fixed new view dialog.
2007-07-08 Eitan Isaacson <[email protected]>
* README: Bumped to 0.1.6.
* configure.in: Bumped to 0.1.6.
* debian/changelog: Bumped to 0.1.6.
* src/lib/accerciser/bookmarks.py: Fixed bookmark deletion. Fixed
application bookmarks.
* src/lib/accerciser/accessible_treeview.py: Fixed indirect
selection of top level nodes.
2007-07-08 Eitan Isaacson <[email protected]>
* NEWS: Updated to 0.1.5.
* src/lib/accerciser/plugin/base_plugin.py: Added focus
callback that scrolls to the focused child widget in a
viewport plugin.
* plugins/interface_view.py: Removed focus callback for scrolling.
It is now in a superclass.
2007-07-05 Eitan Isaacson <[email protected]>
* plugins/interface_view.py: Handle exception from a non-existant
selection interface.
* src/lib/accerciser/main_window.py: Fixed exception raised in bug
453330.
2007-07-01 Eitan Isaacson <[email protected]>
* plugins/api_view.py: Catch AttributeError on slots.
* src/lib/accerciser/pyatspi.zip: Updated to revisio 935.
2007-07-01 Eitan Isaacson <[email protected]>
* accerciser.schemas.in: Changed caps on view names.
* help/C/accerciser.xml: Updated documentation.
* help/C/figures/accerciser.png: Updated screenshot.
* help/C/figures/api_browser.png: Updated screenshot.
* help/C/figures/event_monitor.png: Updated screenshot.
* help/C/figures/interface_viewer.png: Updated screenshot.
* help/C/figures/script_recorder.png: Updated screenshot.
* help/Makefile.am: Added script_recorder.png.
* src/lib/accerciser/plugin/view.py: Added mnemonic to single
view mode.
2007-06-29 Eitan Isaacson <[email protected]>
* src/lib/accerciser/accerciser.py: Changed to new UI Manager scheme.
* src/lib/accerciser/bookmarks.py: Changed to new UI Manager scheme.
* src/lib/accerciser/main_window.py: Removed UI manager stuff.
* src/lib/accerciser/node.py: Check if no application accessible
was found.
* src/lib/accerciser/plugin/view.py: Renamed ViewManager to
MultiViewModel with a ViewModel superclass. This allows more then
one kind of view management scheme, like SingleViewModel.
* src/lib/accerciser/tools.py: Added Proxy class
for wrapping weak referenced callables.
* src/lib/accerciser/ui_manager.py: Added.
Creates a singleton UIManager.
* src/lib/accerciser/Makefile.am: Added ui_manager.py.
2007-06-19 Eitan Isaacson <[email protected]>
* plugins/Makefile.am: Added quick select plugin.
* plugins/quick_select.py: Added quick select plugin.
* src/lib/accerciser/accerciser.py: Removed quick select
functionality, and put it in a seperate plugin.
* src/lib/accerciser/plugin/plugin_manager.py: Made changes to
allow plugins that have no visible widget.
* src/lib/accerciser/plugin/view.py: Made changes to
allow plugins that have no visible widget.
* README: Bumped to 0.1.5.
* configure.in: Bumped to 0.1.5.
* debian/changelog: Bumped to 0.1.5.
* src/lib/accerciser/__init__.py: Changed main class name.
* src/lib/accerciser/accerciser.py: Changed main class name.
Moved global keypress listening to hotkey manager.
* src/lib/accerciser/hotkey_manager.py: Moved global keypress
listening to hotkey manager.
2007-06-17 Eitan Isaacson <[email protected]>
* NEWS: Updated to 0.1.4.
* src/lib/accerciser/main_window.py: Added shadow to treeview.
* src/lib/accerciser/plugin/view.py: Fixed crash when no gconf
settings are found.
2007-06-15 Eitan Isaacson <[email protected]>
* po/POTFILES.in: Removed glade, added new files.
* src/Makefile.am: Removed glade file.
* src/accerciser.glade: Removed glade file.
* src/lib/accerciser/Makefile.am: Added prefs dialog, about dialog
and main window files.
* src/lib/accerciser/about_dialog.py: Replaced glade description.
* src/lib/accerciser/accerciser.py: Refacotred out all main window
functionality.
* src/lib/accerciser/accessible_treeview.py: Manage own action group.
* src/lib/accerciser/bookmarks.py: Refactored, use UIManager and actions.
* src/lib/accerciser/main_window.py: Replaced glade description.
* src/lib/accerciser/prefs_dialog.py: Replaced glade description.
2007-06-05 Eitan Isaacson <[email protected]>
* src/accerciser.glade: Added bookmarks menu.
* src/lib/accerciser/Makefile.am: Added bookmarks.py.
* src/bookmarks.py: Added support for bookmarks.
* src/lib/accerciser/accerciser.py: Added bookmark callbacks.
* src/lib/accerciser/accessible_treeview.py: Fixed node selection bug.
* src/lib/accerciser/hotkey_manager.py:
* src/lib/accerciser/node.py: added tree_path attribute for more
accurate accessible paths.
2007-06-05 Eitan Isaacson <[email protected]>
* src/lib/accerciser/accessible_treeview.py: Decouple children
node loading (bug 441013).
2007-06-04 Eitan Isaacson <[email protected]>
* plugins/interface_view.py: Scroll a focused expander
in plugin area into view.
* README: Bumped to version 0.1.4
* configure.in: Bumped to version 0.1.4
* debian/changelog: Bumped to version 0.1.4
2007-06-03 Eitan Isaacson <[email protected]>
* NEWS: Updated news file for upcomming release.
2007-06-02 Eitan Isaacson <[email protected]>
* plugins/interface_view.glade: Made added labels selectable
(bug 440972).
2007-06-01 Eitan Isaacson <[email protected]>
* plugins/interface_view.py: Removed print.
* src/lib/accerciser/accessible_treeview.py: Made '<dead>' string
localized.
* src/lib/accerciser/plugin/view.py: Plugin tabs now accessible
(we were getting "None" for pluginview children via at-spi).
2007-05-31 Eitan Isaacson <[email protected]>
* plugins/interface_view.glade:
* plugins/interface_view.py: Added accessible description and
childcount. and image description and locale (bug 440972).
2007-05-28 Eitan Isaacson <[email protected]>
* plugins/script_recorder.py: Added title to confirm clear dialog.
2007-05-27 Eitan Isaacson <[email protected]>
* plugins/interface_view.py: Fixed bug 441201.
2007-05-24 Eitan Isaacson <[email protected]>
* src/lib/accerciser/__init__.py: Completed epydoc.
* src/lib/accerciser/plugin/message.py: Completed epydoc.
* src/lib/accerciser/plugin/message.py: Epydoced.
* src/lib/accerciser/plugin/plugin_manager.py: Epydoced.
* src/lib/accerciser/plugin/view.py: Epydoced.
2007-05-22 Eitan Isaacson <[email protected]>
* src/lib/accerciser/accerciser.py: Added forced
refresh after rectangle blinks (bug 433514).
* src/lib/accerciser/node.py: Added a signal for when the
rectangle stops blinking.
* plugins/interface_view.py: Fixed bug 440177.
* plugins/interface_view.glade:
* plugins/interface_view.py: Limit selection view populating to
50 children (bug 440269).
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/plugin/view.py: Skip over invisible tabs
when focusing with alt-<num>.
* configure.in:
* plugins/script_recorder.py:
* src/lib/accerciser/Makefile.am:
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/message.py:
* src/lib/accerciser/plugin.py:
* src/lib/accerciser/plugin:
* src/lib/accerciser/plugin/Makefile.am:
* src/lib/accerciser/plugin/__init__.py:
* src/lib/accerciser/plugin/base_plugin.py:
* src/lib/accerciser/plugin/message.py:
* src/lib/accerciser/plugin/plugin_manager.py:
* src/lib/accerciser/plugin/view.py:
* src/lib/accerciser/plugin_manager.py:
* src/lib/accerciser/view_manager.py: Moved all plugin-related
code to a seperate package.
* plugins/script_recorder.py:
* src/lib/accerciser/Makefile.am:
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/message.py:
* src/lib/accerciser/plugin.py:
* src/lib/accerciser/plugin_manager.py:
* src/lib/accerciser/view_manager.py: Plugin management
re-factoring. This is a working, intermittent commit
before major file renaming.
2007-05-17 Eitan Isaacson <[email protected]>
* src/lib/accerciser/plugin.py: Epydoced.
* src/lib/accerciser/tools.py: Epydoced, removed unused Proxy class.
2007-05-16 Eitan Isaacson <[email protected]>
* plugins/console.py: Epydoced.
* plugins/ipython_view.py: Epydoced.
* plugins/script_recorder.py: Epydoced.
* plugins/api_view.py: Epydoced.
* plugins/event_monitor.glade: Reattached signals that got lost.
* plugins/event_monitor.py: Epydoced.
* src/lib/accerciser/pyatspi.zip: Updated to revision 927.
2007-05-15 Eitan Isaacson <[email protected]>
* plugins/interface_view.py: Epydoced.
* plugins/event_monitor.glade:
* plugins/event_monitor.py: Fixed event filtering (bug 438622).
2007-05-14 Eitan Isaacson <[email protected]>
* README: Bumped to version 0.1.3
* configure.in: Bumped to version 0.1.3
* debian/changelog: Bumped to version 0.1.3
* help/C/accerciser.xml: Changed console example to pyatspi (bug 438056)
2007-05-10 Eitan Isaacson <[email protected]>
* src/lib/accerciser/pyatspi.zip: Updated to revision 925.
2007-05-10 Eitan Isaacson <[email protected]>
* README: Updated requirements. Added requirements for Debian
based machines.
* src/lib/accerciser/pyatspi.zip: Updated to revision 924.
* NEWS: Added entry for 0.1.2.
* pixmaps/Makefile.am:
* pixmaps/alert.png:
* pixmaps/column.png:
* pixmaps/desktopframe.png:
* pixmaps/directorypane.png:
* pixmaps/embedded.png:
* pixmaps/endnote.png:
* pixmaps/htmlcontainer.png:
* pixmaps/label.png:
* pixmaps/link.png:
* pixmaps/outlineitem.png:
* pixmaps/pagetab.png:
* pixmaps/passwordtext.png:
* pixmaps/row.png:
* pixmaps/section.png:
* pixmaps/shape.png:
* pixmaps/tablecell.png: Tweaked icons.
2007-05-09 Eitan Isaacson <[email protected]>
* NOTICE: Added copyright notice for role icons.
* pixmaps/Makefile.am:
* pixmaps/acceleratorlabel.png:
* pixmaps/arrow.png:
* pixmaps/calendar.png:
* pixmaps/canvas.png:
* pixmaps/chart.png:
* pixmaps/checkbox.png:
* pixmaps/checkmenuitem.png:
* pixmaps/colorchooser.png:
* pixmaps/combobox.png:
* pixmaps/dateeditor.png:
* pixmaps/desktopicon.png:
* pixmaps/dialog.png:
* pixmaps/drawingarea.png:
* pixmaps/entry.png:
* pixmaps/filechooser.png:
* pixmaps/filler.png:
* pixmaps/focustraversable.png:
* pixmaps/fontchooser.png:
* pixmaps/frame.png:
* pixmaps/glasspane.png:
* pixmaps/icon.png:
* pixmaps/image.png:
* pixmaps/list.png:
* pixmaps/listitem.png:
* pixmaps/menu.png:
* pixmaps/menubar.png:
* pixmaps/menuitem.png:
* pixmaps/pagetablist.png:
* pixmaps/popupmenu.png:
* pixmaps/progressbar.png:
* pixmaps/pushbutton.png:
* pixmaps/radiobutton.png:
* pixmaps/radiomenuitem.png:
* pixmaps/ruler.png:
* pixmaps/scrollbar.png:
* pixmaps/scrollpane.png:
* pixmaps/separator.png:
* pixmaps/seperator.png:
* pixmaps/slider.png:
* pixmaps/spinbutton.png:
* pixmaps/splitpane.png:
* pixmaps/statusbar.png:
* pixmaps/table.png:
* pixmaps/tearoffmenuitem.png:
* pixmaps/text.png:
* pixmaps/togglebutton.png:
* pixmaps/toolbar.png:
* pixmaps/tree.png:
* pixmaps/treetable.png:
* pixmaps/window.png: Added/modified icons from glade3 icons (bug
431816). Thank you Vincent Geddes!
* plugins/api_view.py: Removed custom list interfaces method, use
pyatspi one.
* plugins/interface_view.py: Removed custom list interfaces
method,use pyatspi one.
* src/accerciser.glade: Added Vincent Geddes to 'about' dialog.
* src/lib/accerciser/accerciser.py: Fixed application quitting.
* src/lib/accerciser/icons.py: Removed role->filename mapping.
* src/lib/accerciser/pyatspi.zip: Updated to snapshot of revision 922.
2007-05-08 Eitan Isaacson <[email protected]>
* plugins/event_monitor.py: Made load time extremely faster.
* src/accerciser.in: Always enable gail.
* src/lib/accerciser/accerciser.py: Changed no desktop a11y dialog
behavior (bug 429505).
* src/lib/accerciser/plugin_manager.py: Added context menus to
plugin tabs (bug 427059).
* ChangeLog:
* NOTICE:
* help/C/accerciser.xml:
* help/en_GB/en_GB.po:
* help/es/es.po:
* help/sv/sv.po:
* plugins/api_view.py:
* plugins/console.py:
* plugins/event_monitor.py:
* plugins/interface_view.glade:
* plugins/interface_view.py:
* plugins/script_recorder.py:
* src/lib/accerciser/Makefile.am:
* src/lib/accerciser/__init__.py:
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/accessible_treeview.py:
* src/lib/accerciser/hotkey_manager.py:
* src/lib/accerciser/icons.py: