forked from cr33dog/pyxfce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1506 lines (977 loc) · 42.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
2006-03-25 16:16 dannym
* COPYING: swich e-mairl now that it works :)
2006-03-02 08:26 dannym
* gui/icontheme.override: re-add icontheme.override
2006-03-01 00:28 dannym
* gui/Makefile.am, gui/aboutdialog.defs, gui/dialogs.defs,
gui/gen, gui/guimodule.c, gui/icons.c, gui/icons.defs,
gui/icons.override, gui/icontheme.defs: re-add icontheme stuff,
made it work again
2006-02-28 22:19 dannym
* gui/Makefile.am: get rid of icontheme stuff now that brian got
rid of icontheme stuff :)
2006-02-28 22:18 dannym
* gui/gen, gui/icontheme.c, gui/icontheme.defs,
gui/icontheme.override: get rid of icontheme stuff now that
brian got rid of icontheme stuff :)
2006-02-12 18:13 dannym
* netk/screen.c, netk/screen.defs: add netk_screen_get_number
2006-02-12 18:12 dannym
* panel/plugin_iface.c, panel/plugin_iface.defs: jasper added
xfce_panel_plugin_focus_widget () to the plugin library, so me
too :)
2006-02-07 19:21 dannym
* examples/panel/testplugin1/testplugin.desktop,
examples/panel/testplugin1/testplugin.py: fix test plugin
2006-01-17 22:24 dannym
* gui/gui.py: use meaningful name
2006-01-07 02:26 dannym
* gui/guimodule.c: fix #1307
2006-01-07 02:25 dannym
* gui/startup-notification.defs: add generated defs file
2006-01-06 23:35 dannym
* util/utilmodule.c: add licenses
2006-01-06 23:25 dannym
* gui/gui.py: fix in_terminal
2006-01-06 23:21 dannym
* gui/gui.py, gui/guimodule.c: add spawn_command_line and
spawn_args
2006-01-06 22:40 dannym
* gui/Makefile.am, gui/gdk_extensions.defs, gui/gen,
gui/gtk_extensions.defs, gui/guimodule.c,
gui/startup-notification.override: add startup notification
2006-01-06 22:26 dannym
* gui/Makefile.am, gui/exec.override: remove exec (replaced by
startup-notification)
2006-01-06 22:24 dannym
* configure.ac, gui/Makefile.am, gui/exec.override,
gui/startup-notification.override: add startup-notification
2006-01-06 16:56 dannym
* gui/dialogs.c: fix
2006-01-06 16:54 dannym
* gui/dialogs.c, gui/dialogs.override: allow None
2006-01-06 16:52 dannym
* gui/dialogs.c, gui/dialogs.override: avoid internal compiler
error with gcc 4.0.2
2006-01-06 16:44 dannym
* gui/dialogs.c, gui/dialogs.override, gui/gtk_style.defs: try
fixing bug 1309
2006-01-01 13:03 dannym
* panel/Makefile.am, panel/external_plugin.c, panel/panelmodule.c,
panel/plugin_iface.c, panel/plugin_iface.override: add some
panel stuff (get_screen_position, cleanups)
2006-01-01 12:54 dannym
* panel/external_plugin.override: fix warning
2005-12-31 20:14 dannym
* panel/panelmodule.c: fix init order
2005-12-31 19:53 dannym
* panel/plugin_iface.c, panel/plugin_iface.override: not that way
2005-12-31 19:43 dannym
* panel/external_plugin.c, panel/external_plugin.defs,
panel/external_plugin.override, panel/gen, panel/plugin_iface.c,
panel/plugin_iface.defs, panel/plugin_iface.override: add panel
plugin interface to panel plugin :)
2005-12-18 11:16 pollux
* Makefile.am: add dist-bz2 and distcheck-bz2 targets in order to
build snapshots
2005-09-27 19:50 dannym
* examples/panel/testplugin1/testplugin.py,
examples/systemtray/testtrayarea.py: fix examples
2005-09-16 23:38 dannym
* gui/CHECKRUNNING_MAYBE: integrated
2005-09-16 23:38 dannym
* gui/CHECKRUNNING_MAYBE: override xfce_system_tray_check_running
so that it works global
2005-09-16 23:35 dannym
* examples/systemtray/testtrayarea.py: update test
2005-09-16 23:23 dannym
* gui/systemtray.c: generate
2005-09-16 23:22 dannym
* gui/systemtray.override: fix unneccessary incref none
2005-09-16 23:18 dannym
* gui/systemtray.c, gui/systemtray.override: add check_running
2005-09-16 23:02 dannym
* examples/systemtray/testtrayarea.py: add unregister hint comment
2005-09-16 22:58 dannym
* examples/Makefile.am, examples/configure.ac,
examples/systemtray, examples/systemtray/testtrayarea.py: add
systemtray example
2005-09-16 22:46 dannym
* gui/systemtray.c, gui/systemtray.override: add
xfce_system_tray_register (manual override)
2005-09-12 18:12 dannym
* configure.ac, examples/panel/testplugin1/Makefile.am: fix panel
detection
2005-09-12 16:38 dannym
* configure.ac: do not use config.h for python
2005-09-12 16:37 dannym
* autogen.sh: call fallback automake in case the other one is not
found
2005-09-10 12:12 dannym
* configure.ac, examples/configure.ac: moved panel plugin to
examples subtree
2005-09-10 12:10 dannym
* pyxfce-1.0.pc.in: fix pkgconfig
2005-09-10 12:08 dannym
* Makefile.am, configure.ac, examples/Makefile.am,
examples/configure.ac, pyxfce-1.0.pc.in: add pkgconfig in file
2005-09-10 12:01 dannym
* examples/m4, examples/m4/debug.m4, examples/m4/depends.m4,
examples/m4/jhflags.m4, examples/m4/python.m4: add m4 dir
2005-09-10 12:01 dannym
* configure.ac, examples/Makefile.am, examples/autogen.sh,
examples/configure.ac, examples/panel/Makefile.am,
examples/panel/testplugin1/Makefile.am, gui/guimodule.c,
m4/depends.m4, netk/netkmodule.c: integrate examples a bit
2005-09-09 21:10 dannym
* configure.ac: update version, just in case, to signal new panel
support
2005-09-09 21:00 dannym
* Contributors: fix email
2005-09-09 20:58 dannym
* Contributors, examples/panel/testplugin1/testplugin.py: some
debugging stuff
2005-09-09 20:56 dannym
* panel/gen, panel/plugin_iface.c, panel/plugin_iface.defs,
panel/plugin_iface.override: add panel plugin interface
2005-09-09 20:50 dannym
* panel/panel.py: add more comment
2005-09-09 20:43 dannym
* panel/panel.py: add some properties comments
2005-09-09 20:39 dannym
* examples/panel/testplugin1/testplugin.py, panel/panel.py,
panel/panelmodule.c: add orientation
2005-09-09 20:03 dannym
* panel/external_plugin.c, panel/external_plugin.override: remove
some debugging messages
2005-09-09 20:01 dannym
* examples/panel/testplugin1/testplugin.py,
panel/external_plugin.c, panel/external_plugin.defs,
panel/external_plugin.override, panel/panel.py,
panel/plugin_iface.defs: fix panel plugin interface (mighty
mouse)
2005-09-09 19:59 dannym
* examples/panel/testplugin1/testplugin.desktop,
examples/panel/testplugin1/testplugin.py: add testplugin :)
2005-09-08 20:49 dannym
* panel/external_plugin.c, panel/external_plugin.override: add
debugging stuff
2005-09-08 20:36 dannym
* panel/arrow_button.c, panel/arrow_button.defs,
panel/arrow_button.override, panel/enum_types.c,
panel/enum_types.defs, panel/enum_types.override, panel/enums.c,
panel/enums.defs, panel/enums.override, panel/external_plugin.c,
panel/external_plugin.defs, panel/external_plugin.override,
panel/gen, panel/itembar.c, panel/itembar.defs,
panel/itembar.override, panel/plugin_iface.c,
panel/plugin_iface.defs, panel/plugin_iface.override,
panel/window.c, panel/window.defs, panel/window.override:
support mighty mouse
2005-09-08 20:36 dannym
* Makefile.am, configure.ac: add strange workaround to make
BM_DEPEND_CHECK do what I want
2005-09-06 22:00 dannym
* configure.ac: update requirement, just in case
2005-09-06 21:42 dannym
* panel/external_plugin.c, panel/external_plugin.override:
print+clear errors
2005-09-06 21:35 dannym
* panel/external_plugin.override: add todo
2005-09-06 21:32 dannym
* panel/external_plugin.c, panel/external_plugin.override: free
memory as well after done (args)
2005-09-06 21:27 dannym
* panel/external_plugin.c, panel/external_plugin.override: get args
2005-09-06 21:08 dannym
* panel/external_plugin.c, panel/external_plugin.override: call
stuff in python from c:)
2005-09-06 20:58 dannym
* panel/external_plugin.c, panel/external_plugin.override: call
overridden stuff manually
2005-09-06 20:52 dannym
* panel/external_plugin.override: update name
2005-09-06 20:51 dannym
* panel/external_plugin.c, panel/external_plugin.override: try to
manually call method
2005-09-06 20:15 dannym
* panel/external_plugin.override: start overriding _info
2005-09-06 19:56 dannym
* panel/TODO: add todo
2005-09-06 19:56 dannym
* examples, examples/panel, examples/panel/testplugin1: prepare
example
2005-09-06 19:41 dannym
* __init__.py: use new panel if available :)
2005-09-06 19:33 dannym
* panel/gen: skip plugin.h
2005-09-06 19:32 dannym
* panel/oo: delete old dir
2005-09-06 19:32 dannym
* panel/arrow_button.c, panel/enum_types.c, panel/enums.c,
panel/external_plugin.c, panel/itembar.c, panel/plugin_iface.c,
panel/window.c: add c files (though they can be regenerated by
maintainer, user shouldnt)
2005-09-06 19:31 dannym
* panel/panelmodule.c: readd panelmodule
2005-09-06 19:29 dannym
* panel/gen-panel.c, panel/gen-panel_command.c,
panel/gen-plugins.c, panel/gen-xfce.c, panel/icons-h,
panel/icons.c, panel/icons.defs.manual, panel/panelmodule.c,
panel/support.c: fix
2005-09-06 19:12 dannym
* panel/panelmodule.c: fix registration
2005-09-06 19:09 dannym
* panel/window.override: fix uses
2005-09-06 19:07 dannym
* panel/window.override: add missing include
2005-09-06 19:05 dannym
* Makefile.am, aclocal.m4, configure.ac, panel/Makefile.am,
panel/enums.override, panel/external_plugin.override,
panel/itembar.override, panel/plugin.defs,
panel/plugin.override: fixes in definitions
2005-09-06 18:58 dannym
* panel/Makefile.am, panel/arrow_button.defs,
panel/arrow_button.override, panel/enum_types.defs,
panel/enum_types.override, panel/itembar.defs,
panel/plugin_iface.defs, panel/window.defs: fix defs for new
panel
2005-09-06 18:42 dannym
* autogen.sh: ubuntuify
2005-09-06 18:26 dannym
* configure.ac: update ac for new panel
2005-09-06 18:25 dannym
* panel/arrow_button.override, panel/enums.override,
panel/external_plugin.override, panel/itembar.override,
panel/plugin.override, panel/plugin_iface.override,
panel/window.override: fix override files
2005-09-06 18:19 dannym
* panel/Makefile.am, panel/arrow_button.defs,
panel/arrow_button.override, panel/enums.defs,
panel/enums.override, panel/external_plugin.defs,
panel/external_plugin.override, panel/itembar.defs,
panel/itembar.override, panel/plugin.defs,
panel/plugin.override, panel/plugin_iface.defs,
panel/plugin_iface.override, panel/window.defs,
panel/window.override: add overrides (unfinished), regen defs
2005-09-06 18:15 dannym
* panel/cpart, panel/gen, panel/icons.defs, panel/icons.override,
panel/main.defs, panel/oo, panel/oo/icons.override,
panel/oo/support.override, panel/oo/template.override,
panel/support.defs, panel/support.override,
panel/template.override, panel/xfce_arrow_button.defs,
panel/xfce_item.defs, panel/xfce_itembar.defs,
panel/xfce_panel_window.defs, panel/xfce_separator_item.defs:
prepare for new panel
2005-09-06 18:11 dannym
* panel.stable: copy panel.stable to support 4.2 panel (well, not
really)
2005-09-03 17:41 dannym
* gui/aboutdialog.c, gui/aboutdialog.defs,
gui/aboutdialog.override, gui/appmenuitem.c,
gui/appmenuitem.defs, gui/clock.c, gui/clock.defs,
gui/colorbutton.c, gui/colorbutton.defs, gui/decorbutton.c,
gui/decorbutton.defs, gui/decortoggle.c, gui/decortoggle.defs,
gui/dialogs.c, gui/dialogs.defs, gui/filechooser.c,
gui/filechooser.defs, gui/framebox.c, gui/framebox.defs,
gui/gdk-extensions.defs, gui/gdk_extensions.c, gui/gen,
gui/gtk-extensions.defs, gui/gtk_extensions.c, gui/gtk_style.c,
gui/gtk_style.defs, gui/gtktoxevent.c, gui/gtktoxevent.defs,
gui/iconbutton.c, gui/iconbutton.defs, gui/icons.c,
gui/icons.defs, gui/icontheme.c, gui/icontheme.defs,
gui/libxfcegui4.defs, gui/libxfcegui4_config.defs,
gui/menubutton.c, gui/menubutton.defs, gui/movehandler.c,
gui/movehandler.defs, gui/scaled_image.c, gui/scaled_image.defs,
gui/session_client.c, gui/session_client.defs, gui/systemtray.c,
gui/systemtray.defs, gui/togglebutton.c, gui/togglebutton.defs,
mcs/gen, mcs/gen-xfce_mcs-channel.c, mcs/gen-xfce_mcs-client.c,
mcs/gen-xfce_mcs-manager.c, mcs/mcs_client.defs,
mcs/mcs_common.defs, mcs/mcs_manager.defs, netk/application.c,
netk/application.defs, netk/class_group.c,
netk/class_group.defs, netk/enum_types.c, netk/enum_types.defs,
netk/gen, netk/marshal.defs, netk/pager.c, netk/pager.defs,
netk/screen.c, netk/screen.defs, netk/tasklist.c,
netk/tasklist.defs, netk/trayicon.c, netk/trayicon.defs,
netk/trayicon.override, netk/util.c, netk/util.defs,
netk/util.override, netk/window.c, netk/window.defs,
netk/window_action_menu.c, netk/window_action_menu.defs,
netk/window_menu.c, netk/window_menu.defs, netk/workspace.c,
netk/workspace.defs, util/desktopentry.c,
util/desktopentry.defs, util/desktopentry.override,
util/fileutils.c, util/fileutils.defs, util/gen, util/i18n.c,
util/i18n.defs, util/kiosk.c, util/kiosk.defs, util/miscutils.c,
util/miscutils.defs, util/rc.c, util/rc.defs, util/resource.c,
util/resource.defs, util/utf8.c, util/utf8.defs: small xfce svn
trunk / ubuntu hoary / pygtk 2.8 / gcc 4 fixes
2005-09-03 16:26 dannym
* aclocal.m4, configure.ac: fix required version, now that kelnos
fixed libxfcegui4
2005-09-02 22:50 dannym
* TODO: update todo
2005-09-02 22:22 dannym
* TODO: updated todo
2005-09-02 22:20 dannym
* TODO: update todo (mess)
2005-08-06 21:45 dannym
* configure.ac: update version
2005-08-06 21:45 dannym
* util/utilmodule.c: add some constants
2005-08-06 21:42 dannym
* gui/guimodule.c: add some more constants
2005-08-06 21:40 dannym
* netk/netkmodule.c: add some more constants
2005-08-06 21:39 dannym
* netk/netkmodule.c, netk/trayicon.c: hm... if I call the function
to add the constants, it might actually work.
2005-06-23 21:48 dannym
* Contributors, configure.ac, netk/class-group.defs,
netk/enum-types.defs, netk/gen-class-group.c, netk/screen.c,
netk/window-action-menu.defs, netk/window-menu.defs: apply
Daichi's fix for dynamically determining CODEGEN_PATH
2005-05-30 13:32 dannym
* netk/screen.override: remove commented out stuff
2005-05-30 13:30 dannym
* netk/gen, netk/screen.c, netk/screen.defs, netk/screen.override:
add netk_screen_get_workspaces (emulated)
2005-05-29 19:40 dannym
* config.h.in: add missing config.h.in
2005-05-29 14:35 dannym
* configure.ac, mcs/tests/testclientaddchannel.py, util/gen,
util/resource.c, util/resource.defs, util/resource.override: use
new util enum type (one, resourcetype :))
2005-05-28 14:45 dannym
* mcs/tests/testclientaddchannel.py, mcs/xfce-mcs-channel.c,
mcs/xfce-mcs-channel.gob: add assertion, just in case
2005-05-28 14:42 dannym
* mcs/xfce-mcs-client.c, mcs/xfce-mcs-client.gob: remove debugging
msgs
2005-05-28 14:38 dannym
* mcs/gen-xfce_mcs-client.c, mcs/xfce-mcs-client.c,
mcs/xfce-mcs-client.gob, mcs/xfce-mcs-client.h,
mcs/xfce_mcs-client.defs: name signal manager_reconnected
2005-05-28 14:35 dannym
* mcs/gen-xfce_mcs-channel.c, mcs/gen-xfce_mcs-client.c,
mcs/gen-xfce_mcs-manager.c, mcs/tests/testclientaddchannel.py,
mcs/xfce-mcs-channel-private.h, mcs/xfce-mcs-channel.c,
mcs/xfce-mcs-channel.gob, mcs/xfce-mcs-channel.h,
mcs/xfce-mcs-client.c, mcs/xfce-mcs-client.gob,
mcs/xfce-mcs-client.h, mcs/xfce-mcs-manager-private.h,
mcs/xfce-mcs-manager.c, mcs/xfce-mcs-manager.gob,
mcs/xfce-mcs-manager.h, mcs/xfce_mcs-channel.defs,
mcs/xfce_mcs-client.defs, mcs/xfce_mcs-manager.defs: update test
name, rename add_channel -> register_channel, add
unregister_channel, add cleanup stuff
2005-05-28 14:12 dannym
* mcs/tests/testclientaddchannel.py, mcs/xfce-mcs-client.c,
mcs/xfce-mcs-client.gob, mcs/xfce-mcs-manager.c,
mcs/xfce-mcs-manager.gob: fix return values
2005-05-28 13:50 dannym
* mcs/gen-xfce_mcs-channel.c, mcs/gen-xfce_mcs-client.c,
mcs/gen-xfce_mcs-manager.c, mcs/mcs_client.override,
mcs/mcsmodule.c, mcs/xfce_mcs-channel.override,
mcs/xfce_mcs-client.override, mcs/xfce_mcs-manager.override: mcs
fixes
2005-05-28 13:34 dannym
* mcs/gen-xfce_mcs-channel.c, mcs/gen-xfce_mcs-client.c,
mcs/gen-xfce_mcs-manager.c, mcs/tests/test-xfce-mcs-client.c,
mcs/tests/testclientaddchannel.py,
mcs/xfce-mcs-channel-private.h, mcs/xfce-mcs-channel.c,
mcs/xfce-mcs-channel.gob, mcs/xfce-mcs-channel.h,
mcs/xfce-mcs-client.c, mcs/xfce-mcs-client.gob,
mcs/xfce-mcs-client.h, mcs/xfce-mcs-manager.c,
mcs/xfce-mcs-manager.gob, mcs/xfce-mcs-manager.h,
mcs/xfce_mcs-channel.defs, mcs/xfce_mcs-channel.override,
mcs/xfce_mcs-client.defs, mcs/xfce_mcs-client.override,
mcs/xfce_mcs-manager.defs, mcs/xfce_mcs-manager.override: split
mcs channel, not just name
2005-05-28 13:09 dannym
* mcs/tests/test-xfce-mcs-client.c, mcs/xfce-mcs-client-private.h,
mcs/xfce-mcs-client.c, mcs/xfce-mcs-client.gob: hmm... prepare
channel split
2005-05-28 13:01 dannym
* mcs/tests/test-xfce-mcs-client.c, mcs/xfce-mcs-client-private.h,
mcs/xfce-mcs-client.c, mcs/xfce-mcs-client.gob: fix segfault
2005-05-28 12:30 dannym
* mcs/tests/test-xfce-mcs-client.c: xfce mcs client C test program
2005-05-27 16:08 dannym
* mcs/gen-xfce_mcs-channel.c, mcs/mcs_manager.defs,
mcs/xfce_mcs-channel.defs: update generated files
2005-05-27 16:06 dannym
* mcs/tests/testclientaddchannel.py: update mcs test a bit, adding
callback
2005-05-27 15:59 dannym
* mcs/xfce-mcs-channel.c, mcs/xfce-mcs-channel.gob,
mcs/xfce-mcs-channel.h, mcs/xfce-mcs-client.c,
mcs/xfce-mcs-client.gob, mcs/xfce-mcs-manager.c,
mcs/xfce-mcs-manager.gob: split channel signals into
setting-changed, setting-added and setting-deleted
2005-05-27 15:05 dannym
* aclocal.m4, configure.ac, mcs/Makefile.am: move mcs enums to
libxfce4mcs
2005-05-26 22:25 dannym
* mcs/Makefile.am: update, add mcs-enum-typse
2005-05-26 22:17 dannym
* mcs/tests, mcs/tests/testclientaddchannel.py,
mcs/tests/testclientshowdialog.py: add tests for mcs
2005-05-26 22:15 dannym
* mcs/Makefile.am, mcs/gen-xfce_mcs-client.c,
mcs/gen-xfce_mcs-manager.c, mcs/xfce_mcs-client.override,
mcs/xfce_mcs-manager.override: register McsChannel for McsClient
and McsManager
2005-05-26 22:08 dannym
* configure.ac: update version to reflect mcs update
2005-05-26 22:06 dannym
* mcs/xfce-mcs-client.c, mcs/xfce-mcs-client.gob: use default
gdkscreen by default :)
2005-05-26 22:03 dannym
* mcs/xfce-mcs-client.c, mcs/xfce-mcs-client.gob: add missing
object property attribute
2005-05-26 22:01 dannym
* mcs/Makefile.am: whoops... fix extra_dist
2005-05-26 22:00 dannym
* mcs/Makefile.am, mcs/gen-xfce_mcs-channel.c,
mcs/gen-xfce_mcs-client.c, mcs/gen-xfce_mcs-manager.c,
mcs/xfce_mcs-channel.override, mcs/xfce_mcs-client.override,
mcs/xfce_mcs-manager.override: update extra_dist, update module
names
2005-05-26 21:57 dannym
* mcs/gen, mcs/gen-xfce_mcs-channel.c, mcs/gen-xfce_mcs-client.c,
mcs/gen-xfce_mcs-manager.c, mcs/mcs_client.defs,
mcs/mcs_manager.defs, mcs/xfce_mcs-channel.defs,
mcs/xfce_mcs-client.defs, mcs/xfce_mcs-manager.defs: strip Mcs
from classname
2005-05-26 21:56 dannym
* mcs/xfce-mcs-channel.c, mcs/xfce-mcs-channel.gob,
mcs/xfce-mcs-channel.h, mcs/xfce-mcs-manager-private.h,
mcs/xfce-mcs-manager.c, mcs/xfce-mcs-manager.gob: add
*channel*file functions
2005-05-26 21:50 dannym
* mcs/xfce-mcs-client.c, mcs/xfce-mcs-client.gob,
mcs/xfce_mcs-channel.override, mcs/xfce_mcs-client.override,
mcs/xfce_mcs-manager.override: mcs client fixes
2005-05-26 21:46 dannym
* mcs/xfce-mcs-manager-private.h, mcs/xfce-mcs-manager.c,
mcs/xfce-mcs-manager.gob: add comment about missing functions
2005-05-26 21:42 dannym
* mcs/Makefile.am, mcs/gen, mcs/gen-xfce_mcs-channel.c,
mcs/gen-xfce_mcs-client.c, mcs/gen-xfce_mcs-manager.c, mcs/gobs,
mcs/mcs_client.defs, mcs/mcsmodule.c,
mcs/xfce-mcs-channel-private.h, mcs/xfce-mcs-channel.c,
mcs/xfce-mcs-channel.gob, mcs/xfce-mcs-channel.h,
mcs/xfce-mcs-client-private.h, mcs/xfce-mcs-client.c,
mcs/xfce-mcs-client.gob, mcs/xfce-mcs-client.h,
mcs/xfce-mcs-manager-private.h, mcs/xfce-mcs-manager.c,
mcs/xfce-mcs-manager.gob, mcs/xfce-mcs-manager.h,
mcs/xfce_mcs-channel.defs, mcs/xfce_mcs-channel.override,
mcs/xfce_mcs-client.defs, mcs/xfce_mcs-client.override,
mcs/xfce_mcs-manager.defs, mcs/xfce_mcs-manager.override: add
mcs highlevel classes
2005-05-20 23:36 dannym
* netk/window.c, netk/window.defs: regen after gui update
2005-05-20 23:34 dannym
* Makefile.am: remove panel stuff for now
2005-05-20 23:17 dannym
* configure.ac: update required version
2005-05-18 05:10 dannym
* Makefile.in, configure.ac, gui/Makefile.in, mcs/Makefile.in,
netk/Makefile.in, panel/Makefile.in, util/Makefile.in: remove
tempfiles, remove panel dependency until I actually have some
functionality in pyxfce for panel
2005-05-18 04:43 dannym
* Makefile.am, configure.ac: add ACLOCAL_AMFLAGS to maybe fix the
change configure.ac + make + error issue
2005-05-13 04:27 dannym
* netk/application.c, netk/application.override,
netk/class_group.c, netk/class_group.override: make class group
and application get_windows return empty list if in doubt
2005-05-13 04:21 dannym
* netk/screen.c, netk/screen.override: make screen get_windows /
get_windows_stacked return [] when in doubt (NOT None)
2005-05-13 03:55 dannym
* TODO: update todo
2005-05-06 18:02 dannym
* gui/tests/testsessionclient.py: update testsessionclient with
intended design
2005-05-06 17:58 dannym
* README: update sessionclient name
2005-05-06 17:55 dannym
* README, gui/tests/testcolorbutton.py: skip xfce colorbutton
2005-05-06 15:18 dannym
* gui/sessionclient.c: add extern decl
2005-05-06 15:17 dannym
* gui/sessionclient.c: use Py_GetArgcArgv
2005-05-06 14:48 dannym
* gui/sessionclient.c: prepare sessionclient wrapper
2005-05-06 14:17 dannym
* README, gui/tests/testcolorbutton.py: fix typo
2005-05-06 14:15 dannym
* gui/tests/testicontheme.py: fix comments
2005-05-06 07:46 dannym
* gui/tests/testicontheme.py: use a rodent icon name for now
2005-05-06 07:44 dannym
* gui/tests/testicontheme.py: add destroy cb
2005-05-06 07:44 dannym
* gui/gen, gui/icontheme.c, gui/icontheme.defs,
gui/icontheme.override, gui/tests/testicontheme.py: icontheme
fixes
2005-05-06 07:38 dannym
* gui/tests/testicontheme.py: fix icontheme test
2005-05-06 07:37 dannym
* gui/gen, gui/icontheme.c, gui/icontheme.defs,
gui/icontheme.override: fix icontheme
2005-05-06 07:28 dannym
* gui/tests/testicontheme.py: use icontheme load
2005-05-06 07:27 dannym
* gui/tests/testicontheme.py: add icontheme test
2005-05-06 07:26 dannym
* gui/tests/testsystemtray.py: add comment
2005-05-06 07:25 dannym
* gui/tests/testsystemtray.py: add system tray test
2005-05-06 07:17 dannym
* gui/systemtray.c, gui/systemtray.defs: add systemtray stuff
2005-05-06 07:15 dannym
* gui/tests/testtogglebutton.py: add togglebutton test
2005-05-06 07:12 dannym
* README: consistency
2005-05-06 07:07 dannym
* gui/tests/testscaledimage.py: fix scaledimage test
2005-05-06 07:06 dannym
* gui/tests/testscaledimage.py: add scaled image
2005-05-06 07:05 dannym
* gui/tests/testmovehandler.py: fix movehandler test to do what
its supposed to
2005-05-06 07:03 dannym
* README, gui/tests/testmovehandler.py: add movehandler test
2005-05-06 07:01 dannym
* README: fix typo
2005-05-06 07:01 dannym
* gui/tests/testmenubutton.py: add test
2005-05-06 06:57 dannym
* gui/tests/testiconbutton.py: add test
2005-05-06 06:56 dannym
* README: fix typo
2005-05-06 06:55 dannym
* gui/tests/testframebox.py: fix framebox test
2005-05-06 06:54 dannym
* README: fix typo
2005-05-06 06:53 dannym
* gui/tests/testframebox.py: add test
2005-05-06 06:52 dannym
* gui/tests/testfilechooser.py: add test
2005-05-06 06:51 dannym
* gui/tests/testdecortoggle.py: update test
2005-05-06 06:49 dannym
* gui/tests/testdecortoggle.py: add test
2005-05-06 06:48 dannym
* gui/tests/testcolorbutton.py, gui/tests/testdecorbutton.py:
update tests
2005-05-06 06:43 dannym
* TODO: update todo
2005-05-06 06:43 dannym
* TODO: update todo
2005-05-06 06:43 dannym
* TODO: update todo
2005-05-05 16:34 dannym
* gui/clock.c, gui/clock.override, gui/decorbutton.c,
gui/decorbutton.override, gui/filechooser.c,
gui/filechooser.override, gui/gtktoxevent.c,
gui/gtktoxevent.override, gui/icontheme.c,
gui/icontheme.override, gui/session_client.c,
gui/session_client.override: add gui enums now that they have
rtti
2005-05-05 15:35 dannym
* configure.ac, gui/clock.defs, gui/decorbutton.defs,
gui/filechooser.defs, gui/gen, gui/gtktoxevent.defs,
gui/icontheme.defs, gui/session_client.defs: use the new gui
enums
2005-05-05 15:15 dannym
* patches/xfce42-gui-enum-types.c,
patches/xfce42-gui-enum-types.h: add patches for xfce 4.2 to add
the enum rtti for gui stuff
2005-05-04 23:06 dannym
* netk/trayicon.c: trayicon regen
2005-05-04 23:06 dannym
* netk/tests/testtrayicon.py, netk/trayicon.c,
netk/trayicon.override: fix netk_tray_icon_set_screen
2005-05-04 22:59 dannym
* netk/gen: filter netk trayicon constructor
2005-05-04 22:52 dannym
* netk/tests/testtrayicon.py, netk/trayicon.c, netk/trayicon.defs,
netk/trayicon.override: simplify trayicon constructor, fix test
2005-05-04 22:48 dannym
* netk/Makefile.am, netk/Makefile.in, netk/class_group.c,
netk/gen, netk/screen.c, netk/screen.override, netk/trayicon.c,
netk/trayicon.defs, netk/trayicon.override: fixes so that it
compiles again with screen extern
2005-05-04 21:37 dannym
* netk/class_group.override: override class_group_get_windows
2005-05-04 21:34 dannym
* netk/gen, netk/trayicon.c, netk/trayicon.defs,
netk/trayicon.override: trayicon fixes
2005-05-04 21:23 dannym
* netk/tests/testtrayicon.py: add missing import
2005-05-04 21:20 dannym
* netk/tests/testtrayicon.py: add trayicon test
2005-05-04 21:12 dannym
* netk/gen, netk/tasklist.c, netk/tasklist.override,
netk/trayicon.c, netk/trayicon.defs, netk/trayicon.override: fix
TrayIcon constructor up (thanks Olivier, Brian :))
2005-05-04 19:34 dannym
* gui/tests/testappmenuitem.py, gui/tests/testsessionclient.py:
add some more tests
2005-05-04 19:26 dannym