forked from ThomasAdam/fvwm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog-pre-2.4
14830 lines (10684 loc) · 448 KB
/
ChangeLog-pre-2.4
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
-*-change-log-*-
2001-06-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/menus.c (MenuInteraction):
(find_entry):
(menuShortcuts):
(pop_menu_up):
reduce network traffic during menu waits
2001-06-30 Mikhael Goikhman <[email protected]>
* fvwm/fvwm2:
minor corrections
* sample.fvwmrc/system.fvwm2rc-sample-95:
Fixed several problems like position hints in WindowList should
go before other args, invisible menu Greyed color, SelectOnRelease
in the skipped window listing and text rewordings.
In addition, some parts of Setup95 were based on earlier fvwm-themes,
since then these parts are changed, so update some of them here too.
This includes renaming desktop component to globalfeel, some changes
in menus and more minor cleanups. It's still messy enough, but ok...
2001-06-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/stack.c (is_on_top_of_layer_ignore_rom):
(is_on_top_of_layer):
(CMD_RaiseLower):
fixed RaiseLower with BugOpts RaiseOverUnmanaged
2001-06-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* configure.in:
changed version to 2.4.0-pre2
* NEWS:
* fvwm/fvwm2.1:
* modules/**/*.1:
updated for pre release 2.4.0-pre1
2001-06-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* libs/Graphics.c (CreateGradientPixmap):
fixed crash caused by signed/unsigned confusion
* todo-2.4:
updated
* fvwm/fvwm2.1:
corrected typo
2001-06-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/add_window.c (setup_icon_font):
adjust icon title y offset when the icon font changes
* libs/GetFontSet.c (GetFontSetOrFixed):
reformatted error message
2001-06-23 Dan Espen <[email protected]>
* fvwm/fvwm2.1: Make the multiple Iconboxes rule a little clearer.
* fvwm/fvwm.c (InitVariables): Add the vendor string for Reflection X
to automatically set RaiseHackNeeded.
2001-06-23 Mikhael Goikhman <[email protected]>
* fvwm/fvwm2:
improve the WindowList double press example to work with all focus
policies
2001-06-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* NEWS, configure.in:
changed version to 2.3.34
2001-06-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/events.c (flush_property_notify):
accidentally flushed PropertyNotify events for all windows, not just the
given window
* fvwm/icons.c (Iconify):
sticky icons on desks other than 0 are mapped during a restart
* fvwm/misc.c (UngrabEm):
fixed ungrabbing BUSY cursor when a menu is still open
* fvwm/events.c (HandleMapRequestKeepRaised):
don't grab the server when 'mapping' windows that start iconic
fixes FvwmIconMan not noticing iconic state of windows starting iconic
2001-06-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/functions.c (execute_function):
fixed memory leak
* fvwm/decorations.c (GetMwmHints):
fixed memory leak
* fvwm/session.c (SaveWindowStates):
make sure the string list is properly freed
* libs/Makefile.am (libfvwm_a_SOURCES):
* libs/Event.c (GetSubwindowFromEvent):
new file and function
* fvwm/functions.c (execute_function):
fixed UMR
* fvwm/session.c (MatchWinToSM):
fixed a memory leak when using session management
* fvwm/session.c (LoadWindowStates):
(duplicate):
* fvwm/builtins.c (CMD_StrokeFunc):
use saferealloc instead of realloc
use safemalloc instead of malloc
2001-06-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/add_window.c (destroy_icon_font):
check if icon_font == default font before deleting the icon_font,
not if title_font == default font
2001-06-03 Mikhael Goikhman <[email protected]>
* fvwm/style.c (CMD_Style):
accept style option Layer without argument
2001-06-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/virtual.c (map_window):
prevent that dying windows are mapped again during a desk change
2001-06-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/focus.c (restore_focus_after_unmap):
ignore transientfor windows on other desks and honour Skip... styles
when restoring focus
2001-05-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/add_window.c (setup_key_and_button_grabs):
fixed bug #711 (key bindings not properly removed)
* fvwm/events.c (GetContext):
fix to catch button presses with unclutter
2001-05-29 Mikhael Goikhman <[email protected]>
* acconfig.h:
a fix for autoconf-2.50
* fvwm/module_interface.c (PositiveWrite):
print module name and alias in "Failed to read descriptor" error
2001-05-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/add_window.c (destroy_window):
unmap the window immediately when it's going to be destroyed so so that
it does not hang around during a wait
(destroy_window):
inform modules that window will be gone soon too
* fvwm/builtins.c (CMD_Wait):
fixed core dump
* fvwm/misc.c (UngrabEm):
workaround for wait hang caused "I" function patch
2001-05-28 Dan Espen <[email protected]>
* INSTALL.fvwm: Identify LDFLAGS as a Makefile variable.
2001-05-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/focus.c (focus_grab_buttons_on_pointer_window):
(MoveFocus):
* fvwm/stack.c (LowerWindow):
(RaiseWindow):
grab buttons on focused window after raise/lower to make sure that
...ClickRaises works if a window was raised above the window under the
pointer
* fvwm/stack.c (LowerWindow):
(RaiseWindow):
restored sending M_RAISE_WINDOW and M_LOWER_WINDOW that was accidentally
removed somewhere after 2.2 - fixes missing raise/lower events in
FvwmEvent
(restack_windows):
fixed an error message
2001-05-27 Dan Espen <[email protected]>
* INSTALL.fvwm: Remove information about obsolete
--disable-modality, --enable-move-bug-workaround.
Supplement LDFLAGS with flags for other platforms.
2001-05-27 Mikhael Goikhman <[email protected]>
* fvwm/functions.c (execute_function):
print log commands after expansion rather than before
2001-05-24 Mikhael Goikhman <[email protected]>
* NEWS:
* fvwm/fvwm2.1:
* fvwm/functions.c (expand):
(execute_function):
Module configuration commands are now processed like any other
commands (so "+ I $0" when $0 is "*FvwmPager..." is now recognized
as a module command, as well as "+ I *$0" when $0 is "FvwmPager...").
This also means that parameters are expanded now in module lines,
except for single alphabetical-letter parameters, which are not
expanded for backward compatibility.
* Makefile.am:
make older bzip2 work too
* fvwm/read.c (run_command_stream):
strip trailing end of line in commands
2001-05-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/stack.c (is_on_top_of_layer):
never consider a window to be "on top" with windows X servers
* fvwm/virtual.c (checkPanFrames):
cleaned up code duplication and logic
* fvwm/events.c (HandleConfigureRequest):
fixed random client window size when ConfigureNotify caused a restack
but no size change; fixes "import -frame" problem
2001-05-20 Mikhael Goikhman <[email protected]>
* INSTALL.fvwm: remove a note about the old Cygwin (hopefully fixed)
* configure.in: say that rplay is needed for FvwmEvent only
* fvwm/fvwm2.1: several typos and corrections
* fvwm/gnome.c: use True/False instead of On/Off in WindowShade
* README: s/2.3.0/2.4.0/
2001-05-19 olicha <[email protected]>
* fvwm/gnome.c (GNOME_HandlePropRequest):
Fixed GNOME Shade state
2001-05-16 Mikhael Goikhman <[email protected]>
* fvwm/fvwm2.1:
more explanations about module aliases
2001-05-14 Dan Espen <[email protected]>
* libs/Graphics.c (CreateGradientPixmap): Avoid divide by zero errors
in S,C,Y Gradients with the help of a very smart horse.
2001-05-14 olicha <[email protected]>
* acinclude.m4:
Fixed (true) IMLIB test (never used) and say that we test GDK Imlib
in GDK Imlib test
2001-05-09 Hippo
* fvwm/focus.c (warp_to_fvwm_window):
WarpToWindow handles negative numbers
2001-05-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/focus.c (DoSetFocus):
another attempt to fix "Globally Active" input model
2001-05-10 Mikhael Goikhman <[email protected]>
* session.c (get_version_string):
increment state file version since struct window_flags was changed
2001-05-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/events.c (HandlePropertyNotify):
* fvwm/icons.c (Iconify):
* fvwm/window_flags.h (HAS_ICON_CHANGED):
* fvwm/fvwm.h (struct):
Fixed active icon change when window was not iconified.
* fvwm/focus.c (DoSetFocus):
Fixed "Globally Active" input model
2001-05-09 André Dahlqvist <[email protected]>
* README: Minor wording change.
2001-05-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/fvwm2.1:
added default menu binding to description
2001-05-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/functions.c (DeferExecution):
fixed keyboard lockup
* fvwm/events.c (HandleLeaveNotify):
took out the rest of the icon title expansion patch
2001-05-08 Mikhael Goikhman <[email protected]>
* sample.fvwmrc/system.fvwm2rc-sample-95:
several fixes; use a new module config
* fvwm/icons.c (DrawIconWindow):
restored behaviour "enter icon - expand title, leave icon - collapse"
changed yesterday
2001-05-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/icons.c (DrawIconWindow):
fixed icon title expansion while icon has focus
* fvwm/events.c (HandleLeaveNotify):
fixed enter and leave notify events for icons in scripts
2001-05-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/fvwm2.1:
FVWM --> fvwm in some places
2001-05-06 Mikhael Goikhman <[email protected]>
* acconfig.h:
* acinclude.m4:
* configure.in:
* fvwm/fvwm.c:
renamed "Imlib" support to "GDK Imlib"
2001-05-04 Mikhael Goikhman <[email protected]>
* NEWS, configure.in:
changed version to 2.3.33
2001-05-04 Mikhael Goikhman <[email protected]>
* configure.in:
report gdk-imlib support in FvwmGtk; don't report gnome-libs and
gdk-imlib support in FvwmGtk if FvwmGtk is not installed;
rename $*_gnome to $*_gnomewm to reduce confusion
* INSTALL.fvwm:
added a note for Cygwin users, other minor documentation improvements
* NEWS:
document latest changes
2001-05-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/events.c (HandleEnterNotify):
Another attempt to MouseFocus transition
2001-05-03 Mikhael Goikhman <[email protected]>
* acinclude.m4:
enabled and fixed imlib test;
don't write all verbose tips for imlib to stdout, but to config.log
2001-05-02 Dan Espen <[email protected]>
* fvwm/events.c (HandleEnterNotify): Backout fixed MouseFocus
transition w/ neverfocus and clicktofocus change and some debug stmts.
2001-05-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/events.c (HandleConfigureRequest):
(HandleConfigureRequest):
Applied Tk drawing after restack patch by Slaven Rezic
(HandleEnterNotify):
fixed MouseFocus transition w/ neverfocus and clicktofocus
2001-05-01 Mikhael Goikhman <[email protected]>
* fvwm/misc.c:
added missing #include <time.h> needed for FVWM_DEBUG_TIME
* configure.in:
* acconfig.h:
* fvwm/functions.c (execute_function):
* INSTALL.fvwm:
added --enable-command-log configure option using FVWM_COMMAND_LOG
for logging all executed commands, this also enables reporting times
* INSTALL:
restored previous underlying style using '='
2001-04-28 Dan Espen <[email protected]>
* libs/Graphics.c (AllocNonlinearGradient): Removed aborts from
gradient calculation consistency checks.
2001-04-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/events.c (HandleEnterNotify):
(HandleLeaveNotify):
tried to fix focus/grab interaction
2001-04-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/fvwm2.1 (Note):
slightly better explanation of context window in functions
* fvwm/stack.c (mark_transient_subtree):
fixed collection of transients on same layer
2001-04-23 Dan Espen <[email protected]>
* fvwm/placement.c (PlaceWindow): Ungrab the pointer when window
disappears during placement.
2001-04-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/add_window.c (AddWindow):
Explicitly destroy a window at the end of the function if the client
window does not exist anymore.
2001-04-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/events.c (HandleEnterNotify):
a little event handling clean up
* fvwm/events.h:
EnterNotify and LeaveNotify are generated only for the decor_w and the
client window
* fvwm/placement.c (PlaceWindow):
do not free window structure in placement code; fixes core dump
2001-04-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/fvwm.c (FvwmErrorHandler):
suppress error messages for X_ConfigureWindow requests
* fvwm/events.c (HandleEnterNotify):
make sure window under pointer gets the focus after a restart
2001-04-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* libs/Target.c (fvwmlib_get_target_window):
* libs/Grab.c (MyXGrabKeyboard):
(MyXUngrabKeyboard):
* fvwm/placement.c (PlaceWindow):
(PlaceWindow):
* fvwm/move_resize.c (AnimatedMoveAnyWindow):
(InteractiveMove):
(CMD_Resize):
(InteractiveMove):
(AnimatedMoveAnyWindow):
(CMD_Resize):
* fvwm/functions.c (DeferExecution):
* fvwm/builtins.c (CMD_StrokeFunc):
* fvwm/menus.c (do_menu):
new functions MyXGrabKeyboard and MyXUngrabKeyboard to handle multiple
keyborad grabs
fixes focus lost during menu animation
2001-04-19 Mikhael Goikhman <[email protected]>
* fvwm/fvwm2.1:
corrected a spacing and contradicting info in FakeClick entry
(it once suggested to use depth 1 and once depth 0 for the root)
2001-04-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/menus.c (get_one_menu_position_argument):
warning fixes
* libs/Parse.c (GetSuffixedIntegerArguments):
(SuffixToPercentValue):
(GetTokenIndex):
(GetNextTokenIndex):
use pointers instead of arrays as function parameters to suppress some
warnings
* fvwm/functions.c (DeferExecution):
grab keyboard when selecting a window to fix similar problem
* fvwm/placement.c (PlaceWindow):
wire frame placement fix w/ keyboard
2001-04-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/move_resize.c (InteractiveMove):
(CMD_Resize):
grab keyboard during wire frame moves too so that keyboard input is not
passed to a window below; fixed moving window frames with the keyboard
same for resizing
fixed X freeze when window disappeared before the server was grabbed
check if a shaded window still exists too
2001-04-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/fvwm2.1 (Example):
* fvwm/move_resize.c (CMD_SnapAttraction):
* libs/defaults.h (DEFAULT_SNAP_ATTRACTION_ON_MODE):
Some corrections in man page and SnapAttraction parsing
2001-04-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/icons.c (DeIconify):
(Iconify):
set focus to the correct window when iconifying transient window trees
fix deiconifying windows on other pages
* fvwm/icons.c (DeIconify):
* fvwm/events.c (HandleUnmapNotify):
* fvwm/add_window.c (destroy_window):
* fvwm/focus.c (restore_focus_after_unmap):
Delete and set focus when a window is moved to a desk or iconified or
deiconified
* fvwm/virtual.c (do_move_window_to_desk):
delete focus when moving focused window to another desk
2001-04-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/borders.c (draw_clipped_decorations):
(get_common_decorations):
force redrawing
2001-04-07 Dan Espen <[email protected]>
* NEWS, configure.in:
changed version to 2.3.32
2001-04-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* sample.fvwmrc/DecorWin95:
* sample.fvwmrc/DecorMwm:
add "Destroydecor recreate DecorBase"
* fvwm/builtins.c (DestroyFvwmDecor):
(CMD_DestroyDecor):
added the recreate option to the DestroyDecor command
* fvwm/focus.c:
* fvwm/misc.c (UngrabEm):
(GrabEm):
* fvwm/icons.c (Iconify):
* fvwm/add_window.c (destroy_window):
* fvwm/events.c (HandleUnmapNotify):
removed all of the code dealing with the old Scr.PreviousFocus window
which was essentially a no-op with a host of unwanted side effects.
The idea was to suppress the EnterNotify and LeaveNotify events caused
by grabbing and ungrabbing the pointer by transferring the focus to
Scr.NoFocusWin before grabbing and restoring it afterwards. But of
course the focus has no effent on Enter/LeaveNotify events, only on
FocusIn/FocusOut events which are not generated by grabbing or
ungrabbing the pointer.
* fvwm/misc.c (GrabEm):
(UngrabEm):
transfer focus to Scr.NoFocusWin for GRAB_BUSY also
* fvwm/events.c (HandleEnterNotify):
(HandleLeaveNotify):
fixed Prev command with MosueFocus or SloppyFocus
* fvwm/focus.c (clear_focus_window):
new function
* fvwm/events.c (HandlePropertyNotify):
small focus handling fix
* fvwm/focus.c (FocusOn):
a little clean up
* fvwm/misc.c (GrabEm):
safety patch
* fvwm/focus.c (set_focus_window):
(restore_prevfocus_window):
(DoSetFocus):
(restore_focus_after_unmap):
fixed window list order
* fvwm/conditional.c (Circulate):
cleaned up
* **/.cvsignore:
added gmon.out
2001-04-06 Dan Espen <[email protected]>
* sample.fvwmrc/DecorMwm:
* sample.fvwmrc/DecorWin95: Use one decor, remove DestroyDecor.
2001-04-07 Mikhael Goikhman <[email protected]>
* fvwm/menus (scanForHotkeys):
don't set hotkey if a string after a mark is empty, this fixes the
core dump later in draw_underline()
* fvwm/fvwm2.1:
use bold instead of quotes in "initialization functions" section
2001-04-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/move_resize.c (CMD_Maximize):
fixed maximize - move - maximize on pages other than 0 0
* fvwm/module_interface.c (make_named_packet):
(make_vpacket):
truncate packets longer than allowed max size
* fvwm/fvwm.c (CatchRedirectError):
(CatchFatal):
warning fix
2001-04-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/menus.c (DestroyMenu):
fixed menus being overwritten by copies of other menus
2001-04-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/virtual.c (MoveViewport):
do not overwrite 'previous' page when switching pages without actually
moving the viewport
2001-04-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/screen.h (ScreenInfo):
* fvwm/events.c (HandleUnmapNotify):
(HandleFocusIn):
(HandleKeyPress):
(HandlePropertyNotify):
(HandleLeaveNotify):
(HandleEnterNotify):
(HandleButtonPress):
(HandleUnmapNotify):
(HandleMapNotify):
(HandleMapRequestKeepRaised):
(HandleEnterNotify):
(HandleLeaveNotify):
* fvwm/virtual.c (MapDesk):
(UnmapDesk):
* fvwm/icons.c (DeIconify):
(Iconify):
* fvwm/fvwm.c (InitVariables):
(InitVariables):
* fvwm/move_resize.c (CMD_Maximize):
(handle_stick):
* fvwm/update.c (apply_decor_change):
(flush_window_updates):
* fvwm/windowlist.c (CMD_WindowList):
* fvwm/conditional.c (Circulate):
(MatchesConditionMask):
* fvwm/builtins.c (CMD_WindowShade):
* fvwm/add_window.c (CaptureAllWindows):
(destroy_window):
* fvwm/misc.c (GrabEm):
removed Focus, LastScreenFocus and PreviousFocus members from screen
struct; handle these locally in focus.c and provide access functions
fixed Prev condition in complex functions
* fvwm/conditional.c (MatchesConditionMask):
fixed core dump
* fvwm/focus.c (get_focus_window):
(get_current_focus_window):
(set_focus_window):
(store_prevfocus_window):
new functions
2001-04-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/functions.c (AddToFunction):
allow "Click", "Hold", etc. in addition to single letter function
specifiers
(execute_complex_function):
a little clean up
(AddToFunction):
added a warning when a command or function name is used as the function
specifier
2001-03-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/focus.c (DoSetFocus):
fixed keyboard input in active icons
* fvwm/menus.c (MenuInteraction):
fixed PopdownDelay when entering a menu item with a non existent sub
menu
(MenuInteraction):
fixed core dump and screwed up warping w/ animated menus
* fvwm/virtual.c (MapDesk):
return focus to window on other desk when switching desks
* fvwm/borders.c (DrawButton):
fixed core dump
2001-03-28 Dan Espen <[email protected]>
* sample.fvwmrc/Makefile.am (EXTRA_DIST):
* sample.fvwmrc/DecorMwm:
* sample.fvwmrc/DecorWin95:
* sample.fvwmrc/decor_examples: Decors come in separate files,
Changing to a new decor is remembered.
2001-03-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* NEWS, configure.in:
changed version to 2.3.31
2001-03-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/move_resize.c (DoSnapAttract):
fixed windows snapping off screen
* fvwm/borders.c (RedrawBorder):
rewrote and fixed handle drawing
2001-03-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* sample.fvwmrc/system.fvwm2rc:
fixed *FvwmIconMan*sort and ...*dontshow resources
* sample.fvwmrc/decor_examples:
* sample.fvwmrc/system.fvwm2rc-sample-1:
* sample.fvwmrc/system.fvwm2rc:
fixed MenuStyle commands
* libs/Graphics.c (AllocLinearGradient):
fixed rounding errors
(AllocLinearGradient):
removed debug code
* fvwm/move_resize.c (CMD_Resize):
fixed resizing shaded windows
2001-03-27 Mikhael Goikhman <[email protected]>
* fvwm/session.c (get_version_string):
window_flags changed, so state file version should be increased
2001-03-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/add_window.c (setup_style_and_decor):
* fvwm/builtins.c (CMD_ChangeDecor):
* fvwm/window_flags.h:
* fvwm/fvwm.h (struct):
fixed (?) ChangeDecor/UseDecor/Style problem
2001-03-26 Dan Espen <[email protected]>
* fvwm/add_window.c (setup_style_and_decor): Make useDecor work again.
2001-03-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/focus.c (ReturnFocusWindow):
new function
* fvwm/misc.c (UngrabEm):
fixed pointer grabbing/focus after a menu closes
* fvwm/move_resize.c (CMD_Resize):
fixed resizing shaded windows w/ titleatbottom
2001-03-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* INSTALL.fvwm (Note):
* vms/config.h:
* fvwm/cursor.h:
* acconfig.h:
* configure.in:
* fvwm/builtins.c (CMD_BugOpts):
* fvwm/fvwm.c (InitVariables):
removed --enable-move-bug-workaround configure option
removed --disable-modality configure option
removed remnants of BUSYCURSOR configure option
2001-03-24 Mikhael Goikhman <[email protected]>
* NEWS:
* sample.fvwmrc/system.fvwm2rc-sample-2:
small rewording/spelling
2001-03-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/modconf.c (CMD_Send_ConfigInfo):
* fvwm/module_interface.c (CMD_SendToModule):
* fvwm/builtins.c (CMD_Beep):
(CMD_EscapeFunc):
* fvwm/gnome.c (CMD_GnomeShowDesks):
(CMD_GnomeButton):
* fvwm/modconf.c (CMD_DestroyModuleConfig):
* fvwm/windowlist.c (CMD_WindowList):
* fvwm/virtual.c (CMD_EdgeThickness):
(CMD_EdgeScroll):
(CMD_EdgeResistance):
(CMD_DesktopSize):
(CMD_GotoDesk):
(CMD_GotoDeskAndPage):
(CMD_GotoPage):
(CMD_MoveToDesk):
(CMD_Scroll):
* fvwm/update.c (CMD_UpdateStyles):
* fvwm/style.c (CMD_DestroyStyle):
(CMD_StyleStyle):
* fvwm/stack.c (CMD_Raise):
(CMD_Lower):
(CMD_RaiseLower):
(CMD_Layer):
(CMD_DefaultLayers):
* fvwm/session.c (CMD_QuitSession):
(CMD_SaveSession):
(CMD_SaveQuitSession):
* fvwm/repeat.c (CMD_Repeat):
* fvwm/read.c (CMD_Read):
(CMD_PipeRead):
* fvwm/placement.c (CMD_PlaceAgain):
* fvwm/move_resize.c (CMD_ResizeMove):
(CMD_Move):
(CMD_AnimatedMove):
(CMD_MoveToPage):
(CMD_MoveThreshold):
(CMD_OpaqueMoveSize):
(CMD_HideGeometryWindow):
(CMD_SnapAttraction):
(CMD_SnapGrid):
(CMD_XorValue):
(CMD_XorPixmap):
(CMD_Resize):
(CMD_Maximize):
(CMD_Stick):
* fvwm/module_interface.c (CMD_Module):
(CMD_ExecuteModuleSynchronous):
(CMD_KillModule):
(CMD_set_mask):
(CMD_set_sync_mask):
(CMD_set_nograb_mask):
* fvwm/menus.c (CMD_DestroyMenu):
(CMD_Popup):
(CMD_DestroyMenuStyle):
(CMD_CopyMenuStyle):
(CMD_MenuStyle):
(CMD_ChangeMenuStyle):
(CMD_AddToMenu):
* fvwm/icons.c (CMD_Iconify):
* fvwm/focus.c (CMD_FlipFocus):
(CMD_Focus):
(CMD_WarpToWindow):
* fvwm/cursor.c (CMD_CursorStyle):
(CMD_BusyCursor):
* fvwm/conditional.c (CMD_Prev):
(CMD_Next):
(CMD_None):
(CMD_Current):
(CMD_All):
(CMD_Direction):
(CMD_Pick):
(CMD_WindowId):
* fvwm/builtins.c (CMD_WindowShade):
(CMD_Bell):
(CMD_Plus):
(CMD_DestroyFunc):
(CMD_AddToFunc):
(CMD_Nop):
(CMD_CursorMove):
(CMD_Destroy):
(CMD_Delete):
(CMD_AddToDecor):
(CMD_Close):
(CMD_Restart):
(CMD_ExecUseShell):
(CMD_Exec):
(CMD_RefreshWindow):
(CMD_Refresh):
(CMD_RefreshWindow):
(CMD_Wait):
(CMD_Quit):
(CMD_QuitScreen):
(CMD_Echo):
(CMD_ColormapFocus):
(CMD_SetClick):
(CMD_ImagePath):
(CMD_IconPath):
(CMD_PixmapPath):
(CMD_ModulePath):
(CMD_ModuleTimeout):
(CMD_HilightColor):
(CMD_HilightColorset):
(CMD_TitleStyle):
(CMD_AddTitleStyle):
(CMD_Colorset):
(CMD_DefaultIcon):
(CMD_DefaultColorset):
(CMD_DefaultColors):
(CMD_DefaultFont):
(CMD_IconFont):
(CMD_WindowFont):
(CMD_ChangeDecor):
(CMD_DestroyDecor):
(CMD_AddToDecor):
(CMD_UpdateDecor):
(CMD_ButtonStyle):
(CMD_AddButtonStyle):
(CMD_SetEnv):
(CMD_UnsetEnv):
(CMD_GlobalOpts):
(CMD_BugOpts):
(CMD_Emulate):
(CMD_ColorLimit):
(CMD_SetAnimation):
(CMD_WindowShadeAnimate):
(CMD_FakeClick):
(CMD_StrokeFunc):
(CMD_ClickTime):
* fvwm/borders.c (CMD_ButtonState):
(CMD_BorderStyle):
* fvwm/bindings.c (CMD_Stroke):
(CMD_Mouse):
(CMD_PointerKey):
(CMD_Key):
(CMD_IgnoreModifiers):
* fvwm/add_window.c (CMD_RecaptureWindow):
(CMD_Recapture):
* fvwm/functions.c (CMD_Silent):
* fvwm/functions.c (func_config):
* fvwm/commands.h:
renamed all functions for external commands to "CMD_commandname"
* fvwm/functions.c (func_config):
introduced a command table macro and added a column that hold the old
spelling of the command names
* NEWS:
* fvwm/fvwm2.1 (sub-menu):
typo corrections
* vms/fvwmrc.dat:
* sample.fvwmrc/system.fvwm2rc-sample-95:
* sample.fvwmrc/system.fvwm2rc-sample-2:
* sample.fvwmrc/system.fvwm2rc-sample-1:
* sample.fvwmrc/system.fvwm2rc:
* sample.fvwmrc/decor_examples:
* sample.fvwmrc/new-features:
* fvwm/ConfigFvwmSetup:
converted to new placement style names
2001-03-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/borders.c (RedrawButtons):
(RedrawTitle):
fixed core dumps
2001-03-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/functions.c (execute_complex_function):
fixed button presses being passed to other applications with functions
that only have immediate actions
* libs/Parse.c (ParseToggleArgument):
backed out to allow '1' and '0' as true and false because it breaks
parsing in several places
2001-03-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/builtins.c (do_title_style):
fixed typo
2001-03-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/events.c (HandleMapRequestKeepRaised):
* fvwm/virtual.c (unmap_window):
(map_window):
disabled ICCCM2 patch that unmaps the client window whenever the frame
is unmapped since it causes way too mouch trouble. #define
ICCCM2_UNMAP_WINDOW_PATCH to enable it
* libs/Graphics.c (ParseGradient):
added an error message if number of gradient segments does not match
the given number of colours and percentages
(ParseGradient):
(CreateGradientPixmapFromString):
improved error messages
(ParseGradient):
small parsing fixes
2001-03-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
* fvwm/fvwm.c (MappedNotOverride):
* fvwm/builtins.c (RecaptureWindow):
(Recapture):
(do_recapture):
* fvwm/fvwm.c (Reborder):
(CaptureOneWindow):
(hide_screen):
(CaptureAllWindows):
functions moved to add_window.c