forked from ice-wm/icewm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
1789 lines (1582 loc) · 71.9 KB
/
CHANGES
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
stable:
1.3.8pre1: 2011-11-19
- fix focus issues with JDK7
- compile fix with deprecated
- Qt5 compatibility
- partial support for _NET_WM_STRUT_PARTIAL
1.3.7: 2010-10-31
- fix crash with "Cascade"
- fix crash when dragging Task bar app icons
1.3.7pre2: 2010-04-28
- winoption: appTakesFocus - for apps that actually use globally active input
1.3.7pre1: 2010-04-27
- battery status as graphics not text (Alexander Drozdov)
- 'icewm-set-gnomewm' script to set GNOME window manager to icewm
1.3.6:
- build fixes
1.3.6pre3: 2010-01-05
- bug fixes (task bar auto hide)
1.3.6pre2: 2010-01-04
- bug fixes
1.3.6pre1: 2010-01-03
- new setting: HideTitleBarWhenMaximized
- bug fixes
1.3.5
- merged changes up to 1.2.38pre2
- fix possible crash when loading application icons (Eduard Bloch)
- rpm .spec file updates
1.3.4pre2: 2009-04-13:
- option XRRPrimaryScreenName - xrandr output name for primary screen (with taskbar)
- XRRDisable - option to disable use of XRANDR
1.3.4pre1: 2009-01-25
- xrandr screen configuration support (replaces xinerama)
- per-screen work area
- merged changes up to 1.2.37
1.3.3:
- merged changes up to 1.2.36
- add FocusRequestFlashInterval (0 = disable)
1.3.2:
- merged changes up to 1.2.34
1.3.1:
- merged changes up to 1.2.32
- handle all NET_WM_ICON app properties (Thomas Holder)
- display memory/swap/temperature/frequency information in the
CPU applet (Eugeny Vdovin)
- warp the mouse pointer on mouse triggered workspace
switch (Owen Marshall)
- show window preview for workspaces in taskbar (Thomas Holder)
1.3.0:
- merged changes up to 1.2.30
- NET_WM_ICON support
- gdk_pixbuf_xlib now used as image library
old:
1.2.38pre2:
- various bug fixes
1.2.38pre1:
- xinerama fixes
- app-group transient window implementation
- FreeBSD ACPI support - Alexander Motin (amotin)
1.2.37:
- fix centering of transient windows over parents (Bert Wesarg)
- check if window is allowed to be moved, before starting movement (Bert Wesarg)
- fix key handling on buttons
1.2.36:
- add option TaskBarFullscreenAutoShow (default = 1)
1.2.36pre2: 2008-08-17
- regrab keyboard bindings when keyboard mapping changes
1.2.36pre1: 2008-08-07
- fix unresponsive taskbar when PassFirstClickToClient=0
- add support for sysfs interface (instead of proc) for battery
status (initial code by Santiago Garcia Mantinan)
- fix maximized window repositioning on fullscreen toggle
- bug 1852567 - make searching for icons more consistent (iconPath first,
search each directory first for all possible types - xpm, png)
- Italian translation update
- Korean translation update
- translation cleanup: converted .po files to UTF-8
1.2.35: 2008-01-05
- Application tray bug fixes
- Add encoding/language to about dialog
1.2.34: 2007-12-27
- fix gmplayer switching to fullscreen
- popup dialog focus fixes
- fix screen change with xrandr 1.2
1.2.33: 2007-11-04
- build fixes (Bert Wesarg)
- fix FocusOnRaise
- tray fixes
- fix taskbar popup in fullscreen mode
1.2.32: 2007-08-07
- fix session shutdown when logging out (Stanislav Maslovski)
- tweaks to taskbar auto-hide in fullscreen mode
1.2.31: 2007-07-27
- auto-hide like taskbar activation in full screen mode
- fix raise/lower of windows of java6 apps
- fix iconic app startup
1.2.31pre1: 2007-05-20
- fix crash when using battery status applet without ACPI (flitsch)
- fix CPU status applet with long uptime
- zh_CN translation update (LI Daobing)
- zh_TW translation update (Wei-Lun Chao)
- added missing ShowSettingsMenu and ShowFocusModeMenu
settings (Evgenii Terechkov)
- Czech translation update
- cross compilation fix (Lucas Correia Villa Real)
- fix --enable-lite + --enable-gradients (Lucas Correia Villa Real)
- binding to raise window with mouse (MouseWinRaise=Ctrl+Alt+Mouse1) (Thomas Holder)
- Russian translation update (Evgenii Terechkov)
1.2.30: 2006-12-24
- battery status cleanups
- new option BatteryPollingPeriod (default 10 seconds)
1.2.30pre1: 2006-12-17
- fix focus after minimizing all windows
- moved Themes selection to Settings menu
- added Settings -> Focus menu (config saved to ~/.icewm/focus_mode
as FocusMode=1,2 or 0)
- startMinimized window option fixed
- new setting MapInactiveOnTop (default 1)
- new setting RequestFocusOnAppRaise (when FocusOnAppRaise=0)
1.2.29: 2006-12-03
- Spanish translation updated (Eulogio Serradilla)
1.2.29pre1: 2006-11-12
- reduce slow down when drawing in GIMP (repeated titlebar update)
- fix relayout when screen rotates
- fix crash with qt4 apps
- German translation fixes
- altgr_binding_support by Jörg Sommer
- Apple PMU support by Jörg Sommer
1.2.28: 2006-09-10
- fix potential crash with layer/z-order changes
- Spanish translation update (Eulogio Serradilla)
1.2.28pre2: 2006-08-31
- fix smart placement
- warning fixes
1.2.28pre1: 2006-08-24
- start menu pixmap now named: taskbar/start.xpm
- fix zOrder in ShowDesktop action
- fix occasional keyboard navigation malfunction in the start menu
- try to mouse focus only when mouse actually moves to another window
- prevent focusing taskbar with mouse focus
- use locale strings in 'icewm-menu-gnome2'
- also search for .png icons when only basename is specified
(Manuel Carrasco)
- change mouse cursor when dragging the taskbar (Manuel Carrasco)
- major focus cleanups and improvements
- icewmtray: catch HUP signal to reload theme and other fixes
(Manuel Carrasco)
- new preferences option: WinMenuItems (default=rmsnxfhualyticw)
(Manuel Carrasco/Marko Macek)
1.2.27: 2006-08-06
- Danish translation (by Ole Carlsen)
- added 'Look=flat' (oscarello)
- added TaskbarButtonWidthDivisor (lysanderslair)
- minor workspace switching optimization -
Ramunas Lukosevicius <[email protected]>
- new FSF address added in COPYING
1.2.26: 2006-04-16
- fix icesh workspace switching (Thomas Holder)
- Polish translation fix (Pawel Chwalowski)
- fix focus after closing fullscreen window
- new option: TaskBarShowTransientWindows (default = 1, for now)
1.2.25: 2006-02-03
- fix resize of maximized windows when taskbar set to AutoHide
- fix support for screens 0.1 and up
1.2.25pre1: 2006-01-31
- fix format in window size/position display (Bert Wesarg)
- fix configure to use pkg-config for xft (Marius Feraru)
- fix build with Sun Forte C++ (Grant McDorman)
- icewmtray crash fixes (Grant McDorman)
1.2.24: 2006-01-22
- option to --replace an extisting window manager
- change menu scroll wheel direction (Thomas Holder)
- paint desktop tray background (Thomas Holder)
- gcc 4.1 build fixes (Hanno Boeck)
- fix gcc strict aliasing errors (Pavel Nemec)
1.2.24pre1: 2005-12-04
- restore Dutch translation from Ton Kersten
- zh_TW translation from Wei-Lun Chao
- fix TaskBarKeepBelow=1 preference
- fix problems in horizontal maximization
- implemented support for --replace option
- Make shaped decorations work in 21 bit graphics cards
(like those common in sparcs) -- Bernhard R. Link
1.2.23: 2005-08-14
- make taskbar pop out even when collaped
- Slovak translation update (Zdenko Podobny)
1.2.23pre1: 2005-07-31
- fix crash when hiding the taskbar and "collapse" button is hidden
- fix repeated drag over taskbar icon not working
- fix problems with Unmap events being handled incorrectly
- customizable placement order options for minimized window icons
(MiniIconsPlaceHorizontal, MiniIconsRightToLeft,
MiniIconsBottomToTop) - (Konstantin Korikov - lostclus)
1.2.22: 2005-07-17
- AutoShowDelay setting (opposite of AutoHideDelay)
- use Workspace status window instead of showing the taskbar
when workspace changes if taskbar autohide is enabled
1.2.22pre3: 2005-07-15
- fix focusing after window minimized or hidden
1.2.22pre2: 2005-07-10
- Remember last focused window per-workspace
- Enable the LockCommand functionality only if command
found (Eduard Bloch)
- new Korean translation (Ken Yeo)
1.2.22pre1: 2005-06-28
- Latvian translation (Kristaps Kaupe)
- Double click activates workspace in window list
- Fixes to taskbar layout when only tasks visible
- Made network status applets show/hide dynamically again
- Add image to taskbar collapse button
- Fix MinimizeToDesktop windows getting out of desktop area
- Added key binding: KeySysCollapseTaskBar
- Fixed UTF-8 input support in AddressBar
1.2.21: 2005-05-31
1.2.21pre2: 2005-05-16
- translation: Vietnamese (Phan Vinh Thinh)
- translation: Indonesian (Arif E. Nugroho)
- translation update: Simplified Chinese (Hiweed Leng)
- translation update: French (Frederic Bothamy)
- APM applet support for NetBSD (Iain Hibbert (plunky))
- add new winoption: noFocusOnMap
- fix ClientWindowMouseActions for Window-Drag combination
1.2.21pre1: 2005-03-20
- improve selection of "urgent" windows with alt+tab
- fix possible crash (Grant McDorman)
- fix 64bit usage of Xft (Marcus Meissner)
- cleanup warning on still-open file descriptors
- disabled some Ctrl+Alt+Del commands by default since
they need some configuring to work on all systems
- fix desktop layer setting for nautilus
1.2.20: 2005-01-09
- fix+revert default binding for MouseWinMove an MouseWinSize
- fix 1 pixel border when taskbar at top of screen
- fix themes not loading from user directory
1.2.19: 2004-12-26
- fix crash/build failure when taskbar disabled
- fix build/link with some gcc/g++ versions
1.2.18: 2004-12-18
- changed icedesert colors (Hanspeter Roth)
1.2.18pre1: 2004-12-05
- disable SupportsSemitransparency by default, this makes
icewmbg exit after setting the image and reduces memory usage
- fix Meta key handling typo
- fix CPU waste in icewm-session and icewmtray
- fix some Win+x key combinations
- new settings MouseWinMove (=Alt+Ctrl+Pointer_Button1) and
MouseWinSize (=Alt+Ctrl+PointerButton3). The default bindings
have changed from Alt+button drag to Ctrl+Alt (or Super).
1.2.17: 2004-11-07
- fix: windows were not expanding when taskbar was hidden
- fix: reused (hidden) application windows popped up on original
workspace
- fix: build with --disable-taskbar
- fix: maximize/restore for rxvt
- fix: reboot/shutdown functionality (default configuration
changed to use 'sudo')
1.2.17pre2: 2004-10-31
- fix crash on startup when mailbox or net status disabled
- fix build with gcc > 3.3
- fix gray lines on taskbar bottom
- major changes in window geometry/layout handling
- fix "tray icon"
1.2.17pre1: 2004-10-24
- fix \ quoting in configuration files (Eduard Bloch)
- fix "win" key when NumLock active
- more weird modifier map fixesa
- updated Slovenian translation (Jernej Kovacic)
- add the button to collapse the task bar
- rewrite of taskbar layout code
- force Imlib to use default visual (fix xorg visual mess)
- vertical layout for Alt+Tab (Eduard Bloch)
1.2.16: 2004-08-16
- fullscreen fix for _NET_WM_STATE_FULLSCREEN (affects mplayer)
- use our own replacement for basename
- ACPI battery status fix (gicco)
- fix bug 984427 (addressbar ignores backspace when numlock pressed)
- Polish translation update
1.2.15: 2004-08-09
- enable locale for icesh
1.2.15pre4: 2004-08-05
- fix crash/lockup at startup in ACPI status applet when ac module
not loaded
- tray icon sizing cleanups
- fix bug 883518: keyboard gets locked until icewm menu is activated
- double buffering fixes
- French translation update
- Finnish translation update (Taisto Kuikka)
- menuprogreload menu keyword added (Konstantin Korikov)
syntax: menuprogreload title icon timeout command ...
- battery status display for FreeBSD (Hanspeter Roth)
- smart snap window positioning triggered by C+S+A+numpad (Bert Wesarg)
- key to show desktop (Super+D)
1.2.15pre3: 2004-08-01
- icesound gcc 2.95.3 compile fix (Thomas Zajic)
- net status support for OpenBSD (Hanspeter Roth)
- FreeBSD build fix (Hanspeter Roth)
- basename cleanups for FreeBSD
- systray cleanups for wine, ...
- battery status uses design capacity (Hanspeter Roth)
1.2.15pre2: 2004-07-18
- Slovak translation (Radovan Stas)
- fix activation from gnome-2.6 panel to properly raise window
- fix transparency support (caused crashes in xchat...)
- NetBSD support for NetStatus (Iain Hibbert)
- net modifier setup code to cope with weird xorg modifier setup
1.2.15pre1: 2004-06-27
- fix ppp applet isdn online status
- fix focusing new+maximized windows
- fix some alt+tab pref combinations (hidden + all/group workspaces)
- some more gcc 3.4 fixes (morfic)
1.2.14: 2004-05-22
- minor tweak to alt+tab behavior when selecting from all
workspaces
1.2.14pre16: 2004-05-09
- netwm modal state broken, disabled
- make menu/config file parsing behave more like sh (handle both
single and double quotes) -- Eduard Bloch
- Italian translation update
- Czech translation update
- fix build with gcc-3.4
1.2.14pre15: 2004-05-02
- add new theme yellowmotif (Andreas Leitgeb (avl42))
- fix in window mapping code for Citrix client
- bug fixes in xft clipping
1.2.14pre14: 2004-04-20
- Solaris fixes to configure.in (Damjan Perenic)
- implement EWMH "modal" state
- show themable preferences in ~/.icewm/preferences
- fix order in CPU Status (Hanspeter Roth)
1.2.14pre13: 2004-04-12
- fix antialiasing of menu icons
- fix raising of new window when in fullscreen
- Linux Kernel 2.6 iowait,irq,softirq cpu status
support (Hanspeter Roth)
- improved support for NetWM hints (state: above, below, ...)
- fix delayed mouse focus with fast keyboard desktop switches
1.2.14pre12: 2004-03-21
- fixed icon antialiasing with IMLIB
- fix crash with XPM icon loading
- Solaris fixes (Damjan Perenic)
1.2.14pre11: 2004-03-16
- minor bug fixes and build fixes
1.2.14pre10: 2004-02-29
- fix comile with --enable-lite
- CPUStatus fix for FreeBSD 5.2 / gcc 3.3.3 (Hanspeter Roth)
- fix crash in CPU status (L10N related, translations need
to be updated)
- made ShowMenuButtonIcon setting themable again
- KeyWinMaximizeHoriz binding (no default key yet)
- Italian translation update (Yuri Bongiorno)
- Finnish translation update (Taisto Kuikka)
- Turkish translation (CoÅku Erdem)
1.2.14pre9: 2004-01-19
- improve maximized window position handling on workspace switches
1.2.14pre8: 2004-01-11
- add Xft font specification for Infadel2 theme
- image support for the "show desktop" icon
- change startup order in icewm-session (icewm now first, startup last)
- minimize all / show desktop should not minimize unminimizable windows
- improvements to icehelp
- fix winoptions icon override behavior
- keep theme history in ~/.icewm/themes (Eduard Bloch)
1.2.14pre7: 2004-01-03
- fix reaping of children in icewm-session
- initial mapping code cleanup
1.2.14pre6: 2003-12-30
- fix "lost focus when maximizing" in mouse-focus mode
- fix "Super+key" bindings again
- remove line/string length limits for preferences file
1.2.14pre5: 2003-12-25
- fix problem with replaying Super+X when not activating menu
- build fixes for FreeBSD
- build fix for Xrandr < 1.0 (not tested)
- *bsd cpu status support (Hanspeter Roth)
1.2.14pre4: 2003-12-23
- movesize-fx obsoleted
- wm-session obsoleted
- header cleanups
- fix monitor for linux 2.0 (Miroslav Stibor)
- fix focus/click with multiple emacs frames
- all font preferences now have a ...Xft variant that
can be set to fontconfig pattern specification.
example: MenuFontNameXft=sans-serif:size=12:bold
- enabled shaped window decorations by default (configure)
1.2.14pre3: 2003-12-22
- debian fixes (Eduard Bloch)
- fixes and cleanups
1.2.14pre2: 2003-12-20
- compile fixes for egcs-2.91.66 (Miroslav Stibor)
- icewm-session explicitly terminates icewm
and icewmtray (Hanspeter Roth)
- code refactoring and cleanup
1.2.14pre1: 2003-11-01
- initial support for XRANDR
- enable alt+Tab in LITE
- only allow a restricted set of prefs to be set in a theme
- fix shutdown in logout menu (was a reboot)
- fix crash on startup when TaskBarShowWindowListMenu=0 and
TaskBarDoubleHeight=1 set (Alexander Portnoy - alexpor)
- icesound fixes (some variants need testing)
- nested themes menus (Eduard Bloch)
- support for rollover titlebar buttons (Rob Costello)
- CPU status fixes. New option: TaskBarCPUDelay (Miroslav Stibor)
- Net status fixes. New options: TaskBarNetSamples,
TaskBarNetDelay (Miroslav Stibor)
- fixes to icewm-session
- Ctrl+Alt+Numpad moves window (Bert Wesarg)
1.2.13: 2003-09-27
- build fixes
- only handle KDE tray protocol when icewmtray running
1.2.13pre3: 2003-09-14
- ShowDesktop button added (someone make a nice icon, please)
- fix defunct icewmbg processes on theme selection
- fix setting themes with a SPACE in the name
- KDE system tray support (experimental)
- support for scaled backgrounds (experimental)
- fix crash on option parsing in icesound
- remove "xftdummy" foundry from default fonts (Pavel Roskin)
- add reboot/shutdown to logout menu (Hanspeter Roth)
- sort theme menu by name
1.2.13pre2: 2003-09-05
- fix icewmbg not setting the background when started before icewm
1.2.13pre1: 2003-08-31
- fix ~/.icewm/theme file permissions
- fix drawing of checkboxes in menus
- fix display corruption in network status
- fix memory leak in icewmbg on workspace switches
- fix menu behavior with xinerama
- Italian translation updated
- new preference "DoubleBuffer" (default: 1)
- experimental: icewm-session (runs icewmbg. icewmtray, icewm
and restarts icewm on crash)
1.2.12: 2003-08-24
- MAJOR CHANGE: reverted preferences/theme order to same
as before 1.2.10. Added "prefoverride" file for overriding
theme preferences.
- icewmbg is only re/started when already running
- fix build with --disable-taskbar
- fix build with --disable-shape
- fix ShowMoveSizeStatus with OpaqueMove/Resize
1.2.11: 2003-08-19
- added forcedClose window option (Hanspeter Roth)
- added recent average in network monitor
- fix icewmbg not setting theme background
- fix spelling of _NET_WORKAREA hint (Jeff Pohlmeyer (tgeek))
- fix spelling of --client-id option name (YAMAMOTO, Taku <[email protected]>)
- fix random restart failures
- fix codeset handling on FreeBSD
- Czech translation update (Jan Horak)
- Bulgarian translation (Pavel Pyuter)
- fix painting of exposed icons
1.2.10: 2003-08-11
- added "Default" to Themes submenu
- documentation updates
1.2.10pre11: 2003-08-10
- theme selector now writes the selected theme in ~/.icewm/theme
- theme selector now restarts icewmbg automatically
- minor cleanups in apm applet
- build fixes
- Infadel2 theme cleanups (Hanspeter Roth)
1.2.10pre10: 2003-08-01
- fixed icewmbg semtransparency support. icewmbg will no longer
exit when semitransparency is enabled
- major focus cleanups
1.2.10pre9: 2003-07-30
- double buffering performance optimizations
1.2.10pre8: 2003-07-27
- FIXED: taskbar tray location off by one pixel
- FIXED: rendering of icons on big-endian systems when
--enable-antialiasing
1.2.10pre7: 2003-07-26
- FIXED: shaped windows when --enable-shaped-decorations
- FIXED: icewmbg prefs now added to default preferences file
1.2.10pre6: 2003-07-25
- FIXED: theme local font path with Xft/fontconfig
- disabled movement of maximized windows offscreen (use shift to
override)
- corefonts now enabled when Xft major version = 1
1.2.10pre5: 2003-07-24
- FIXED: compile with --enable-corefonts
- FIXED: compile with Xft v1
- Dutch translation update by Reinout van Schouwen
- added internal border to taskbar
1.2.10pre4: 2003-07-19
- FIXED: problem with --enable-shaped-decorations and
full-screen windows (mplayer)
- Italian translation update by Yuri Bongiorno
1.2.10pre3: 2003-07-13
- implement support for depth 1 window icons
- FIXED build with some compilers
- painting is now double buffered (TODO: optional) and faster
- Russian translation update (Anton B. Farygin)
1.2.10pre2: 2003-07-05
- MAJOR CHANGE: the theme needs to be specified in the ~/.icewm/theme
file, like this:
Theme=icedesert/default.theme
- Theme settings are now loaded before ~/.icewm/preferences
- FIXED network monitor crash with "pl" locale (Pawel Warowny)
- simplified tray icon option in window menu
- Finnish translation update (Taisto Kuikka (taistok))
1.2.10pre1: 2003-06-29
- MAJOR CHANGE: icewm background handling moved to icewmbg program
- fixes to gnome2 menu support (Nehal Mistry)
- FIXED: task bar auto hide with taskbar menus
- FIXED: some focusing problems with gtk2 (Owen Taylor, Bernhard Walle)
- code cleanups in font handling
- configuration file handling cleanup
1.2.9: 2003-06-22
- added gnome2 menu support (Nehal Mistry)
- added missing netwm active window notification
- new option FocusRequestFlashTime
- fix problem with accented characters in the title bar
- fix aspect ratio on maximization
- fix gcc 3.3 build
- fix crash with a single workspace (oops!)
- Polish translation update (Arkadiusz Lipiec)
- documentation of using WINDOW_ROLE property in
winoptions (Jo Valentine-Cooper)
1.2.8: 2003-06-08
- various build/minor fixes
- new option enableAddressBar(=1)
1.2.8pre3: 2003-06-03
- fix Alt+Tab window getting stuck under load
- menu mnemonics tweaks (Hanspeter Roth)
- add mnemonics to zh_TW.Big5.po (Benshark Chen)
- task bar layout tweaks
- Restrictions on command line argument parsing.
Only -o, -o ARG or --option, --option=ARG forms
are accepted now, not any other combinations
- improvements for NETWM system tray (you must run 'icewmtray'
in background to support this)
1.2.8pre2: 2003-05-18
- improved focus handling (alt+tab, window close, workspace switch)
- fix taskbar issues from pre1
- GNOME 2 workspace switcher applet (Adam James Fitzpatrick)
- renamed --with-gnome-menus to --enable-menus-gnome1
- cleanups in configurable keyboard bindings handling
- renamed modMetaIsCtrlAlt to modSuperIsCtrlAlt. Win95keys now
enabled by default.
1.2.8pre1: 2003-05-04
- fix: interaction between shaped windows and fullscreen (Owen Marshall)
- fix: posible crash on shutdown
- minor memory leak fixes
- fix handling of fullscreen windows with shaped
window borders (Owen Marshall)
- convert zh_CN.gb2312.po to UTF-8 (zh_CN.po) - [email protected]
- autodetect gnome/kde menu directories (Nehal Mistry)
- fixed address bar behavior in various configurations
- Hungarian translation update (Peter Somogyi)
- Xft2 doesn't require RENDER extension (Make Fabian)
- partial Korean translation (Hwang, Sang-Jin / Make Fabian)
- LDFLAGS fix (Robert Klein)
- fix problem with menufile items not having mnemonics (_)
- initial implementation of NETWM system tray
1.2.7: 2003-03-08
- minor bug fixes
1.2.7pre3: 2003-03-02
- new option QuickSwitchGroupWorkspaces (if
QuickSwitchToAllWorkspaces=1)
- Italian translation update
- more menu tweaks
- implement NetWM window type SPLASH
- ACPI status patch from Klaus Schneider
- Made Alt+<left,right mouse button> behave in more standard manner
- DoNotFocus window option added.
1.2.7pre2: 2003-02-26
- Major improvement in percieved speed of menus
- Dutch translation by Ton Kersten
- add new options: ShowRun, ShowAbout, ShowWindowList,
ShowLogoutSubMenu, AllowFullscreen (Ton Kersten)
- support WM_WINDOW_ROLE, too
- fix detection of netwm hints for some apps
- fix AutoReloadMenus bug
1.2.7pre1: 2003-02-23
- fix .order file handling for gnome menus (Thomas Zajic)
- changed default theme to icedesert (Nehal Mistry)
- fix crash in alt+tab when window closes
- rewrite icewm.spec.in Christian W. Zuckschwerdt ([email protected])
- Belarussian translation by Hleb Valoska ([email protected])
- tweaked character set (CODESET) detection
- 'Programs' menu is now invoked from menu file, not from the code
- fixed fonts in Infadel2 theme when Xft is used
1.2.6: 2003-01-19
- Slovenian translation by Jernej Kovacic
- improve focus handling on non-xinerama multihead displays
- another submenu/icon handling fix for gnome menus (Thomas Zajic)
- added nonICCCMconfigureRequest window option workaround for
non ICCCM compliant applications
- WINDOW_ROLE handling for winoptions (Stanislav Svirid)
- fix crash in mail status checker in pop/imap configuration
- implement startMinimized window option, similiar to startMaximized
1.2.5: 2003-01-05
- fix lockup when doing operations through window list
- fix compile problem --with-xpm
- fix icesh.cc focus handling (by Todd R. Eigenschink)
- update workaround for some TK issues
- slow startup fix (caused by broken lazy menu loading)
1.2.4: 2003-01-03
- fixed submenu/icon handling for gnome menus (Thomas Zajic)
- acpi optimization (Michal Ceresna)
- fix crash in "Tile ..."
- fix submenu deactivation problem (reported by Bernhard Walle)
- fix focus loss on xmms exit (reported by Bernhard Walle)
- fix problem with restarting the wm (when icewm-menu-gnome1 not
present)
1.2.3: 2002-12-26
- IMPORTANT: system configuration directory changed to
/etc/icewm (from /etc/X11/icewm or /usr/local/etc/X11/icewm).
icewm now installs it's data files in /usr/local/share/icewm.
- added --disable-winmenu and --disable-taskbar configure options
- bug fixes in menu code
- fixed lockup when running under session manager (GNOME2)
1.2.3pre2: 2002-12-15
- support for Xinerama
- rewritten RPM packaging
- new "menuprog" statement in menu files for reading a submenu
from a pipe
- Italian translation update
- moved gnome menu support into an external utility (icewm-menu-gnome1)
(used trough "menuprog", requires gnome 1.x)
- added keybinding for showing the window list menu (KeySysWinListMenu)
1.2.3pre1: 2002-10-20 + soon
- some small fixes for the swedish translation (tucker)
- new APM/ACPI monitor code by Michal Ceresna (cemi)
- Norwegian translation by Petter Johan Olsen
- the Address Bar in the taskbar now works even without
TaskBarDoubleHeight (Ctrl+Alt+Space)
- new APM/ACPI battery monitoring code
- rewritten the work area implementation (doNotCover should
now work much better)
- new "preferences" setting: focusOnAppRaise - focus the window when
application requests to raise it
- cleaned up the icewmbg implementation (TODO: config file for it)
- fixed the Reboot vs Shutdown issue
- Alt+Left Button drag now used for window move and
resize (no more Ctrl+Alt)
- fixed configure option: --enable-depend now used for make depend
1.2.2: 2002-09-06
- fixed icewm.spec file for building RPMs
- fixed CHANGES file
1.2.1: 2002-08-31
- TaskBar and root menu is no longer disabled under Gnome (adjust
your ~/.icewm/preferences manually: ShowTaskBar=0; UseRootButtons=0)
- feature: partial support of the Enhanced Window Manager
Specification (NETWM) needed for GNOME2 and KDE3
compliance
flux - feature: scriptable menus (as found in WindowMaker)
- feature: execute "startup" or "restart" script found in resource
path ($ICEWM_HOME, $ETCDIR, $LIBDIR) after initialization
- bugfix: added --help switch to icewm, allow GNU stylish
long options
- feature: the directory for user preferences can be selected by
the ICEWM_PRIVCFG variable now (default still is and will
forever be ~/.icewm, but think about the beauty of
setting ICEWM_PRIVCFG to "$HOME/.etc/icewm"...)
- bugfix/feature: menu parser is case-insensitive now
- bugfix/feature: normal users won't need GNU make anymore
- cleanup of lib/.../*.xpm by Andrey Smagin
- FocusChangesWorkspace option by Daniel Pittman -- determines
if a new window open on another workspace switches to that
workspace
- PointerRaiseDelay focusing fix by Thomas Linder
- bugfix: enable menu items in window list popup only when appropriate
(closes bug 217168)
- change the ppp status applet to decrease the scale when the
troughput goes down.
- feature: improved icesh's worth by adding support for window classes
- ui-change: added fullscreen window menu action; changed default key
binding for hide, rollup and undoArrange action
- added startMaximized{,Vert,Horz} winoptions
- initial UrgencyHint implementation
- added "menufile" statement for menu files
- configure script defaults changed: imlib, i18n, nls are now default
1.2.0: 2002-06-30
- Czech translation by Jan Horak
- Lithuanian translation updated (Martynas Jocius)
1.2.0pre3: 2002-06-12
- updated configure platform coverage
- really fix --with-guievents / compile w/ ESD
- several memory leaks fixed
1.2.0pre2: 2002-05-26
- bugfix: TaskBarDoubleHeight has incorrect layout
- workaround: doNotCover option removed from default winoptions
(seems to have problems with GKrellM)
- bugfix: --with-guievents; esd compile fix
1.2.0pre1: 2002-05-12
- bugfix: fix syntax error when HAVE_BASENAME is defined
(under cygwin for example)
- bugfix: updated Catalan translation (thanks Toni Cunyat i Alario)
- bugfix: updated config.guess in order to allow autodetection of more
recent architectures
- bugfix: the network load indicator field `transferred' overflew
when > 2Go. Now make use of 64 bits value for the network
load (See: bugs.debian.org/118728, thanks Eduard Bloch)
- bugfix: fix for sefault when TrayDrawBevel=1 (thanks Julien Lemoine)
- bugfix: fix for a window position which marches up the screen,
noticeable when launching Galeon and Xchat (thanks
Julien Lemoine)
- bugfix: fix display of taskbar(in hide mode)
- bugfix: fix logout problem (in icewm-lite)
- bugfix: height and width problem in maximized mode
(difference of 2 pixels)
- bugfix: fix problem with xawdecode (in fullscreen mode)
- bugfix: POP3 mailcheck breaks with some server (Thanks Rob Funk)
- feature: new translation: Simplified Chinese (Thanks Li Wei Jih)
- bugfix: crash when handling the application icons
- bugfix: layout taskbar to the edge of the window
- several options have been deprecated. Look for warning messages
on the console at startup
- bugfix: memory leak in hasColormap (needs performance tweak)
- bugfix: close extra file handles before running apps
- bugfix: force layer for dialogs above the parent window
- bugfix: fix handling of window gravitu
- bugfix: winoptions geometry option fixed
- bugfix: handling of win95 keys (XK_Super_L, XK_Super_R)
...
1.0.9-2: 2001-10-09
- bugfix: show application supplied frame icons even if without
icon mask
- bugfix (for binary distribution): determinate the langinfo
codeset item id on runtime
- bugfix: remove icons from icon cache when destroyed
- bugfix/compatibility hack: fallback to linux.xpm when provided by
the current theme
- bugfix: window menu crashed when tray completely disabled
- bugfix: tray crashed when compiled without gradient support
- bugfix: #469081 Java cause IceWM to crash on mapping
1.0.9: 2001-10-08
- bugfix: #209114 fixed?
- feature: new translations: Croatian (Vlatko Kosturjak),
Italian (Riccardo Murri), Lithuanian (Gediminas Paulauskas),
Polish (Przemyslaw Sulek), Romanian (Tiberiu Micu)
- bugfix: killed dangling WindowOptions::icon pointer in combineOptions
- bugfix: limitSize still was broken (Max Kirillov)
- bugfix/feature: ColorScrollBarInactiveArrow
- feature: continuous edge switching
- bugfix: colored edge switching cursors
- bugfix: COMPOUND_TEXT handling (Florin)
- feature: HorizontalEdgeSwitch and VerticalEdgeSwitch
- feature: LowerOnClickWhenRaised lower the active window when
clicked again
- bugfix: #445264 CenterMaximizedWindows=0 was broken
- bugfix: dynamic changing of client icons
- bugfix: reparenting (aka. swallowing) should work now
- bugfix: comments into config examples about discarding of changes
- bugfix/feature: massive I18N cleanup: fallback to C locale;
proper dectection of multibyte mode; unicode conversion;
clean, C++ stylish font handling; ...
- feature: added icesh - a command line window manager
- bugfix: mailbox monitor falls back to /var/spool/mail/$LOGIN
when neither MailBoxPath nor $MAIL are set.
- bugfix: use argv[0] to build the themes menu
- enhanced "Starting icewm" section of INSTALL and added a section
describing how to setup Xft
- experimental feature: antialiasing for icons and text;
configure with --enable-antialiasing and --enable-xfreetype;
--enable-antialiasing attempts to activate XFreeType support
implicitly; use the XFreeType option to disable XFreeType
support on runtime. Xnest (XFree86 4.1.0) crashes on startup
when Xnest is invisible - why? Are there other X servers
with this problem?
- feature: allow to toggle between environment and root property
base GNOME autodetection on compile time;
configure with --with-gnome-root-property[=atom] and
--without-gnome-root-property
- feature: menu item to toggle doNotCover flag;
due some internas the window has to be sticky
(allWorkspaces flag) to let this option take effect.
- feature: Move/Resize FX (experimental bloat);
options: MoveSizeFXFontName (string),
MoveSizeInterior, MoveSizeDimensionLines,
MoveSizeGaugeLines, MoveSizeDimensionLabels,
MoveSizeGeometryLabels (bitmasks);
configure with --enable-movesize-fx;
problem: Expose problems in other windows with opaque
mode. Need to grab XServer. Better solutions?
- feature: TitleBarHorzOffset/TitleBarVertOffset
- feature: TimeFormatAlt option (Jan Krupa)
- feature: icon tray (Jan Krupa)
options: TaskBarShowTray, TrayDrawBevel, TrayShowAllWindows
window option: tray (Ignore: no icon on tray (default);
Minimized: icon on tray and if not minimized also
on task pane; Exclusive: icon on tray only (and not on
task pane))
- bugfix: renamed START_PIXMAP from linux.xpm to icewm.xpm
- bugfix: #427048 compatibility issues in Makefile.in
- bugfix: #424194 ellipsis for long labels on mini icons
- feature: pixmap for workspace buttons: create a "workspace"
subdirectory and name your workspaces accordingly to the
pixmaps in this directory
- feature: allow transparent menu selection (ColorActiveMenuItem="")
- feature/bugfix: support taskbar/taskbutton* pixmap for all
pixmap looks (not only gtk)
- feature/bugfix: corner pixmap can have another size than specified
by CornerSizeX/Y now
- feature: more specific widget setup
(pixmaps: buttonI.xpm, buttonA.xpm, listbg.xpm, dialogbg.xpm,
taskbar/toolbuttonbg.xpm, taskbar/workspacebuttonbg.xpm
taskbar/workspacebuttonactive.xpm;
colors: ColorToolButton, ColorToolButtonText,
ColorActiveWorkspaceButton, ColorActiveWorkspaceButtonText,
ColorNormalWorkspaceButton, ColorNormalWorkspaceButtonText;
fonts: ToolButtonFontName, ActiveWorkspaceFontName,
NormalWorkspaceFontName)
- experimental feature: gradient support
the option "Gradients" lists the pixmaps to scale;
titlebar gradients can be adjusted with
TitleBarJoinLeft and TitleBarJoinRight;
configure with --enable-gradients
- feature: transparent applets (clock, net/cpu status):
use an empty string for their background/idle color
- bugfix/feature: DisableImlibCaches
- bugfix: reduce warnings with Intel's C++ compiler for Linux
- feature DesktopTransparencyColor/Image: fast, but memory consuming
static effects for semi-transparent windows -- I love it
- better[?] colormap detection (at least for AIX)
- experimental feature: shaped decorations, nonoptimal performance;
option: ShapesProtectClientWindow;
configure with --enable-shaped-decorations
- optional (and experimental) feature: /proc/wm-session support
(mainly useful for X-PDAs, details in README.wm-session)
- feature: mouse wheel support for menus, holding shift increases
velocity by factor 2.5 (should UseMouseWheel be respected?)
- bugfix/feature: support for runonce hotkeys
- feature: show all icons in quickswitch and more. new options:
QuickSwitchShowIcons, QuickSwitchTextFirst,
QuickSwitchSmallWindow, QuickSwitchHugeIcon,
QuickSwitchFillSelection, QuickSwitch{Horz,Vert,Icon}Margin,
QuickSwitchIconBorder, QuickSwitchSeparatorHeight,
ColorQuickSwitchActive (inspired by Andrew Oliver´s and
Marius Gedminas´s patches #400421 and #400635)
- feature: added support for menusep.xpm, menusel.xpm pixmap to
improve themes using menubg.xpm
- bugfix: provide consistence behaviour in resource priority for
absolutely and relatively specified themes
(reported by Helmut Pitters)
- feature: new keybindings: KeySysCascade, KeySysArrange,
KeySysTileVertical, KeySysTileHorizontal, KeySysUndoArrange
KeySysArrangeIcons, KeySysMinimizeAll, KeySysHideAll
(inspired by Liav Asseraf)
- bugfix: #420404 "minimize all" in windowListPopup
- bugfix: #420404 superfluous separator for empty menu files
- feature: ShowGNOMEAppsMenu, ShowGNOMEUserMenu, ShowKDEMenu
(inspired by Liav Asseraf, Chmouel Boudjnah)
- feature: improved net status tooltip, multiline tooltips
(inspired by Marius Gedminas)
- bugfix: ctrl-double click resets net monitor graph (Marius Gedminas)
- feature: additional keys to move/resize windows
(use combinations of shift and ctrl to speed up,
KP_Begin (5 on keypad) to center) (#400633: Marius Gedminas)
- feature: multiple mailbox and network monitors
- feature: added mkbuilddir.sh
- feature: MailClassHint, ClockClassHint, CPUStatusClassHint
NetStatusClassHint and default values
- feature: TaskBarLaunchOnSingleClick command
1.0.8-6: 2001-05-07
- bugfix: #419977 icewm-default-1.0.8-5 used invalid --prefix
1.0.8-5: 2001-04-26
- bugfix: improved gettext detection
- bugfix: Win95Keys=0 caused undeterminated key grabbing
- bugfix: #418469 TitleBarCentered compatibility hack
- bugfix: improved detection of libesd
- bugfix: #418719 help browser has no scroll bar in 1.0.8-4
- bugfix: #418383 need to log out twice
- bugfix: #418291 Alt+key doesn't work in 1.0.8-4
(thank you KoRn3, for helping me to track it down)
1.0.8-4: 2001-04-23
- bugfix: s/TitleButtons/TitleButtonsRight/ in win95/default.theme
- bugfix: #409500 Infadel2 theme failed to install
- bugfix: segfault in icehelp
- bugfix: usage screen for icehelp
- bugfix: cursor definitions of global themes (libdir, cfgdir)
were ignored (Olivier Samyn)
- bugfix: #409622 duplicate themes not in their sections
- bugfix/feature: absolute paths for themes are allowed now