File: ChangeLog

package info (click to toggle)
ude 0.2.8.final-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,096 kB
  • ctags: 1,613
  • sloc: ansic: 12,648; sh: 3,025; makefile: 476; yacc: 318
file content (835 lines) | stat: -rw-r--r-- 35,620 bytes parent folder | download
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
2002-02-11  Christian Ruppert <arc@gmx.li>

	* RELEASE: ude-0.2.8
	* NEWS: updated for release 0.2.8
	* README: rewritten for release 0.2.8
	* uwm/uwmmenu.c: uwm will no longer segfault now in case it could
	  not restart itself (no SeeYa after CleanUp...).
	* config/Makefile.am: removed StartScript and StopScript from DATA
	  variable so that x flag is set.
	* config/uwmrc-behaviour.hook: removed tick to avoid preprocessor
	  warning parsing the file.
	* configure.in: changed version number to 2.8 and added
	  config/StartScript to output file list.
	* doc/Makefile.am: added the README file to installed documentation.
	* autogen.sh: added link creation for README file to doc directory.
	* config/StartScript moved to config/StartScript.in: now using autoconf
	  macro for less to find installed README file.
	* uwm/init.c: uwm now sets UDEdir environment on system installation
	  directory on startup if UDEdir has not yet been set.

2002-02-10  Christian Ruppert <arc@gmx.li>

	* uwm/init.h: added InitStruct.BehaviourFlags and BF_IN_WIN_CTRL
	  definition.
	* uwm/uwm.h: added braces around event mask definitions
	* uwm/uwm.h: added UWM_MODIFIERS definition.
	* uwm/init.c: replaced modifier key combination with UWM_MODIFIERS
	  predefinition.
	* uwm/init.c (InitDefaults): added default initialisation of
	  InitS.BehaviourFlags.
	* uwm/init.c: added config option BehaviourFlags
	* doc/manual.tex: added description for BehaviourFlags option.
	* doc/manual.tex: started chapter "The Keyboard".
	* doc/html/Makefile.am: removing manual.css now every time we rebuilt
	  to make sure it is rebuilt.
	* config/uwmrc-behaviour.hook: added BehaviourFlags example.
	* uwm/handlers.c (HandleButtonPress): added support for
	  BehaviourFlags/BF_IN_WIN_CTRL option.

2002-01-21  Christian Ruppert <arc@gmx.li>

	* uwm/properties.c (UpdateMotifHints): bugfix: now remaping window
	  after redrawing  border in case window is visible while motif hints
	  change.
	* configure.in: added po/Makefile to output list

2001-10-29  Christian Ruppert <arc@gmx.li>

	* uwm/handlers.c (HandleUnmapNotify): we can only expect unmap events
	  for the managed window itself so i moved decreasing of
	  expected_unmap_events into the event.window == uc->win conditional
	  code. fixes the 'disapearing xmms on restart'-bug

2001-10-29  Christian Ruppert <arc@gmx.li>

	* uwm/handlers.c (HandleButtonPress): removed one XQueryPointer call,
	  consulting now event structure instead.
	* uwm/handlers.c (HandleButtonPress): added else for non-menu button
	  presses (optimisation)
	* uwm/handlers.c (HandleButtonPress): added window selection depending
	  on if subwindow member is set in button event (for button grab stuff)
	* uwm/init.c (InitUWM): added ButtonGrab to 'extend' window border
	  over whole window if ctrl-alt are pressed.

2001-06-18  Christian Ruppert <arc@gmx.li>

	* uwm/placement.c: moved removal of PLACEIT flag to the end of PlaceWin
	  to avoid some confusion in PlaceWin


2001-06-17  Christian Ruppert <arc@gmx.li>

	* uwm/properties.c, uwm/handlers.c, uwm/uwm.c, uwm/windows.c,
	  uwm/winmenu.c, uwm/workspaces.c: replaced SetWinMapState by
	  SetIsMapState or SetSeemsMapState and uc->wmstate == ... by
	  Is... or Seems... .
	* uwm/uwm.h: added macros IsNormal, IsIconic, IsWithdrawn, SeemsNormal,
	  SeemsIconic and SeemsWithdrawn as well as uwm's internal window
	  status UltimateContext.uwmstatus.
	* uwm/properties.c: split SetWinMapState in SetWinSeemsState and
	  SetWinIsState.
	* uwm/properties.h: corrected prototypes for SetWinXXXState.
	* uwm/placement.c: PlaceWin now removes the PLACEIT flag from placed
	  windows UltimateContext.
	* uwm/windows.c: enabled deiconifying of nameless windows

2001-05-28  Christian Ruppert <arc@gmx.li>

	* uwm/winmenu.c(StopWinMenu): winmenu is now unmapped AFTER selected
	  action is taken.
	* uwm/windows.c(ActivateWin): some cosmetics
	* uwm/windows.c(ActivateWin): windows not in NormalState are not
	  being activated.
	* uwm/windows.c(ActivateWin): moved if(uc = OldActive) directly around
	  graphics refreshing since we need to re-set the focus in some cases
	  although the window is already active.
	* uwm/windows.c: removed unused global variable RaisedWin

