-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
2811 lines (1597 loc) · 53.2 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
2010-11-06 14:16 busa_ru
* stalonetray.xml.in:
[f] typos/grammar in stalonetray.xml.in
- this is a release commit for 0.8.1.
2010-11-06 14:15 busa_ru
* configure.in:
[f] fix handling of configure parameters
--disable-dump-win-info and --disable-graceful-exit now work properly.
2010-11-06 14:14 busa_ru
* Makefile.am:
[u] update XSLT tools locations to match Fedora
2010-10-13 08:03 busa_ru
* src/settings.c:
[f] make sure that --window-* options are defined as having mandatory parameters
2010-08-02 00:56 busa_ru
* src/layout.c:
[f] do not reset is_updated flag in layout functions that set it
2009-11-16 03:39 busa_ru
* src/debug.c, src/debug.h, src/main.c:
[f] Fix handling of SIGPIPE: disable all console
output
2009-11-13 18:20 busa_ru
* configure.in, src/main.c, src/xutils.c, src/xutils.h, stalonetray.xml.in:
[+] fix typos in manpage
[+] bring async-dpy hack back (sigh...)
2009-10-24 15:33 busa_ru
* stalonetray.xml.in:
[f] update manpage on geometry
2009-10-23 09:54 busa_ru
* src/main.c:
[f] fix build failure for non-debug configuration
2009-10-21 16:16 busa_ru
* TODO, configure.in, src/main.c, src/tray.c, src/tray.h,
utils/tray-test-gtk/traytest:
[+] bump version up to 0.8.0 (this is a release commit)
[f] update window struts on every configure event
2009-10-18 17:25 busa_ru
* configure.in, src/settings.c, stalonetray.xml.in:
[+] bump beta version up to 2
[+] add documentation regarding scrollbar highlighting
2009-10-13 10:13 busa_ru
* src/scrollbars.c, src/scrollbars.h, src/settings.c, src/settings.h,
src/xutils.c, src/xutils.h:
[+] moderate code refactoring
[+] implement scrollbars highlighting (makes it much
easier to find them)
2009-10-12 02:21 busa_ru
* TODO, src/debug.c, src/debug.h, src/settings.c, src/tray.c:
[f] order of options in --help output
[f] amount of info and proper date formatting in trace mode
[f] implement proper calculation of tray max/orig dimensions
in interpret_settings()
2009-10-07 03:09 busa_ru
* NEWS, configure.in, src/debug.h:
[+] bump beta version number
2009-10-07 02:28 busa_ru
* TODO, stalonetray.xml.in:
[f] typoss and rewording in manpage
2009-10-02 03:33 busa_ru
* stalonetray.xml.in:
[+] fix typo in manpage
2009-10-02 03:25 busa_ru
* NEWS, configure.in:
[+] bump version to beta0
[+] add news for 0.8
2009-09-28 14:49 busa_ru
* src/settings.c:
[f] fix max geometry normalization
2009-09-28 03:13 busa_ru
* src/wmh.h:
[f] Fix window strut on x86_64
2009-09-21 12:15 busa_ru
* PORTING, TODO, configure.in, doc, src/common.h, src/debug.c, src/debug.h,
src/embed.c, src/icons.c, src/image.c, src/kde_tray.c, src/layout.c, src/main.c,
src/scrollbars.c, src/settings.c, src/settings.h, src/tray.c, src/wmh.c,
src/xembed.c, src/xutils.c, src/xutils.h, stalonetray.xml.in,
stalonetrayrc.sample.in:
[f] code cleanup:
- get rid of DBG levels and friends, use 3 log classes:
ERR, INFO and TRACE; --dbg-level is now --log-level
- get rid of extra blank lines
- rework some trace/error messages
- get rid of dump_icon_list() calls
[f] remove stale docs
[+] update documentation and sample rc file
[f] max geometry now cannot be smaller than geometry
2009-09-14 15:47 busa_ru
* Makefile.am, TODO, configure.in, src/IDEAS, src/ISSUES, src/debug.c,
src/layout.c, src/layout.h, src/main.c, src/scrollbars.c, src/scrollbars.h,
src/settings.c, src/settings.h, src/tray.c, src/tray.h, src/wmh.c, src/xutils.c,
src/xutils.h, stalonetray.xml.in, utils/tray-test-fdo/main.c:
[+] bump alpha revision to 3
[+] make tray window name adjustable via --window-name
[+] implement remote icon clicking
[f] make scrollbars gravity-aware (fix icon placement)
[f] cleanups in main event loop: use XNextEvent() always
[f] some fixes from valgrind logs
2009-08-26 05:54 busa_ru
* TODO, src/settings.c:
[f] Add missing initialization of tray dimensions
2009-08-15 06:58 busa_ru
* TODO, src/embed.c, src/main.c, src/scrollbars.c, src/settings.c, src/settings.h,
src/tray.c, src/tray.h, src/xembed.c, stalonetray.xml.in:
[f] Misc source code cleanups
[f] Fix for wmaker mode (appear as a dockapp)
[+] Move --ignore-icon-resize and --respect-icon-hints under --kludge option
[f] Geometry code fixes (use proper hints, etc)
2009-07-30 11:56 busa_ru
* TODO, configure.in, src/main.c, src/scrollbars.c, src/settings.c,
src/settings.h, src/tray.c, src/tray.h, src/wmh.c, src/wmh.h,
stalonetray.xml.in, utils/tray-test-gtk/traytest:
* implement window struts
* implement basic support for WMaker dockapp mode
(deprecates --withdrawn)
* update documentation
2009-03-27 17:56 busa_ru
* ., TODO, src/Makefile.am, src/embed.c, src/layout.c, src/layout.h, src/main.c,
src/scrollbars.c, src/scrollbars.h, src/settings.c, src/settings.h, src/tray.c,
src/tray.h:
Merge in scrollbars branch
2008-12-27 04:32 busa_ru
* src/main.c:
* update expose_notify() so that refresh happens only on the last event of a
sequence
2008-12-27 04:30 busa_ru
* src/embed.c:
* update send_delayed_confirmation() (dont use async_dpy)
2008-08-05 06:58 busa_ru
* src/main.c, src/tray.c, stalonetray.xml.in:
* fix window position calucation in tray_update_window_size()
* fix docs (typos and update wrt default settings)
* add missing includes to main.c
2008-08-05 03:48 busa_ru
* src/layout.c:
* fix layout icon resize handler: backup grid dimensions and restore them
in case of error
2008-08-02 10:11 busa_ru
* src/kde_tray.c, src/layout.c, src/main.c, src/tray.c:
* Increase amount of debug output
* Move tray status dumper to separate function
2008-07-28 01:59 busa_ru
* src/icons.c, src/main.c:
* my_usleep(): fix so that it really sleeps
* icon_list_new(): initialize num_size_resets (fixes icon embedding issues)
2008-07-05 09:12 busa_ru
* src/kde_tray.c, src/kde_tray.h, src/main.c:
* upd:property_notify():handle WM restarts and re-set tray hints and KDE
support mode
2008-06-12 10:40 busa_ru
* TODO, src/settings.c, stalonetray.xml.in, stalonetrayrc.sample.in:
* add missing slot_size to sample rc file
* add desktop to list of supported window types (+ update docs)
2008-04-17 07:32 busa_ru
* TODO:
2008-04-17 06:26 busa_ru
* src/common.h, src/embed.c, src/icons.h, src/main.c:
Fixes for ignore_icon_resize behaviour
* reset icon size to default if it tries to change its size
* count attempts (for non-KDE icons), give up if they pass threshold
Debugging enchancements
* add define which changes mid-parent color to black
2008-03-23 17:15 busa_ru
* src/embed.c:
upd:minor comments update
2008-03-23 17:14 busa_ru
* src/settings.c:
fix:parse_rc():NetBSD build fix from Steve Bellovin
2008-03-23 17:12 busa_ru
* src/layout.c, src/main.c, src/settings.c, src/settings.h, src/tray.c,
stalonetray.xml.in:
upd:all: transition to slot_size
upd:interpret_settings(): minor cleanups
upd:stalonetray.xml.in: minor fixes
2008-03-23 16:15 busa_ru
* stalonetray.spec.in:
upd: now depend on x11-devel
As now there's Fedora package for stalonetray,
spec file won't be actively maintained.
2008-03-20 18:07 busa_ru
* configure.in:
upd: bump version number
2008-03-20 18:06 busa_ru
* TODO:
2008-02-10 18:54 busa_ru
* src/main.c:
fix:my_usleep(): simple sleep func that sleeps but does not block signals
fix:main(): implement proper event loop with my_usleep
fix:*:get rid of async_dpy ugliness
2008-02-10 18:51 busa_ru
* src/tray.c, src/tray.h:
del: struct TrayData: remove async_dpy field
add: struct TryaData: add terminated field to serve as a termination flag
2008-02-10 18:31 busa_ru
* src/xutils.c:
upd:x11_wait_for_timestamp(): try to handle cases when the window being waited
for
gets destroyed
2008-02-10 17:52 busa_ru
* src/main.c:
upd:main(): list atoms supported by WM on startup
upd:property_notify(): list atoms supported by WM on WM (re)starts
2008-02-10 17:51 busa_ru
* src/tray.c:
upd:tray_set_wm_hints(): update to match new EWMH API
2008-02-10 17:50 busa_ru
* src/wmh.c, src/wmh.h:
add:ewmh_wm_present(): func to check for EWMH-compliant WM
upd:ewmh_add_window_state(): do not fail on WM not being available
upd:ewmh_add_window_type(): do not fail on WM not being available
add:ewmh_set_window_atom32(): func to set windows atom in EWMH-compliant way
add:ewmh_list_supported_atoms(): func to list atoms supported by WM
2008-02-03 17:44 busa_ru
* Makefile.am, NEWS, TODO, configure.in, src/debug.c, src/debug.h, src/embed.c,
src/icons.h, src/kde_tray.c, src/layout.c, src/main.c, src/settings.c,
src/settings.h, src/tray.c, src/tray.h, src/wmh.c, src/xembed.c, src/xembed.h,
src/xutils.c, stalonetray.xml.in, stalonetrayrc.sample.in,
utils/tray-test-fdo/main.c, utils/tray-xembed-test/main.c:
Merged version 0.7 bugfixes branch
2007-09-22 13:45 busa_ru
* TODO:
2007-09-21 14:31 busa_ru
* Makefile.am:
* update ChangeLog generation
2007-09-20 16:24 busa_ru
*
2007-09-15 10:20 busa_ru
*
fix: image_tint_32(): fix loop condition so that _all_ pixels are tinted
fix: image_tint_24(): fix loop condition so that _all_ pixels are tinted
fix: image_tint_16(): fix loop condition so that _all_ pixels are tinted
fix: image_tint_15(): fix loop condition so that _all_ pixels are tinted
2007-09-15 06:37 busa_ru
*
fix: add stalonetray.xml.in and stalonetrayrc.sample.in to the list of
distributed files
2007-09-15 04:42 busa_ru
*
upd: cleanup(): sanitize debug levels
upd: add_icon(): sanitize debug levels
upd: remove_icon(): sanitize debug levels
upd: icon_track_visibility_changes(): sanitize debug levels
upd: kde_icons_update(): sanitize debug levels
upd: perform_periodic_tasks(): sanitize debug levels
upd: client_message(): sanitize debug levels
upd: configure_notify(): sanitize debug levels
upd: selection_clear(): sanitize debug levels
upd: map_notify(): sanitize debug levels
upd: main(): sanitize debug levels
2007-09-15 04:32 busa_ru
*
upd: layout_handle_icon_resize(): sanitize debug levels
upd: grid2window(): sanitize debug levels
upd: grid_add(): sanitize debug levels
upd: grid_place_icon(): sanitize debug levels
upd: icon_placement_create(): sanitize debug levels
upd: icon_placement_choose_best(): sanitize debug levels
upd: grid_find_placement(): sanitize debug levels
2007-09-15 04:29 busa_ru
*
fix: interpret_settings(): die on bad background color specification
2007-09-15 04:26 busa_ru
*
fix: get_args(): return SUCCESS/FAILURE instead of True/False
upd: get_args(): die on OOM condition instead of returning False
upd: get_args(): die on undhandled quotes disbalance
upd: parse_rc(): sanitize debug levels
fix: parse_rc(): check get_args() return value and die on error condition
upd: interpret_settings(): die if unable to parse tint color
upd: interpret_settings(): sanitize debug levels
upd: read_settings(): sanitize debug levels
2007-09-15 04:22 busa_ru
*
upd: tray_init_pixmap_bg(): sanitize debug levels
upd: tray_update_root_bg_pmap(): sanitize debug levels
upd: tray_update_bg(): sanitize debug levels
upd: tray_update_window_size(): sanitize debug levels
upd: tray_create_window(): sanitize debug levels
upd: tray_acquire_selection(): sanitize debug levels
2007-09-15 04:19 busa_ru
*
upd: ewmh_check_support(): sanitize debug levels
upd: ewmh_dump_window_states(): sanitize debug levels
2007-09-15 04:18 busa_ru
*
upd: xembed_init(): sanitize debug levels
upd: xembed_handle_event(): sanitize debug levels
upd: xembed_switch_focus_to(): sanitize debug levels
upd: xembed_track_focus_change(): sanitize debug levels
upd: xembed_message(): sanitize debug levels
upd: xembed_del_accel(): sanitize debug levels
2007-09-15 04:16 busa_ru
*
upd: x11_io_error_handler(): remove redundant DBG call
upd: x11_error_handler(): sanitize debug levels
upd: x11_set_window_size(): sanitize debug levels
upd: x11_get_window_size(): sanitize debug levels
upd: x11_get_window_min_size(): sanitize debug levels
upd: x11_dump_win_info(): enable dumping of window info at debug level 8
2007-09-15 04:04 busa_ru
*
upd: kde_tray_init(): sanitize debug levels
upd: kde_tray_old_icons_remove(): sanitize debug levels
2007-09-15 04:03 busa_ru
*
upd: image_tint(): die on invalid image depth instead of returning FAILURE
upd: image_compose(): die on invalid image depth instead of returning FAILURE
2007-09-15 04:02 busa_ru
*
upd: icon_list_backup(): die on double-backup instead of returning FAILURE
upd: icon_list_backup(): sanitize debug levels
upd: icon_list_restore(): sanitize debug levels
2007-09-15 04:01 busa_ru
*
upd: embedder_embed(): sanitize debug levels
upd: embedder_unembed(): sanitize debug levels
upd: embedder_update_window_positions(): sanitize debug levels
upd: embedder_refresh(): sanitize debug levels
upd: embedder_reset_size(): sanitize debug levels
2007-09-15 03:24 busa_ru
*
upd: print_icon_data(): increase debug levels to 6
2007-09-15 03:21 busa_ru
*
fix: typo in @VERSION_STR@ substition string
2007-09-15 03:13 busa_ru
*
*** empty log message ***
2007-09-10 17:01 busa_ru
*
upd: tray_update_window_size(): add extra debuggin output
upd: tray_create_window(): disable backing store when parent bg is on
upd: tray_create_window(): restore PropertyChangeMask in call to
XSelectInput() on tray window, it is requred for
x11_get_server_timestamp()
upd: tray_show_window(): update window size before mapping it
2007-09-10 16:50 busa_ru
*
upd: perform_periodic_tasks(): report grid geometry in icon_size
multiples
upd: perform_periodic_tasks(): report _real_ tray geometry from
XGetWindowAttributes
upd: perform_periodic_tasks(): add size-updating kludge to forse
window size to one which is desired
add: visibility_notify(): new function to handle visibility notifies
(currently unused)
upd: client_message(): call tray_update_window_size() after docking
is confirmed
upd: configure_notify(): add comments
upd: main(): add visibility notify handling to main event loop
2007-09-10 16:43 busa_ru
*
upd: parse_cmdline(): update comments
upd: struct Param params: add "-f" as short version of fuzzy_edges
parameter
2007-09-10 16:41 busa_ru
*
upd: embedder_reset_size(): remove (now) redundant TODO
2007-09-10 16:36 busa_ru
*
fix: decorations is "none" by default (and not "all")
2007-09-10 16:35 busa_ru
*
upd: decorations option: mention no_deco and friends as depricated,
add decspec to all terms
upd: fuzzy_edges option: make level optional, mention default value
when level is ommited
2007-09-10 16:31 busa_ru
*
upd: add all auto-generated files to mainaner-clean target
2007-09-10 16:30 busa_ru
*
*** empty log message ***
2007-09-10 16:28 busa_ru
*
*** empty log message ***
2007-09-10 16:11 busa_ru
*
update the list of bugs
2007-09-07 11:51 busa_ru
*
fix: property_notify(): call tray_refresh_window() also when fuzzy edges
are used
add: new func expose(): to handle exposures; refreshes tray window
add: main(): handle Expose events in main loop
2007-09-07 11:45 busa_ru
*
fix: tray_create_window(): cleanup masks in call to XSelectInput()
2007-09-07 11:05 busa_ru
*
del: grid_update_icon_placement(): unused
fix: grid_remove(): fix wording in comment
2007-09-07 10:05 busa_ru
*
fix: grid_remove(): fix implementation to handle
shrink_back mode property
2007-09-07 10:05 busa_ru
*
*** empty log message ***
2007-09-07 05:52 busa_ru
*
upd: perform_periodic_tasks(): add call to tray_refresh_window()
upd: property_notify(): update call to tray_refresh_window() to new signature
upd:configure_notify(): update call to tray_refresh_window() to new signature
2007-09-07 05:51 busa_ru
*
fix: swap(): remove unecessary ';' in macro definition
2007-09-07 05:50 busa_ru
*
upd: embedder_update_positions(): make use of x11_refresh_window()
2007-09-07 05:49 busa_ru
*
upd: tray_refresh_window(): make use of x11_refresh_window()
upd: tray_create_window(): mark XSelectInput() call for revision
2007-09-07 05:48 busa_ru
*
add: x11_send_visibility(): new func to send visibility notifies
add: x11_send_expose(): new func to send exposures
add: x11_refresh_window(): new func to refresh window`s contents
2007-09-05 11:34 busa_ru
*
*** empty log message ***
2007-09-05 11:33 busa_ru
*
fix: embedder_refresh(): fix nasty bug: do not try to refresh hidden icons
2007-09-05 11:33 busa_ru
*
upd: client_message(): add extra debug output
2007-09-05 11:01 busa_ru
*
upd: icon_placement_choose_best(): print some auxiliary debug info
2007-09-05 11:00 busa_ru
*
fix: tray_update_window_size(): set WM size hints _first_ (setting maximal tray
size)
and call XResizeWindow() after that
upd: always call XResizeWindow() (who cares?)
2007-09-05 10:03 busa_ru
*
fix: grid2window(): make translation orientation-aware
fix: grid_add(): set is_layout flag _before_ calling grid_place_icon()
fix: icon_placement_create(): make calculation of validness orientation-aware
fix: icon_placement_choose_best(): make calculation of window size
deltas orientation-aware
2007-09-05 09:57 busa_ru
*
*** empty log message ***
2007-09-05 09:55 busa_ru
*
fix: property_notify(): always refresh window on wallp. change
upd: property_notify(): update KDE icons list only if tray is active
2007-09-05 09:52 busa_ru
*
fix: tray_create_window(): fix withrawn mode: set icon_window WMH
fix: tray_set_wm_hints(): compare strings using strcmp
upd: tray_update_root_bg_pmap(): set rc=0 just in case
2007-09-05 09:47 busa_ru
*
fix: usage(): fix wording
add: parse_rc(): show info about rc parameter being processed
2007-09-02 17:02 busa_ru
*
*** empty log message ***
2007-09-02 17:00 busa_ru
*
upd: implement automatic version string in docbook xml, RPM spec and
sample rc file
upd: add all new features into documentation
upd: fix wording in documentation
del: all non *.in files
2007-09-02 16:57 busa_ru
*
add: preliminary NEWS version for 0.7
2007-09-02 16:56 busa_ru
*
*** empty log message ***
2007-09-02 16:56 busa_ru
*
fix: show sf.net e-mail
2007-09-02 16:54 busa_ru
*
fix: usage(): fix wording
2007-08-31 16:58 busa_ru
*
*** empty log message ***
2007-08-31 16:54 busa_ru
*
upd: layout_handle_icon_resize(): updated to use dump_icon_list()
fix: icon_placement_choose_best(): put back lost placement positions
points comparison
add: icon_placement_choose_best(): sync window deltas with layout deltas
if tray size is larger than original
2007-08-31 15:59 busa_ru
*
*** empty log message ***
2007-08-31 15:58 busa_ru
*
upd: embedder_refresh(): backport changes from 0.6.x branch. respect
ignore_icon_resize and respect_icon_hints settings
upd: embedder_embed(): MAJOR CHANGE: reformat a little
2007-08-31 15:53 busa_ru
*
fix: kde_tray_update_old_icons(): fix x11_ok() usage
fix: kde_tray_init(): fix x11_ok() usage, check return value of XQueryTree()
fix: kde_tray_init(): leave list of old icons empty if there's no
previous tray selection owner
2007-08-31 15:49 busa_ru
*
add: KDE_ICON_SIZE constant for ... KDE icon size!
2007-08-31 15:48 busa_ru
*
fix: property_notify(): call kde_icons_update() only if tray is active
add: perform_periodic_tasks(): indicate whether tray is active
upd: request_tray_status_on_signal(): implement asynchronous status
request scheme: send fake tray opcode message with
STALONE_TRAY_STATUS_REQUESTED opcode.
2007-08-31 15:46 busa_ru
*
add: respect_icon_hints setting (try to respect icon size hints)
add: ignore_icon_resize setting (ignore icons attempts to resize its window)
fix: interpret_settings: ensure that tray window width and height are
multiples of icon_size before calculating window position
2007-08-31 15:40 busa_ru
*
fix: tray_update_root_bg_pmap(): fix x11_ok() usage
add: STALONE_TRAY_STATUS_REQUESTED tray message opcode as a fake message
to request tray data
2007-08-31 15:39 busa_ru
*
fix: ewmh_add_window_state(): fix usage of x11_ok()
2007-08-31 15:29 busa_ru
*
fix: x11_get_win_prop32(): correct calculation of property length
upd: x11_ok(): add comment stating some usage guidelines
2007-08-28 16:44 busa_ru
*
upd: map_notify(): fix type in comment
upd: configure_notify(): make use of dump_icon_list()
upd: reparent_notify(): make use of dump_icon_list()
upd: perform_periodic_tasks(): code cleanup, make use of dump_icon_list(),
fix bug in non-debug version
upd: add_icon(): remove bogus TODO
upd: cleanup(): close async_dpy as well
2007-08-28 16:40 busa_ru
*
upd: embedder_unembed(): remove XXX
upd: embedder_reset_size(): proper computation of kde_icon_size
2007-08-28 16:39 busa_ru
*
upd: interpret_settings(): set minimal cutoff value for settings.icon_size
to MIN_ICON_SIZE
upd: remove XXXs from parse_cmdline() and get_args()
upd: FALLBACK_SIZE -> FALLBACK_ICON_SIZE rename
2007-08-28 16:37 busa_ru
*
upd: mark XRender TODO for 0.8
2007-08-28 16:35 busa_ru
*
upd: rename FALLBACK_SIZE -> FALLBACK_ICON_SIZE
add: MIN_ICON_SIZE define for minimal icon size
2007-08-28 16:33 busa_ru
*
add: dump_icon_list(): common function which prints whole icon list
with appropriate start/finish markers
2007-08-28 16:29 busa_ru
*
upd: remove XXX from tray_update_window_size()
fix: tray_create_window(): proper error checking for
XmbTextListToTextProperty() call
2007-08-28 16:28 busa_ru
*
add: x11_send_client_msg32(): comment about event mask
2007-08-28 16:26 busa_ru
*
add: comments about current implementation limitations
add: (commented out) code that ignores XEMBED messages if they are late
2007-08-28 13:55 busa_ru
*
fix: tray_create_window(): die on XmbTextListToTextProperty() failure
2007-08-28 13:55 busa_ru
*
fix: x11_get_win_prop32(): always try to retrive 4 bytes from a property
(from stalonetray-0.6.3-alt-gwp.patch)
2007-08-28 13:01 busa_ru
*
fix: icon_placement_choose_best(): use grid deltas * icon size as
a cutoff maximum when computing window size deltas
fix: icon_placement_choose_best(): always take window size deltas
into account (and not only when shrink-back mode is off)
2007-08-28 12:58 busa_ru
*
*** empty log message ***
2007-08-28 12:44 busa_ru
*
fix: icon_placement_choose_best(): use grid deltas * icon size as
a cutoff maximum when computing window size deltas
fix: icon_placement_choose_best(): always take window size deltas
into account (and not only when shrink-back mode is off)
2007-08-27 03:32 busa_ru
*
Fix crazy bug which caused icon list to be sorted inside the
icon_list_for_all(). Details follow.