-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.pre-2-16
3546 lines (2374 loc) · 108 KB
/
ChangeLog.pre-2-16
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
=== ChangeLog discontinued ===
2009-04-06 Brian Cameron <[email protected]>
Bug 397544 – Numeric is no longer maintained
* gtk/gdkpixbuf.override: Fix numpy import.
2009-04-06 Josselin Mouette <[email protected]>
Bug 397544 – Numeric is no longer maintained
* gtk/gdk.override:
* configure.ac:
* setup.py:
* README: Update pygtk to use numpy instead of Numeric.
2009-04-06 Gian Mario Tagliaretti <[email protected]>
Bug 447388 – pixbuf.get_pixels_array() doesn't correctly flag the array
as non-contiguous
* gtk/gdkpixbuf.override: Revert this commit since it doesn't work
with numpy and we are going to ship 2.15.0 with numpy support.
Reopening the bug asking Tim Evens if he can fix the patch.
2009-03-30 Tobias Mueller <[email protected]>
* pango.override:
* atkrectangle.override:
* ltihooks.py:
* gtk/libglade.override:
* gtk/gdkcolor.override:
* gtk/gdk.override:
* gtk/deprecation.py:
* gtk/__init__.py:
* gtk/_lazyutils.py:
* gtk/gdkdraw.override:
* gtk/gtk.override:
* gtk/gtkcontainer.override:
* gtk/gtkwidget.override:
* gtk/gtkobject-support.c:
* gtk/gtkiconview.override:
* gtk/gtk-types.c:
* gtk/gtkbuilder.override:
* gtk/gdkwindow.override:
* gtk/gtktreeview.override:
* gtk/pygtktreemodel.c:
* gtk/gtkunixprint.override:
* gtk/gtkstyle.override:
* gtk/gdkevent.override:
* gtk/pygtktreemodel.h:
* gtk/gtkctree.override:
* gtk/libglademodule.c:
* gtk/gtkwindow.override:
* gtk/keysyms.py:
* gtk/gdkgc.override:
* gtk/gtkunixprintmodule.c:
* gtk/gdkpixbuf.override:
* gtk/gdkcairo.override:
* gtk/gtkclist.override:
* gtk/gtktextview.override:
* gtk/pygtkcellrenderer.c:
* gtk/gdkrectangle.override:
* gtk/compat.py:
* gtk/pygtkcellrenderer.h:
* gtk/gtkmodule.c:
* pangomodule.c:
* atk.override:
* COPYING:
* pangocairomodule.c:
* atkmodule.c:
Update the address of the FSF by replacing old bits with new ones.
Fixes bug 577154.
2009-03-25 Gian Mario Tagliaretti <[email protected]>
* gtk/gtkbuilder.override: Wrap gtk_builder_add_objects_from_string
and gtk_builder_add_objects_from_file, add a convenience function
pylist_to_strv which gets a list of strings and returns an array.
2009-03-20 Gian Mario Tagliaretti <[email protected]>
* gtk/gdk-2.16.defs:
* gtk/gtk-2.16.defs:
* gtk/gtk-2.16-types.defs:
* configure.ac:
* gtk/Makefile.am: Add GTK+ 2.16 API
2009-03-07 Gian Mario Tagliaretti <[email protected]>
* gtk/gtkiconview.override:
wrap gtk.IconView.convert_widget_to_bin_window_coords()
2009-03-07 Gian Mario Tagliaretti <[email protected]>
* gtk/gdk-base.defs: gtk.gdk.selection_owner_set_for_display() should
accept None for GdkWindow.
2009-03-07 Gian Mario Tagliaretti <[email protected]>
* gtk/gdk-2.14.defs: add gtk.gdk.Window.redirect_to_drawable()
2009-03-04 Gian Mario Tagliaretti <[email protected]>
* gtk/gdk-2.14.defs: gdk.AppLaunchContext.set_icon_name should accept
None for icon_name.
2009-03-04 Gian Mario Tagliaretti <[email protected]>
* gtk/gdk-2.14.defs: gdk.AppLaunchContext.set_icon should accept
None for icon.
2009-03-01 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.14.defs: gtk.Tooltip.set_icon_from_icon_name should accept
None for icon_name.
2009-02-28 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.14-types.defs: add GtkNumberUpLayout enum
2009-02-28 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.14.defs: add gtk.PrintSettings.[get|set]_number_up_layout
which were forgotten in the last release.
2009-02-27 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.14.defs: gtk.show_uri should accept None for screen.
2009-02-27 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.14.defs: gtk.MountOperation set the default parent window
in constructor to None.
2009-02-26 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.14.defs: deprecate gtk.FontSelectionDialog.get_apply_button()
2009-02-22 Gian Mario Tagliaretti <[email protected]>
Bug 311008 – pygtk-demo fixes
* examples/pygtk-demo/pygtk-demo.py: Apply a patch from Andi Albrecht.
* examples/pygtk-demo/demos/pixbufs.py: Remove deprecation Warnings.
2009-02-22 Gian Mario Tagliaretti <[email protected]>
Bug 309180 – gtk.MessageDialog exposes private attributes
* gtk/gtk.override: add deprecation warnings using private attributes.
2009-02-22 Gian Mario Tagliaretti <[email protected]>
Bug 447388 – pixbuf.get_pixels_array() doesn't correctly flag the array
as non-contiguous
* gtk/gdkpixbuf.override: Fix the rowstride for pixbuf with padded rows.
Patch from Tim Evans
2009-02-20 James Henstridge <[email protected]>
* ltihooks.py: relicense file from GPL to LGPL 2.1 for benefit of
pygst. Not sure why I used a GPL header to start with.
2009-02-15 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-base.defs: Fix a small typo.
2009-02-15 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-base.defs: Add deprecation warnings to the old gtk.Tooltips
2009-02-01 Gustavo J. A. M. Carneiro <[email protected]>
* gtk/gtktextview.override
(_wrap_gtk_text_buffer_register_deserialize_format): Return the
deserialized string as a new memory buffer. Closes #567747.
(_wrap_gtk_text_buffer_serialize): We must free the original
deserialized string buffer (caller owns return).
2009-01-31 Gian Mario Tagliaretti <[email protected]>
* NEWS: update to reflect 2.14 branch
2009-01-30 Gian Mario Tagliaretti <[email protected]>
Bug 563717 – GNOME Goal: Clean up GLib and GTK+ includes
* gtk/gtk.override:
* gtk/gtkunixprint.override:
* gtk/pygtktreemodel.h:
* gtk/gtkunixprintmodule.c:
* gtk/pygtkcellrenderer.h: Clean up GLib and GTK+ includes,
patch from Przemysław Grzegorczyk.
2009-01-28 Gian Mario Tagliaretti <[email protected]>
Bug 566493 – gtk_accel_groups_activate is not available
* gtk.override: clean up ignore section which contains lots of methods
that don't exist while closing the bug by removing
(gtk_accel_groups_activate) from ignore.
=== PyGTK 2.14.0 ===
2009-01-28 Gian Mario Tagliaretti <[email protected]>
Bug 556130 – bogus override of python includes in configure.ac
* configure.ac: Don't override PYTHON_INCLUDES, it's already set
by AM_CHECK_PYTHON_HEADERS patch by Loïc Minier.
2009-01-27 Gian Mario Tagliaretti <[email protected]>
* configure.ac: version bump to 2.15.0.
2008-12-02 Paul Pogonyshev <[email protected]>
Bug 562991 – memory leak in gdk.draw_indexed_image
* gtk/gdkdraw.override (_wrap_gdk_draw_indexed_image): Free
`colors' array.
2008-12-01 Gian Mario Tagliaretti <[email protected]>
* gtk/Makefile.am:
* gtk/gtkunixprint-2.12.defs:
* gtk/gtkunixprint-2.14.defs:
* gtk/gtkunixprint-base-types.defs:
* gtk/gtkunixprint-base.defs:
* gtk/gtkunixprint.defs: split gtkunixprint defs in order to support
multiple gtk versions.
2008-09-12 Gian Mario Tagliaretti <[email protected]>
* configure.ac: remove pygobject version check for gtk+ 2.14
2008-09-11 Paul Pogonyshev <[email protected]>
* configure.ac: PyGObject 2.15.5 is required to compile pygtk
2.14.
2008-09-11 Michiel de Hoon <[email protected]>
Bug 524327 – Interactive PyGTK
* gtk/gtk.override (_main_quit, _loop, _wrap_set_interactive): New
functions.
* gtk/__init__.py: Make PyGTK interactive.
2008-09-11 Paul Pogonyshev <[email protected]>
Bug 481715 – Need way to assign to a GtkTextIter
* gtk/gtktextview.override (_wrap_gtk_text_iter_assign): New
function (based on patch by Owen Taylor).
* tests/test_textview.py (TextIterTest): New test.
2008-09-10 Paul Pogonyshev <[email protected]>
Bug 550442 – gdk.c:19188: error: ‘GDK_TYPE_APP_LAUNCH_CONTEXT’
undeclared (first use in this function)
* gtk/gdk.override: Include <gdk/gdk.h> itself.
2008-09-09 Paul Pogonyshev <[email protected]>
Bug 551505 – set_parent_window(None) should work
* gtk/gtk-base.defs (gtk.Widget.set_parent_window): Accept None
too.
2008-09-09 Paul Pogonyshev <[email protected]>
Bug 539475 – gtk.gdk.threads_(enter|leave) promote dead-lock-prone
synchronization
* gtk/__init__.py (gdk.lock): New context manager.
2008-09-08 Paul Pogonyshev <[email protected]>
Bug 550754 – need to import GIO types from PyGObject package
* configure.ac: Determine if `gio-types.defs' is installed as part
of PyGObject.
* gtk/Makefile.am: Use it to register GIO types if installed.
* gtk/gdk.override: Make gio.AppLaunchContext import conditional.
Add conditional import of gio.Icon.
* gtk/gtk.override: Make gio.MountOperation import conditional.
Add conditional imports of gio.File and gio.Icon.
2008-09-02 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.14.defs: comment out for a while gtk_selection_data_get_data
waiting to fix a problem in codegen.
2008-09-01 Gian Mario Tagliaretti <[email protected]>
* configure.ac: require GTK+ 2.13.8 for pygtk 2.14
* gtk/gtk-2.14.defs: update with latest API changes in GTK+
2008-09-01 Gian Mario Tagliaretti <[email protected]>
* configure.ac: require pygobject 2.15.4 for pygtk 2.14
2008-09-01 Gian Mario Tagliaretti <[email protected]>
Bug 309554 – gtk.Widget.list_accel_closures not wrapped
* gtk/gtkwidget.override:
* tests/Makefile.am:
* tests/test_accel_closures.py: Wrap gtk_widget_list_accel_closures
patch from Gustavo Carneiro.
2008-08-31 Gian Mario Tagliaretti <[email protected]>
* gtk/pygtktreemodel.c: Remove compiler warnings.
2008-08-28 Paul Pogonyshev <[email protected]>
Bug 541476 – Update pango examples
* examples/pango/utf8-demo.py: Fix interpreter line. Replace all
escapes with corresponding characters. Use gtk.main_quit()
instead of deprecated gtk.mainquit().
* examples/pango/extentdemo.py: Fix interpreter line.
2008-08-28 Paul Pogonyshev <[email protected]>
Bug 529623 – TypeError not raised when setting gtk.TreeView
adjustment property to None
* gtk/gtk-base.defs (gtk.ScrolledWindow.set_hadjustment): Allow
the argument to be None.
(gtk.ScrolledWindow.set_vadjustment): Likewise.
2008-08-28 Paul Pogonyshev <[email protected]>
Bug 526189 – add __str__ and/or __repr__ to several types
* gtk/gdk.override (_wrap_gdk_cursor_tp_repr): New function.
* gtk/gdkcolor.override (pygdk_color_to_string_smart)
(_wrap_gdk_color_tp_repr, _wrap_gdk_color_tp_str): New functions.
* gtk/gdkevent.override (_wrap_gdk_event_tp_repr): New function.
* gtk/gdkrectangle.override (_wrap_gdk_rectangle_tp_repr): New
function.
* tests/test_color.py (Tests.test_repr, Tests.test_str): New tests.
(Tests._test_color_list): New helper method.
* tests/test_rectangle.py (Tests.test_repr): New test.
(Tests._test_rectangle_list): New helper method.
2008-08-28 Paul Pogonyshev <[email protected]>
Bug 534658 – Avoid warning when compiling against Python 2.5 or
older
* gtk/gtk.override (pygtk_main_watch_prepare): Avoid GCC warning.
2008-08-26 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.14.defs: Include latest 2.14 API added in GTK+ itself.
2008-08-25 Paul Pogonyshev <[email protected]>
Bug 548602 – C-isms in pango.FontDescription
* pango.defs (pango.FontDescription.copy_static)
(pango.FontDescription.set_family_static)
(pango.FontDescription.merge_static): Deprecate.
2008-08-24 Gian Mario Tagliaretti <[email protected]>
* configure.ac: post release version bump.
=== PyGTK 2.13.0 ===
2008-08-24 Gian Mario Tagliaretti <[email protected]>
* NEWS: updated.
* README: updated.
2008-08-24 Gian Mario Tagliaretti <[email protected]>
* tests/test_treeview.py: Comment out test_default_attributes until
we get a response on bugs #546005 and #498010.
2008-08-24 Paul Pogonyshev <[email protected]>
* gtk/gtk-base.defs (gtk.Toolbar.set_icon_size)
(gtk.Toolbar.unset_icon_size): Undeprecate based on the same move
in GTK+ itself (see bug #314172).
2008-08-24 Paul Pogonyshev <[email protected]>
Bug 548180 – install compatibility symlink for pygtk-codegen-2.0
* pygtk-codegen-2.0.in: New file.
* configure.ac:
* Makefile.am: Hook it up.
2008-08-21 Gian Mario Tagliaretti <[email protected]>
* NEWS: Updated.
2008-08-21 Gian Mario Tagliaretti <[email protected]>
* docs/Makefile.am: Fix a problem with distcheck and avoid including
.svn dir in the resulting tarball.
2008-08-18 Gian Mario Tagliaretti <[email protected]>
Bug 548312 – gtk_font_selection_get_family_entry and
gtk_font_selection_get_face_entry are gone
* gtk/gtk-2.14.defs: remove gtk_font_selection_get_family_entry and
gtk_font_selection_get_face_entry since they are gone in GTK+ itself.
Patch by Björn Lindqvist.
2008-08-18 Gian Mario Tagliaretti <[email protected]>
Bug 548349 – gtk_widget_get_snapshot(NULL) is allowed
* gtk/gtk-2.14.defs: (gtk.Widget.get_snapshot) Accept None and
default to None. Reported by Björn Lindqvist.
2008-08-09 Paul Pogonyshev <[email protected]>
* gtk/gtk-base.defs (gtk.CellViewset_background_color): Accept
None (bug #546733).
2008-08-03 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.14.defs: rename gtk_window_get_default to
gtk_window_get_default_widget see #65818.
* configure.ac: GTK+ 2.13.6 is required to compile pygtk.
2008-08-02 Paul Pogonyshev <[email protected]>
Bug 527212 – types with well-defined equality semantics are not
properly comparable
* gtk/gdk.override (_wrap_pygdk_region_tp_richcompare): New
function.
* gtk/gdkcolor.override (_wrap_gdk_color_tp_richcompare): New
function.
* gtk/gdkrectangle.override (_wrap_gdk_rectangle_tp_richcompare):
New function.
* tests/test_conversion.py (testColorCreation): Move to thematic
test file.
* tests/Makefile.am:
* tests/test_color.py:
* tests/test_rectangle.py: Two new test files.
2008-07-29 Gian Mario Tagliaretti <[email protected]>
* configure.ac: pygobject 2.15.3 is required to compile pygtk 2.14.
2008-07-26 Paul Pogonyshev <[email protected]>
* gtk/gtkbuilder.override (PyGCustomSignalNotify): Add
'missing_handlers' (Python list) and 'exception_pending' (boolean)
fields.
(connect_many, _wrap_gtk_builder_connect_signals): Warn user on
missing handlers and set/modify new fields as appropriate (bug
#543768).
2008-07-15 Johan Dahlin <[email protected]>
* configure.ac: rename from configure.in
2008-07-26 Gian Mario Tagliaretti <[email protected]>
Bug 544777 – Add GTK+ 2.14 API in PyGTK
* gtk/gdk.override:
* gtk/gtk.override:
* gtk/gdk-2.14.defs:
* gtk/gtk-2.14.defs:
* gtk/gtk-2.14-types.defs:
* gtk/gdk-base-types.defs:
* gtk/Makefile.am: Add GTK+ 2.14 API
* configure.in: Bump version to 2.13.0.
2008-07-19 Paul Pogonyshev <[email protected]>
* docs/Makefile.am (EXTRA_DIST): Don't include full directories:
that drags in the '.svn's in them (bug #530142).
2008-07-15 Johan Dahlin <[email protected]>
* gtk/libglade.override:
modulename should be gtk.glade, not just glade.
Spotted by pychecker.
2008-07-14 Paul Pogonyshev <[email protected]>
* gtk/gtk-base.defs (gtk.CellRenderer.do_start_editing): Mark
return value as optional (bug #542583).
bug 542821:
* codegen: Remove directory, we will use PyGObject's codegen from
now on.
* configure.in: Remove local codegen mentions.
(CODEGENDIR): New AC_SUBST: determine where installed PyGObject's
codegen is.
* Makefile.am:
* gtk/Makefile.am: Remove local codegen mentions and use
'CODEGENDIR' instead.
* MANIFEST.in:
* pygtk.spec.in:
* setup.py: Remove all mentions of codegen.
* pygobject-2.0.pc.in: Remove file (unused).
* pygtk-2.0.pc.in: Change 'codegendir' to refer to PyGObject's
codegen.
2008-07-08 Murray Cumming <[email protected]>
* codegen/h2def.py: clean_func(): Strip GSEAL out, to avoid
us thinking that there are many functions called GSEAL.
2008-06-26 Paul Pogonyshev <[email protected]>
* gtk/gtk.override (_wrap_gtk_plug_new): Fix to work also with
integer 'socket_id' argument (bug #539365).
* tests/Makefile.am:
* tests/test_plug.py: New test file.
* gtk/gtk-2.12.defs (gtk.Builder.add_from_string): Explain why
'length' is preserved in definition, but not mentioned in docs.
2008-06-24 Paul Pogonyshev <[email protected]>
* gtk/gtktreeview.override (_wrap_gtk_tree_model_tp_getitem): Fix
logic in negative index branch to avoid refcount corruption.
(_wrap_gtk_tree_model_tp_setitem): Likewise (bug #537459).
* tests/test_liststore.py (ListStoreTest.testNegativeIndexGet)
(ListStoreTest.testNegativeIndexSet): Two new tests for the bug.
2008-06-23 Gian Mario Tagliaretti <[email protected]>
Bug 539743 – Missing method gtk.IconView.get_tooltip_context
* gtk/gtk.override: wrap gtk.IconView.get_tooltip_context
* examples/pygtk-demo/demos/tooltip.py: use the above method.
2008-06-22 Paul Pogonyshev <[email protected]>
* gtk/gtk.override (_wrap_gtk_action_set_menu_item_type)
(_wrap_gtk_action_set_tool_item_type): Check that argument is a
subclass of gtk.MenuItem or gtk.ToolItem correspondingly (bug
#533644).
* tests/test_actiongroup.py (ActionTest.testSetItemClasses): New
test for the added type check.
2008-06-22 Gian Mario Tagliaretti <[email protected]>
Bug 530145 – Missing method gtk.TreeView.get_tooltip_context
* gtk/gtk.override: wrap gtk.TreeView.get_tooltip_context
* examples/pygtk-demo/demos/tooltip.py: use the above method.
2008-06-21 Paul Pogonyshev <[email protected]>
* gtk/gtk.override (_wrap_gtk_button_new): Fix 'use_underline'
being ignored if neither 'text' nor 'stock' is set (bug #524187).
* tests/Makefile.am:
* tests/test_button.py: New test file.
2008-06-10 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk.override: wrap gtk.show_about_dialog()
fixes (bug #167603) patch from Christopher Aillon.
2008-06-09 Gian Mario Tagliaretti <[email protected]>
* tests/Makefile.am:
* tests/test_filechooserdialog.py: New test
* gtk/gtk.override: Add a gtk.FileChooserDialog get_action method to
workaround an issue with the same mothos of gtk.Widget being called.
fixes (bug #534042).
2008-06-06 Johan Dahlin <[email protected]>
* gtk/gtk-base.defs: Deprecate gtk.FileSelection
2008-06-06 Gian Mario Tagliaretti <[email protected]>
* examples/Makefile.am: Ship tooltip.py example in pygtk-demo.
2008-06-06 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-1.12.defs: Allow None in gtk.recent_action_new_for_manager
params.
2008-06-06 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-1.12.defs: Allow None in gtk.RecentAction constructor params,
fixes (bug #536882).
2008-06-01 Björn Lindqvist <[email protected]>
* docs/Makefile.am: Move CSS_DATA variable inside the if
ENABLE_DOCS block. Makes make work if --enable-docs=no is
specified and pygobject docs are not available. (bug #536077)
2008-05-20 Owen Taylor <[email protected]>
* gtk/gtk.override: Allocate the right amount of memory
for PySignalWatchSource, fixing memory corruption.
(bug #534083)
2008-05-18 Gian Mario Tagliaretti <[email protected]>
* examples/Makefile.am:
* examples/pygtk-demo/demos/textscroll.py: add new example
by Muntyan, fixes (bug #522047).
2008-05-18 Gian Mario Tagliaretti <[email protected]>
* gtk/gdk-base.defs: gtk.gdk.DragContext.set_icon_widget allow mask
parameter to be NULL, fixes (bug #497781).
2008-05-08 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.12.defs: wrap gtk_widget_set_has_tooltip,
fixes (bug #524987).
2008-05-02 Gian Mario Tagliaretti <[email protected]>
* gtk/gdk-2.12.defs: wrap gdk_notify_startup_complete_with_id,
fixes (bug #454985).
2008-05-02 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.12.defs: wrap set_tip_area of gtk.Tooltip,
fixes (bug #485171).
2008-05-02 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-base-types.defs: Wrap region field for expose event,
fixes (bug #495933).
2008-05-02 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-base-types.defs: wrap gtk.Border fields,
fixes (bug #484030).
2008-05-02 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-base-types.defs: wrap the requisition field of gtk.Widget,
fixes (bug #369311).
2008-05-02 Gian Mario Tagliaretti <[email protected]>
* gtk/gdkevent.override: wrap is_modifier for key press/release,
fixes (bug #367970).
2008-05-02 Gian Mario Tagliaretti <[email protected]>
* gtk/gdkcairo.override: cairo_set_source_pixmap should accept any
drawable not just pixmaps, fixes (bug #491256).
2008-05-01 Gian Mario Tagliaretti <[email protected]>
* gtk/gdk.override: Wrap gdk_region_get_rectangles,
(bug #517099).
2008-04-27 Paul Pogonyshev <[email protected]>
* gtk/gdkcolor.override (_wrap_gdk_color_new): Add constructor
variant similar to what gtk.gdk.color_parse() done. Raise with
useful message in case of wrong arguments (bug #527718).
* tests/test_conversion.py (Tests.testColorCreation): Test the new
constructor with string argument.
2008-04-15 Johan Dahlin <[email protected]>
patch by: Johan Euphrosine <[email protected]>
* configure.in:
Unbreak pango/cairo dependency chains (bug #528217)
2008-03-24 Paul Pogonyshev <[email protected]>
* gtk/gdkevent.override (_wrap_gdk_event_tp_setattr): Fix several
bugs wrt 'y_root' caused by copy-paste (bug #519631).
2008-02-14 Johan Dahlin <[email protected]>
* examples/Makefile.am:
* examples/gtk/application.py:
Add an application example, which includes hoovering statusbar
updates using a ui manager.
2008-02-06 Yevgen Muntyan <[email protected]>
* gtk/gdk.override:
* gtk/gdk-base.defs: Create instance of GdkScreen using
gdk_screen_get_default() to avoid segfault. Fix #444974.
2008-02-01 Paul Pogonyshev <[email protected]>
* gtk/gdkpixbuf.override (_wrap_gdk_pixbuf_save): Detach from
Python interpreter while saving, which can take a long time.
2008-01-31 Nathaniel Smith <[email protected]>
* examples/gtk/scrollable.py (Layout.do_realize, Layout.do_map):
Use conceptually correct set_flags() calls.
* examples/gtk/widget.py (PyGtkWidget.do_realize): Likewise.
2007-01-29 Olivier Crete <[email protected]>
* codegen/h2def.py (DefsWriter.__init__): Fix copy-paste typos.
2008-01-29 Paul Pogonyshev <[email protected]>
* gtk/gtk-base.defs (insert_action_group): Add default value of -1
to `pos' argument.
2008-01-06 Johan Dahlin <[email protected]>
* gtk/gtk-2.12.defs (GtkBuilder.add_from_string): Set the default
length to -1.
2008-01-03 Johan Dahlin <[email protected]>
* configure.in: Post release version bump
=== PyGTK 2.12.1 ===
2008-01-03 Johan Dahlin <[email protected]>
* NEWS: Update
* configure.in:
* gtk/gtk.override (pygtk_main_watch_prepare):
Port PyGObject patch from #481569 over to PyGTK, this avoids
unnecessary wakeups every 100ms.
2007-12-16 Gian Mario Tagliaretti <[email protected]>
* examples/pygtk-demo/demos/changedisplay.py: Fix change display demo,
patch by Yevgen Muntyan. fixes #354896.
2007-12-16 Paul Pogonyshev <[email protected]>
* gtk/gtk-base.defs (get_cell_area): Accept null `column' (fixes
#358091).
2007-12-16 Guillaume Cottenceau <[email protected]>
* gtk/gdk-base.defs (flip): Add `caller-owns-return'.
2007-12-15 Gian Mario Tagliaretti <[email protected]>
* examples/pango/extentdemo.py: add new example (by Adam Olsen,
and Behdad Esfahbod), fixes #400810.
2007-12-13 Gian Mario Tagliaretti <[email protected]>
* gtk/gdk-base.defs:
(pixbuf_new_from_file)
(pixbuf_new_from_file_at_size): release the GIL, fixes #415611
patch by Jakub Stachowski
2007-12-12 Ed Catmur <[email protected]>
* Makefile.am (EXTRA_DIST): Also distribute m4 files.
2007-12-12 Sebastien Bacher <[email protected]>
* examples/glade/README: Fix wrong command name.
2007-12-12 Richard Hult <[email protected]>
* examples/pygtk-demo/demos/hypertext.py
(HypertextDemo.key_press_event): Use `gtk.keysyms', not `gtk.gdk'
where applicable.
2007-12-10 Gustavo J. A. M. Carneiro <[email protected]>
* gtk/gtk-base.defs (render_icon): Bug 502871:
gtk.Style.render_icon leaks a reference to the returned pixbuf.
2007-11-29 Dan Winship <[email protected]>
* codegen/defsgen.py (GType): GType is a gulong, not a guint.
Fixes crash on x86_64. #500508
2007-11-25 Matthew Barnes <[email protected]>
* gtk/Makefile.am: Install gtk-extrafuncs.defs. Fixes #380020.
2007-11-16 Yevgen Muntyan <[email protected]>
* gtk/gtk-base.defs: Add several `null-ok' for accel-related
functions.
2007-11-13 Yevgen Muntyan <[email protected]>
* gtk/gtkcontainer.override: (_wrap_GtkContainer__proxy_do_forall):
do not leak allocated user data. Fixes #480306, patch by Mark Doffman.
2007-11-12 Yevgen Muntyan <[email protected]>
* autogen.sh: use absolute path of srcdir; and use it in ACLOCAL_FLAGS.
2007-11-03 Julien Moutinho <[email protected]>
* gtk/gtk.override (_wrap_gtk_clipboard_set_with_data): Fix typo
in the code.
2007-10-20 Gian Mario Tagliaretti <[email protected]>
* configure.in: raise pygobject dependency to 2.14.0, fixes #478718
reported by Daniel Gryniewicz.
2007-10-18 Gian Mario Tagliaretti <[email protected]>
* README: mention how to build docs, patch from Björn Lindqvist,
fixes #479379.
2007-10-18 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.12.defs:
(gtk_widget_set_tooltip_window) Allow None in parameter.
2007-10-16 Gian Mario Tagliaretti <[email protected]>
* gtk/gtk-2.12.defs:
(gtk_widget_set_tooltip_markup)
(gtk_widget_set_tooltip_text)
(gtk_icon_view_set_tooltip_cell)
(gtk_tool_item_set_tooltip_text)
(gtk_tool_item_set_tooltip_markup)
(gtk_tree_view_set_tooltip_cell) Allow None in parameters.
2007-09-21 Jeremy Katz <[email protected]>
* gtk/gtktreeview.override
(gtk_tree_view_convert_widget_to_bin_window_coords)
(gtk_tree_view_convert_widget_to_tree_coords)
(gtk_tree_view_convert_tree_to_widget_coords)
(gtk_tree_view_convert_tree_to_bin_window_coords)
(gtk_tree_view_convert_bin_window_to_widget_coords)
(gtk_tree_view_convert_bin_window_to_tree_coords): Fix wrapper (#479012)
2007-09-16 Gustavo J. A. M. Carneiro <[email protected]>
* configure.in: Post-release bump.
=== 2.12.0 ===
2007-09-16 Gustavo J. A. M. Carneiro <[email protected]>
* configure.in: Version 2.12.0.
* NEWS: Update.
2007-09-06 John Finlay <[email protected]>
* docs/Makefile.am (install-data-hook): Add pygobject docs dir to
index dirs for fixxref.py
2007-09-04 John Finlay <[email protected]>
* codegen/defsgen.py (main): Create a GObject to initialize param pool
Fixes #473576 (patch by Mark Doffman).
2007-09-02 Gustavo J. A. M. Carneiro <[email protected]>
* pango.override:
* tests/test_pango.py:
Bug 472908 – Make pango.Context non-instantiable.
2007-09-01 John Finlay <[email protected]>
* codegen/argtypes.py (StringArg.write_param)
* codegen/codegen.py (Wrapper.write_function_wrapper): Allow StringArg
to have default empty string ("")
2007-08-30 Gustavo J. A. M. Carneiro <[email protected]>
* gtk/gdk-2.12.defs: Put the X11 defs inside (ifdef GDK_TARGET_X11
...). Fixes Bug 471804 – X11 specific calls included in the gtk
module, breaking other backends.
2007-08-29 Johan Dahlin <[email protected]>
* pango.override: Make the bindings a bit more pythonic, implement
tp_str, tp_hash and tp_compare for a few objects.
* tests/test_pango.py: Add tests.
2007-08-27 Gustavo J. A. M. Carneiro <[email protected]>
* configure.in: Post-release version bump.
=== 2.11.0 ===
2007-08-27 Johan Dahlin <[email protected]>
* README:
* NEWS: Update
2007-08-27 Gustavo J. A. M. Carneiro <[email protected]>
* configure.in (gtk_version): Add -DHAVE_GTK_2_12 to
PYGTK_CODEGEN_DEFINES when compiling with gtk+ 2.12.
* gtk/gtk-base.defs (scroll_child): Idem. for
ScrolledWindow.scroll_child.
* gtk/gtk-2.10.defs (reorder_tab): Idem for reorder_tab.
* gtk/gtk-base.defs: Adjust GtkNotebook virtual
change_current_page return type to gboolean if compiling against
gtk+ >= 2.12.
* docs/Makefile.am (EXTRA_DIST): Add icons and cursors to dist.
* configure.in: Fix CFLAGS to allow compilation on Solaris.
2007-08-25 John Finlay <[email protected]>
* Makefile.am (doc-dist): Copy icons and cursors when making doc-dist.
2007-08-23 Gustavo J. A. M. Carneiro <[email protected]>
* gtk/Makefile.am: Fix makefile rules to regenerate the defs after
each configure.
2007-08-21 John Finlay <[email protected]>
* docs/cursors: Add missing cursor images
* docs/icons: Add missing stock item icons
* docs/Makefile.am (install-data-local): Install the stock item icons
and cursor images in subdirectories of the reference docs.
2007-08-20 Johan Dahlin <[email protected]>
* tests/test_bin.py: New file.
* gtk/gtk.override (_wrap_gtk_bin__set_child): New function.
Closes #398155.
2007-08-14 Paul Pogonyshev <[email protected]>
reviewed by: Gustavo Carneiro
* gtk/gtk-base.defs (GtkTextLayout.set_buffer): Allow None as
`buffer'.
(GtkTextView.set_buffer): Likewise. Closes #466375.
2007-08-15 Gustavo J. A. M. Carneiro <[email protected]>
* gtk/gdkevent.override:
Bug 466990 – GdkEventClient binding is 64-bit unclean.
2007-08-11 Paul Pogonyshev <[email protected]>
reviewed by: Johan Dahlin
* gtk/gtk-base.defs (GtkContainer.set_focus_child): Allow None as
`widget'.