2001-05-28  Christian Ruppert <arc@gmx.li>

	* uwm/winmenu.c: changed global variables name from x1 to hexX and from
	  y1 to hexY.
	* uwm/winmenu.c: changed pointer warping to be done after pointer
	  grabbing in StartWinMenu.
	* uwm/winmenu.c: changed pointer ungrabbing to be done after warping
	  back the pointer.

2001-05-26  Christian Ruppert <arc@gmx.li>

	* uwm/menu.c: changed SelectItem syntax (added state argument)

2001-05-25  Christian Ruppert <arc@gmx.li>

	* uwm/uwm.h: added ButtonCount
	* uwm/winmenu.c: removed Buttoncount variable and replaced it by
	  ButtonCount macro
	* uwm/resize.c: replaced Buttoncount variable by ButtonCount macro
	* uwm/menu.c: replaced Buttoncount variable by ButtonCount macro
	* uwm/menu.h: changed prototypes
	* uwm/placement.c: removed Buttoncount variable handling
	* uwm/applications.c, uwm/menu.c, umw/uwmmenu.c, uwm/windows.c,
	  wum/winmenumenu.c: changed StartMenu syntax (removed mousestarted)

2001-05-09  Christian Ruppert <arc@gmx.li>

	* uwm/windows.c: a small bugfix that unmaps border wins of shaped
	  windows again in case win is mapped

2001-04-22  Christian Ruppert <arc@gmx.li>

	* uwm/special.c: included urm.h for SetResourceDB prototype
	* uwm/windows.c: small bugfix initializing originalvalues in
	  MoveResizeWin() and removed some unused variables.
	* uwm/handlers.c: removed some unused variables and did some code
	  formating
	* uwm/properties.c: included widgets.h for DrawTitle prototype and
	  special.h for SendWMProtocols prototype
	* uwm/init.c: removed unused variables and did some code reformating
	* uwm/urm.c: included ctype.h and X11/Xmu/SysUtil.h for some prototypes
	  and removed an unused variable
	* uwm/workspaces.c: included urm.h for SetResourceDB
	* uwm/windows.h: added missing prototype for DrawWinBorder
	* uwm/pix.c: removed some unused variables and corrected a bug related
	  to local variables and longjmp
	* uwm/wingroups.c: removed an unused variable
	* uwm/uwm.c: included properties.h for SetWinMapState prototype
	* uwm/rubber.h: included special.h for GrabServer prototype
	* uwm/workspaces.h: corrected a typo in BroadcastWorkSpacesInfo proto
	* uwm/rubber.c: included special.h for GrabServer prototype
	* uwm/windows.c: Deshaping of window frames now works correctly

2001-04-22  Christian Ruppert <arc@gmx.li>

	* uwm/properties.c: changed SetWinMapState to unmap withdrawn windows
	  in any case.

2001-04-22  Christian Ruppert <arc@gmx.li>

	* uwm/handlers.c: shaped window titles are now also refreshed.
	* uwm/handlers.c: shaped window's titles are always centered.
	* uwm/properties.c: changed window name refreshing to work with new
	  shaped windows
	* uwm/uwm.c: changed CatchWindows not to deultimize withdrawn windows.
	* uwm/uwm.h added uc->title.x and uc->title.y
	* uwm/widgets.c: changed title and border drawing functions to work
	  with new shapes support.
	* uwm/windows.c: changed DrawWinBorder, MoveResizeWin, EnborderWin and
	  ShapeFrame to work with new shapes support

2001-04-20  Christian Ruppert <arc@gmx.li>

	* uwm/windows.c: a small bugfix so that windowgravity is now only taken
	  into account in case we don't place the window ourselves.

2001-04-19  Christian Ruppert <arc@gmx.li>

	* uwm/windows.c: cleaned up UltimizeWin
	* uwm/wingroups.c: added support for OverrideRedirect group leaders
	  (although OverrideRedir. group leaders don't really make sense imho)
	* uwm/wingroups.h: some changes for compatibility with OverrideRedirect
	  group leaders.
        * uwm/workspaces.c: some corrections for new wingroups.h

2001-04-16  Christian Ruppert <arc@gmx.li>

	* uwm/windows.c: iconified windows in winmenu are now listed using their
	  iconnames instead of their titles.
	* uwm/workspaces.c: added function Win2WS
	* uwm/workspaces.h: added prototype for Win2WS
	* uwm/wingroups.c: all group members are now initially placed on the
	  same workspace.
	* uwm/windows.c: group members are now ultimized on workspace of group
	  leader
        * uwm/workspaces.c: added group support in StickyWin()
        * uwm/windows.c: moved XSaveContext to an earlier point in UltimizeWin
	  to fix crash problem with window groups

2001-04-15  Christian Ruppert <arc@gmx.li>

	* uwm/wingroups.c: added some functions
	* uwm/wingroups.h: added prototypes
	* uwm/uwm.c: added XContext UWMGroupContext
	* uwm/init.c: added init for UWMGroupContext
	* uwm/workspaces.c: window groups are now moved from one ws to another
	  as a whole.
	* uwm/nodes.c: added funcion NodeCount.
	* uwm/nodes.h: added prototype for NodeCount.
	* uwm/windows.c: added group removal if group leader is deleted

2001-04-14  Christian Ruppert <arc@gmx.li>

	* uwm/windows.c: fixed static gravity (must be TitleHight instead of
	  TitleHeight/2)
	* uwm/nodes.h: added some comments for documentation, fixed
	  #define False
	* uwm/uwm.h: added member group to UltimateContext
	* uwm/properties.c: added UpdateWinGroup-call to UpdateWMHints
	* uwm/windows.c: added init for uc->group in UltimizeWin
	* uwm/properties.c: changed SetWinMapState to disenborder window in case
	  it is withdrawn.
	* uwm/handlers.c: existing withdrawn windows are no longer deultimized.
	* uwm/wingroups.h: new file
	* uwm/wingroups.c: new file
	* uwm/Makefile.am: added files wingroups.h and wingroups.c

2001-04-13  Christian Ruppert <arc@gmx.li>

	* uwm/uwm.h: removed UltimateContext.parent
	* uwm/windows.c: replaced uc->parent by TheScreen.root, remoced argument
	  parent from UltimizeWin()
	* uwm/handlers.c: removed parent arguments from UltimizeWin calls.
	* uwm/uwm.c: removed parent arguments from UltimizeWin calls.
	* uwm/windows.c: moved gravity handling out of window reparenting
	  routines
	* uwm/windows.h: added prototype and defines for GravitizeWin
	* uwm/handlers.c: added gravity handling in HandleConfigureRequest

2001-02-27  Christian Ruppert <arc@gmx.li>

	* config/urdb: added resources for rxvt

2001-02-24  Christian Ruppert <arc@gmx.li>

	* uwm/menu.c(DrawMenu): split into MapMenu and DrawMenuFrame
	* uwm/handlers.c(InitHandlers): added init for MenuExpose event handler.
	* uwm/menu.c(MenuExpose): added event handler
	* uwm/menu.c(MenuCreate): menu window flags are now set depending on
	  x-servers capability to do saveunder
	* uwm/menu.c(MenuCreate): menu window flags are now set depending on
	  x-servers capability to do backingstore
	* uwm/menu.c(AppendMenuItem): item window flags are now set depending on
	  x-servers capability to do backingstore
	* uwm/menu.c(MenuCreate): added ExposureMask to menu event mask
	* uwm/menu.c(MenuCreate): added pointer to menu structure as
	  MenuFrameContext to menu frame windows.
	* uwm/menu.c(DestroyMenu): added MenuFrameContext deletion.
	* uwm/init.c(PrepareIcons): hex window flags are now set depending on
	  x-servers capability to do saveunder
	* uwm/init.c: added initialisation for TheScreen.DoesSaveUnders
	* uwm/init.c: added initialisation for TheScreen.DoesBackingStore
	* uwm/init.c: added initialisation for TheScreen.MenuFrameContext
	* uwm.h: added TheScreen.MenuFrameContext
	* uwm.h: added TheScreen.DoesSaveUnders
	* uwm.h: added TheScreen.DoesBackingStore

2001-02-23  Christian Ruppert <arc@gmx.li>

	* uwm/winmenu.c: added handler WinMenuUnmapNotify.
	* uwm/winmenu.c: split WinMenuButtonRelease into WinMenuButtonRelease
	  and StopWinMenu.
	* uwm/winmenu.h: added prototype for WinMenuUnmapNotify.
	* uwm/handlers.h: added prototype for HandleUnmapNotify.
	* uwm/handlers.c: added WinMenuUnmapNotify to handler table init.

2001-01-21  Christian Ruppert <arc@gmx.li>

	* uwm.c (main): added #ifdef ENABLE_NLS around init of intl so that
	  uwm will also compile on bsd if configure is run with --disable-nls

2001-01-21  Christian Ruppert <arc@gmx.li>

	* uwm.c(main): changed internationalisation so that we will now require
	  '.' as decimal seperator in all config files no matter what language
	  the user set in LANG.

2001-01-11  Christian Ruppert <arc@gmx.li>

	* windows.c: fixed a bug in MoveResizeWin(), artificial Configure
          events are now correctly sent when they need to be.

last change until 2000-12-05 Christian Ruppert <arc@gmx.li>

	* massive changes to window management kernel, too complex and much to
	  make sense being documented here... i'll continue this ChangeLog from
	  now on i promise.

2000-06-26  Christian Ruppert <arc@gmx.li>

	* config/urdb: added some resource definitions (taken from the gnome
	  resource manager, thx to the guys who set this up!)
	* doc/manual.tex: small changes

2000-06-26  Christian Ruppert <arc@gmx.li>

	* uwm/winmenu.c: renamed global selected to selectedHex
	* uwm/menu.c: renamed global selected to selectedMenuItem
	* configure.in: changed version
	* README: changed for snapshot
	*** FINISHED AND RELEASED SNAPSHOT ***

2000-06-23  Christian Ruppert <arc@gmx.li>

	* uwm/move.c(MoveButtons): changed routine to move window to
	  coordinates returned by StopRubber.

2000-06-01  Christian Ruppert <arc@gmx.li>

	* uwm/properties.c (Updatera): changed final default values for window
	  base size from actual size to be 1x1

2000-05-28  Christian Ruppert <arc@gmx.li>

	* uwm/uwm.c (CatchWindows): added reading WM_STATE_PROPERTY to overtake
	  a window's state from an eventually previous runnung wm.
	* uwm/handlers.c (HandleMap): changed properties data type from ulong
	  to CARD32 which should be safer for machines with different word
	  lengths
	* uwm/windows.c (IconifyWin/DeiconifyWin): removed changing WMHints
	  which is forbidden by icccm 2.0.
	* uwm/windows.c (SetWinMapState): corrected icon window element to 
	  be None.
	* uwm/windows.c (EnborderWin): now using UltimateContext.gravity.
	* uwm/properties.c (Updatera): screen area check to EnborderWin
	  for optimisation reasons.
	* uwm/windows.c (EnborderWin): moved in screen area check from Updatera
	  for optimisation reasons.
	* uwm/properties.c (Updatera): added init for UltimateContext.gravity.
	* uwm/uwm.h: added UltimateContext.gravity.
	* uwm/properties.c (Updatera): corrected replacement of invalid min
	  sizes by base sizes and vice versa as requested by icccm.
	  Attention: bw and bh now >0!

2000-05-10  Christian Ruppert <arc@gmx.li>

	* tested icccm selection stuff and uploaded it to cvs

2000-04-29  Christian Ruppert <arc@gmx.li>

	* uwm/uwm.h: added ATOM_PAIR, TARGETS, MULTIPLE and TIMESTAMP elements
	  to TheScreen.
	* uwm/init.c(InitUWM): added ATOM_PAIR, TARGETS, MULTIPLE and TIMESTAMP
	  initialisation.
	* moved selection request processing from handlers.c to selection.c
	* moved ChangeProperty and SendSelectionNotify from special.c to newly
	  created file selection.c
	* created selection.h
	* uwm/Makefile.am: added new files selection.h and selection.c.


2000-04-28  Christian Ruppert <arc@gmx.li>

	* config/urdb: made unreadable xt buttons readable
        * uwm/special.c: added ChangeProperty function.
	* uwm/special.h: added ChangeProperty prototype

2000-04-27  Christian Ruppert <arc@gmx.li>

	* uwm/uwm.h: added TheScreen.VERSION_ATOM and TheScreen.start_tstamp
	* uwm/init.c(InitUWM): added initialisatin for TheScreen.VERSION_ATOM
	  and TheScreen.start_tstamp
	* uwm/handlers.c(InitHandlers): added handler for SelectionRequest to
	  table
	* uwm/handlers.c: added HandleSelectionRequest function.
	* uwm/special.c: added SendSelectionNotify function.
	* uwm/special.h: added prototype for SendSelectionNotify function.

2000-04-26  Christian Ruppert <arc@gmx.li>

	* doc/manual.tex: added command line options section.
	* uwm/uwmmenu.c: RestartUDE procedure added
	* uwm/uwmmenu.c(RestartProcX): changed them to use unique
	  RestartUDE procedure
	* uwm/uwm.c(PromptCommandLine): added --TryHard --Hostile and
	  --StayAlive command line options
	* uwm/init.h: added InitStruct.icccmFlags
	* uwm/handlers.c: added HandleSelectionClear handler routine
	* uwm/handlers.c(InitHandlers): added HandleSelectionClear entry to
	  handler tables
	* uwm/init.c(InitUWM): WM_Sx selection support added as requested
	  by icccm
	* uwm/uwm.h: added "Atom WM_sx" element to TheScreen structure
	* uwm/init.c (InitUWM): removed unnecessary if(TheScreen.Home)-code.
	* uwm/special.c (MyOpen): removed unnecessary if(TheScreen.Home)-code.
	* uwm/uwm.c (main): removed unnecessary if(TheScreen.Home)-code.
	* uwm/uwm.c (CleanUp): removed unnecessary if(TheScreen.Home)-code.

2000-04-23  Christian Ruppert <arc@gmx.li>

	* uwm/menu.c (StartMenu): added coordinate checking so that menus are
	  always completely visible.
	* uwm/uwmmenu.c (WMMenu): removed coordinate checking.
	* uwm/winmenumenu.c (WinMenuMenu): removed coordinate checking.
	* uwm/windows.c (DeiconifyMenu): removed coordinate checking.
	* uwm/applications.c (ApplicationMenu): removed coordinate checking.
	
2000-04-21  Christian Ruppert <arc@gmx.li>

	* uwm/move.c (StartDragging): added PointerMotionHintMask flag to
	  GrabPointerMask to avoid window sneeking behind pointer while dragging
	* uwm/move.c (MoveMotion): assimilated mouse coordinate querying for
	  PointerMotionHintMask being set.

2000-04-20  Christian Ruppert <arc@gmx.li>

	* lib/ude-desktop.c: changed atom name from UDE_UDEContext to
	  _UDE_UDEContext
	* lib/ude-settings.c: changed atom names from UDE_WORKSPACES_PROPERTY to
	  _UDE_WORKSPACES_PROPERTY, UDE_SETTINGS_PROPERTY to
	  _UDE_SETTINGS_PROPERTY and UDE_WINDOW_PROPERTY to _UDE_WINDOW_PROPERTY
	* uwm/init.c: changed atom names from UDE_WORKSPACES_PROPERTY to
	  _UDE_WORKSPACES_PROPERTY, UDE_SETTINGS_PROPERTY to
	  _UDE_SETTINGS_PROPERTY and UDE_WINDOW_PROPERTY to _UDE_WINDOW_PROPERTY

2000-04-18  Christian Ruppert <arc@gmx.li>

	* uwm/pix.c: added module for background loading (jpeg/xpm).
	* uwm/init.c: bugfix: added XFreePixmaps for shape pixmaps allocated
	  by XpmFileToPixmap (Hex buttons)
	* uwm/init.c: changed XpmFileToPixmap to LoadPic for background pic
	  loading (which will also load jpeg backgrounds if libjpeg is
	  installed)

2000-04-17  Christian Ruppert <arc@gmx.li>

	* configure.in: added check for libjpeg
	* configure.in: debugged checks for libICE and libSM
	* configure.in: added AC_C_BIGENDIAN

2000-03-18  Christian Ruppert <arc@gmx.li>

        * config/appmenu: added stephan helmas introduction.
	* config/uwmrc: changed it to stephan helmas uwmrc.hook.
	* config/uwmrc-ws.hook: stephan helmas file added.
	* config/urdb: replaced with stephans debian file.
	* config/ws2: file removed.
	* config/Makefile.am: changed distributed files.
        *** FINISHED AND BUILT RELEASE 0.2.7b-BETA ***

2000-03-17  Christian Ruppert <arc@gmx.li>

        * configure.in: changed version to 0.2.7b-BETA
        * uwm/init.c: added new comment character '%' for uwmrc and appmenu
	  files.

2000-03-08  Christian Ruppert <arc@gmx.li>

        * configure.in: added checking for nanosleep function.
	* uwm/special.c (GrapPointer): optimized pointer grab waiting by
	  inserting wait/nanowait calls instead of blocking machines and network
	  connections by sending requests without delay.

2000-03-07  Christian Ruppert <arc@gmx.li>

        * config/Makefile.am: added urdb file to distribution files.

2000-03-05  Christian Ruppert <arc@gmx.li>

        * configure.in: commented out library building and installing stuff.
        * lib/Makefile.am: disabled library building.
        * configure.in: changed version string.
        * README: rewritten for 0.2.7
        *** FINISHED AND BUILT RELEASE 0.2.7-BETA ***

2000-03-04  Christian Ruppert <arc@gmx.li>

        * uwm/init.c (ReadConfigFile): added initioalisation for HighlightFont,
          TextFont and InactiveFont.

2000-03-03  Christian Ruppert <arc@gmx.li>

        * uwm/handlers.c(HandleMapNotify): changed if-condition to display/hide
          title window so that titles are no longer displayed incorrectly if a
          window is activated from a different workspace.


2000-02-21  Stephan Helma <s.p.helma@gmx.net>

        * uwm/init.h: changed InitStruct to contain WarpPointerToNewWin V and H
          instead of simple WarpPointerToNewWin.
        * uwm/init.c: changed initialisation and config file reading for new
          WarpPointerToNewWinV/H-option
        * uwm/windows.c: changed Pointer Warping for new PointerToNewWin.


2000-02-10  Christian Ruppert <arc@gmx.li>

        * uwm/resize.c: changed global buttoncount to Buttoncount
        * uwm/menu.c: changed global MenuButtoncount to Buttoncount
        * uwm/placement.c: changed manual placement algorithm to react on button
          releases instead of button presses and modify global Buttoncount
          correspondingly if necessary.

2000-02-10  Christian Ruppert <arc@gmx.li>

        * uwm/placement.c (ScanScreen): changed window conditions (IsViewable
          and InputOutput) to keep out InputOnly and unviewable windows.

2000-02-05  Christian Ruppert <arc@ude.org>

        * uwm/uwm.h: added elements cppincpaths and urdbcppopts to UDEScreen.
        * uwm/init.c (InitUWM): added initialisation for TheScreen.cppincpaths.
        * uwm/init.c: changed all MyOpen calls to use TheScreen.cppincpaths.
        * uwm/urm.c: added initurdbcppopts function and helper functions.
        * uwm/urm.h: added prototype for initurdbcppopts.
        * configure.in: added Xmu library which is needed for initurdbcppopts.
        * uwm/init.c: added initurdbcppopts call to initialize TheScreen element
        * uwm/urm.c: added urdbcppopts to MyOpen cpp options

2000-01-26  Christian Ruppert <arc@ude.org>

        * uwm/urm.c: rewrote internal resource representation and resource file
          reading and interpretation. we should support full functionality now
          including merging several data bases together properly and support
          for multiline resources.
        * uwm/urm.h: changed internal resource representation.

2000-01-20  Christian Ruppert <arc@ude.org>

        * configure.in(bugfix): added missing test in if-expression
        * configure.in(bugfix): changed -o2 to -O2 in if-expression
        * configure.in: changed -o2 to -O2 in CFLAGS initialisation.
        * removed debugging stuff from CFLAGS initialisation.
        * uwm/special.c (bugfix): removed lines reassigning stdin and stdout
          since they are not needed at all (how stupid i was to put them in...)

2000-01-20  Christian Ruppert <arc@ude.org>

        * uwm/urm.c: added another comment cahracter: %
        * config/urdb added
        * config/uwmrc: added entry for urdb

2000-01-18  Christian Ruppert <arc@ude.org>

        * uwm/move.c: changed ScanScreen()-call to keep the window's own coords
          out of the list...

2000-01-13  Christian Ruppert <arc@ude.org>

        * uwm/init.h: added InitS.HexPath
        * uwm/init.c (InitDefaults): added initialisation for InitS.HexPath
        * uwm/init.c (ReadConfigFile): added initialisation for InitS.HexPath
          and new uwmrc option HexPath
        * uwm/init.c (PrepareIcons): uwm now first searches for hexes in HexPath
          if given.
        * uwm/init.c (InitUWM): placed PrepareIcons()-call after InitDefaults.
        

2000-01-08  Christian Ruppert <arc@ude.org>

        * uwm/init.c / uwm/uwm.c: moved signal(..,ShellQuit)-call to the
          right place in init.c
        * uwm/special.c / uwm/special.h: added functions MyOpen and CheckCPP
          which will automatically check for config files in the uwm search
          path and pass them through the C preprocessor if one is found.
        * acconfig.h: added #undef CPP_CALL for default cpp command line from
          configure
        * configure.in: added line to define CPP_CALL and removed some comments
          in front of some libtool stuff still commented out.
        * uwm/init.c: changed fopens with path search to MyOpens.
        * uwm/urm.c: changed fopen with pach search to MyOpen.
        * uwm/uwm.h: added TheScreen.cppcall.
        * uwm/special.c (MySystem): changed execlp to execl.

1999-12-23  Ricardo Lipas Augsuto <lipas@email.com>

	* added ude-menu.c and ude-menu.h for menu creation
	* added menutst.c and Makefile in the tests directory
	* lib/Makefile.am: added lines so ude-menu.c gets compiled

1999-12-12  Christian Ruppert <arc@ude.org>

        * init.c/init.h: added initialisation for and element
          InitStruce.SnapDistance
        * placement.c, placement.h: added procedure SnapWin
        * placement.c: added snapping to ManualPlace()
        * move.c: added window snapping routines to MoveMotion, StartDragging
          and MoveButtons

1999-11-22  Christian Ruppert <arc@ude.org>

        * workspaces.c(SetWSBackground): changed XGrabServer and XUngrabServer
          to our private wraparounds GrabServer and UngrabServer;
        * rubber.c: the server is now grabbed while a rubberband is on the
          screen so that noone will disturb our drawing.

1999-11-15  Christian Ruppert <arc@ude.org>

        * added files uwm/urm.c and uwm/urm.h for resource management.
        * uwm/all files: added TheScreen.desktop.BevelWidth and moved
          TheScreen.desktop.FrameBevelWidth to TheScreen.FrameBevelWidth.
        * uwm/init.c: added initialisation for TheScreen.desktop.BevelWidth.
        * uwm/init.c: added initialisation for ude resource management.
        * uwm/workspaces.c: added support for ude resource management.

1999-11-08  Christian Ruppert <arc@ude.org>

        * acconfig.h: #undefed VERSION and PACKAGE which seems to be necessary
        on some systems.

1999-10-27  Christian Ruppert <arc@ude.org>

        * lib/ude-button.c(handler routines): added support for inactive
        buttons.
        * lib/ude-button.c(_UDE_refresh_button): added support for drawing
        inactive buttons.
        * lib/ude-desktop.h: added UDEDesktop.internal.raster_pixmap.
        * lib/ude-desktop.c: added init for UDEDesktop.internal.raster_pixmap.
        * added lib/ude-raster.xbm

1999-10-21  Christian Ruppert <arc@ude.org>

        * lib/ude-button.c and lib/ude-button.h added which contain almost
          complete button support.
        * lib/Makefile.am: added ude-button.h and ude-button.c
        * lib/todo: added this file as a todo list to coordinate work. feel
          free to add things to that list or implement things from it. 

1999-10-16  Christian Ruppert <arc@ude.org>

        * lib/ude-hex.c and lib/ude-hex.h added which handle with hexes.
        * lib/ude.h: added #include "ude-hex.h"
        * lib/Makefile.am: added ude-hex.h and ude-hex.c

1999-10-12  Christian Ruppert <arc@ude.org>

        * ude-desktop.h: added characteristics of shapes extension to desktop
          structure.
        * ude-desktop.c (ude_initialize): added init for shapes extension.
        * configure.in: corrected check for shapeextension (check for
          XShapeQueryExtension instead of main in libXext since libXext
          theoretically can exist and contain a main function without supporting
          shapes in case there are only other extensions supported.

1999-10-12  Christian Ruppert <arc@ude.org>

        * lib/ude-vector.c (ude_vector_organize_last): positioning
          algorithm rewritten and should now converge in all cases while not
          being much slower in case the vector isn't bigger than about 10
          elements or so. can be changed back to a (then working) interval
          search if needed.

1999-10-06  Christian Ruppert <arc@ude.org>

        * tests/commstest: added directory with library/communication mechanism
          testing program and Makefile (don't forget to insert your libude
          somewhere into your library path in case you want to try.)
        * lib/ude-desktop.c (ude_initialize): selected input for root window of
          desktop to get PropertyNotify Events.
        * lib/ude-box.c (ude_handle_event_loop): now updating desktop structures
          automatically by evaluating PropertyNotify events.
        * uwm/workspaces.c (BroadcastWorkSpacesInfo): added color querying for
          to update rgb values of broadcasted colors.
        * lib/ude-settigs.h added
        * lib/desktop.c: completed initialisation routine.
        * lib/settings.c: renamed functions (ude_ added) and removed a bug.
        * lib/desktop.h: removed fonts for menus and buttons (standard font
          should be used instead.)
        * lib/settings.c: removed support for menu and button fonts  (standard
          font should be used instead.)
        * uwm/init.c: added initialisation for all fonts.

1999-10-05  Christian Ruppert <arc@ude.org>

        * lib/ude-box.h: fixed typo UDEbox to UDEBox.
        * lib/ude-desktop.h: added prototype for ude_initialize.
        * lib/ude-desktop.h: added color UDE_HighlightedBgr.
        * uwm/init.c: initialisation for all (new) colors added.
        * uwm/init.c: removed some ugly linebreaks.

1999-09-27  Christian Ruppert <arc@ude.org>

        * autogen.sh: commented out library compilation line.
        * configure.in: commented out library compilation line.

1999-09-27  Christian Ruppert <arc@ude.org>

        * lib/desktop.h: removed file since no symlinks allowed in cvs. please
        refer to lib/ude-desktop.h from now on.
        * uwm/uwm.h: changed #include "desktop.h" to #include "ude-desktop.h"
        * uwm/special.c: changed #include "desktop.h" to
        #include "ude-desktop.h"
        * uwm/init.c #include "desktop.h" to #include "ude-desktop.h"

1999-09-27  Christian Ruppert <arc@ude.org>

        * lib/ude-types.h: debugged definitions of FALSE and TRUE.
        * lib/ude-desktop.h: updated and added everything important.
        * lib/desktop.h: symlinked to ude-desktop.h to keep all structures in
        in the project synchroneous. the old desktop.h file can be found under
        the name desktop.h.old.
        * lib/ude-settings.c: made it compile
        * lib/Makefile.am: added ude-settings.c to the sources list.

1999-09-21  Christian Ruppert <arc@ude.org>

        * lib/desktop.h (struct): added WorkSpacesData and font structures.
        (DEFINES): added UDE_STICKYWIN definition. 

1999-09-17  Christian Ruppert <arc@ude.org>

        * lib/desktop.h (struct): added some broadcasted fonts and colors (still
        no initialisation for it, will be added next week or so).

1999-09-13  Christian Ruppert <arc@ude.org>

        * uwm/init.c (InitDefaults): added an xterm to the applications menu in
        case uwmrc and appmenu don't exist and set 'appmenu' to be the default
        name for menu files if no uwmrc exists.
        * uwm/init.c (ReadConfigFile): added XpmReturnAllocPixels flag to
        XpmAttributes so that uwm won't segfault any longer trying to free not
        returned colors.

1999-09-06  Christian Ruppert  <arc@ude.org>

        * README: updated for release 0.2.6
        * INSTALL.UDE: some additional info about installation of ude/uwm.
        * po/de.po: german language support added
        * Makefile.am: german language support added
        * configure.in: prepared for release 0.2.6
        * AUTHORS: updated for release 0.2.6
        * NEWS: updated for release 0.2.6

1999-09-01  Christian Ruppert  <arc@ude.org>

        * uwm/init.h (struct): added InitS.WarpPointerToNewWin.
        * uwm/init.c (InitDefaults): added initialisation for
        InitS.WarpPointerToNewWin.
        * uwm/init.c (ReadConfigFile):  added initialisation for
        InitS.WarpPointerToNewWin.
        * uwm/windows.c (MapWin): added pointer warping option.
        * config/uwmrc: added entry for pointer warping option
        (WarpPointerToNewWin)
        * uwm/init.c (InitUWM): initialisation for MOTIF_WM_HINTS
        * uwm/uwm.c (global): added Atom MOTIF_WM_HINTS
        * uwm/windows.h: removed DrawWinBorder predefinition
        * uwm/handlers.c (HandlePropertyChange): added Handling for changing
        MwmHints.
        * uwm/uwm.h (struct): added UltimateContext.MotifWMHints.
        * uwm/MwmUtil.h: added file for MOTIF hints predefinitions.
        * uwm/uwm.h: added argument StopScript to CleanUp prototype decl.
        * uwm/uwm.c (CleanUp): added choice for StopScript to be execd.
        * uwm/uwmmenu.c (RestartProc1-3): assimilated to CleanUp changes.

1999-08-31  Christian Ruppert  <arc@ude.org>

	* uwm/uwm.h (struct): added Window TheScreen.inputwin.
	* uwm/placement.c (ManualPlacement): placement by hitting return
	enabled.
	* uwm/init.c (InitUWM): added initialisation for TheScreen.inputwin.

1999-08-25  Christian Ruppert  <arc@ude.org>

    Modified Files:
       uwm/init.c uwm/uwm.h uwm/init.h uwm/widgets.c uwm/workspaces.c
       uwm/properties.c uwm/handlers.c uwm/windows.c uwm/winmenu.c
       uwm/winmenumenu.c uwm/menu.c uwm/special.c uwm/special.h
       uwm/uwmmenu.c lib/desktop.h uwm/workspaces.h

    massive changes: moved several entries from TheScreen to TheScreen.desktop.
    => uwm now broadcasts information for udelib programs (e.g. color info etc.)
    more changes will follow on this (minor ones!)

1999-08-20  Jaime Alberto Silva Colorado  <mono@andromeda.utp.edu.co>

	* uwm/Makefile.am (INCLUDES): added definition of the UDE_DIR macro
	it is replaced for the contents of pkgdatadir.

	* uwm/init.c (InitUWM): TheScreen.udedir now is the macro UDE_DIR
	instead of the current directory if the UDEdir environment variable
	is not defined.

1999-08-17  Christian A. Ruppert  <arc@ude.org>

        * uwm/widgets.c (DrawFrameBevel): added support for drawing bevels
        around shape window frames.

        * uwm/windows.c (ShapeFrame): cleaned up the code a bit.

1999-08-08  Jaime Alberto Silva Colorado  <mono@andromeda.utp.edu.co>

	* uwm/uwmmenu.c (CreateUWMMenu):changed calls to Texts for gettext
 	marked strings. 

	* uwm/init.c (SetLanguage): The function becomes obsolete so it 
	was removed.
	(ReadConfigFile): the variable 'a' is now an enum whit the same
	names of the keywords so the add and remove of keywords is easy.
	(InitUWM): Romoved Texts initialization, this member does not
	exists anymore.

	* uwm/init.c (CreateAppsMenu): changed calls to Texts for gettext
 	marked strings.

	* uwm/winmenumenu.c (WinMenuMenu): changed calls to Texts for gettext
 	marked strings.

	* uwm/windows.c (DeiconifyMenu): changed calls to Texts for gettext
 	marked strings.

1999-07-30  Jaime Alberto Silva Colorado  <mono@andromeda.utp.edu.co>

	* src/workspaces.c (SetWSBackground): When the root window's pixmap
	is changed the server is grabbed to avoid memory leaks and some
	properties are changed to let the applications know that the pixmap
	has been changed. see the FIXME note!

	* src/uwm.h (struct): added new SetBackground entry, this array
	will determine if the background color must be changed.

	* src/init.c (AllocWSS): added support for new SetBackground 
	structure member.
	(AllocWSS): changed multiple "for" statements with the same limits
	for one "for" only.
	(InitDefaults): TheScreen.SetBackground is set to 0 (FALSE) so the
	default bahaviour is to not touch the background when the WS is 
	changed.
	(ReadConfigFile): if the ScreenColor key word is founded
	then TheScreen.SetBackground[TheScreen.ActiveWorkSpace] is set to 1
	in order to let SetWSBackground know that the background color must
 	be changed.

	* src/workspaces.c (SetWSBackground): The background color is
	changed only if 'TheScreen.SetBackground [TheScreen.ActiveWorkSpace]'
	is not zero (0).