File: ChangeLog

package info (click to toggle)
xfm 1.5.4-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,336 kB
  • ctags: 1,815
  • sloc: ansic: 15,711; sh: 1,002; makefile: 177
file content (964 lines) | stat: -rw-r--r-- 37,545 bytes parent folder | download | duplicates (3)
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
2008-01-18  Bernhard R. Link <brlink@debian.org>
	* add a default mailcap entry for application/msword calling
	openoffice, overwriting system's mailcap (but not ~/.mailcap),
	to avoid openoffice confused by excel files detected as word files.
	* if a filename is given to a program to start in form of a symlink,
	and the mailcap entry specifies no extension, use the one of the
	filename (instead of none as before)
	* detect '%s' in mailcap command templates reduce the characters
	causing it always to be called via symlink to \ and '.
	* fix typo leading to double-free and segfaults in rename

2007-12-29  Bernhard R. Link <brlink@debian.org>
	* add support for Btn4 and Btn5 (mouse wheel)
	(Fm.h, Xfm.m4, FmMain.c FmViewportScroll.c IconFileList.c TextFileList.c)
	* don't abort when switching fastly back to iconfilelist

2007-08-12  Bernhard R. Link <brlink@debian.org>
	* duplicate confirm dialog to one per window,
	setting TransientFor to the specific window.
	(Fm.h, FmAwActions.c, FmAwCb.c, FmConfirm.c, FmDelete.c,
	 FmFwActions.c, FmFwCb.c, FmMain.c, FmPopup.c)
	* dito with info dialog (Fm.h, FmInfo.h, FmMain.c)
	* override simpleMenu behaviour to first popdown and only
	then trigger the action, avoiding icewm to put the menu
	above the confirm Dialogs.

2007-08-11  Bernhard R. Link <brlink@debian.org>
	* duplicate about, chmod, mkdir, createFile, goto,
	rename, move, copy, link, select and filter dialogs
	to one per window (though not created at startup, but
	on demand), setting TransientFor to the specific window
	to work around IceWM not bringem them to the foreground.
	(Fm.h, FmAwActions.c, FmAwCb.c, FmAwPopup.c, FmChmod.c,
	 FmFw.c, FmFwCb.c, FmMain.c, FmPopup.c, FmUtils.c)

2007-08-10  Bernhard R. Link <brlink@debian.org>
	* remove some more static buffers
	* remove in-place filename expansion (FmHistory.*, FmOps.c, FmPopup.c)

2007-08-09  Bernhard R. Link <brlink@debian.org>
	* add xstrdup (FmOps.c, Fm.h)
	* shorten filenames to fit into the boxes
	in Icon view (FileList.c, FileListP.h,
	FmDirs.c, IconFileList.c)
	* remove some usages of MAXPATHLEN and static
	buffer. (Many still left)

2006-11-30  Bernhard R. Link <brlink@debian.org>
	* add icon for application/x-iso9660 files
	* symlink vnd.sun.xml.* to vnd.oasis. icons

2006-09-27  Bernhard R. Link <brlink@debian.org>
	* fix c&p error in buffer length calculation in mime.c
	* silence automake warning against += without previous =

2006-04-22  Bernhard R. Link <brlink@debian.org>
	* default application file is now called Apps.xfm
	(FmMain.c, Xfm.m4)
	* some icon movement, choose some to install
	* append .xfm to newly created application groups.
	(Fm.h, FmAwPopup.c, FmOps.c)
	* not-absolute application group files are searched for
	in applicationDataDir and the new systemwideApplicationDataDir.
	(Fm.h, FmAw.c, FmMain.c, Xfm.m4)
	* add default Apps.xfm and Graphics.xfm
	* do not set wrong icon for directory
	(FmAwActions.c)

2006-04-20  Bernhard R. Link <brlink@debian.org>
	* rename all default config files, so that they start with xfm_
	* processing all manpages by sed so that:
	* xfmmailcap and the manpages now include the sysconfdir xfm
	is actually compiled with.
	(*.?, xfmtype.c, global.h, FmMain.c)
	* avoid "missing sentinel" warnings of newer gcc
	( FmBitmaps.c, FmChmod.c, FmFw.c, FmHistory.c, FmLog.c, FmSelection.c,
	  Textfield.c, FmMain.c)
	* files containing a '\0' are binary and not ascii now
	(magic.c)
	* detect types described mime.types when compressed and when
	not the shortest possible suffix
	(magic.c, suffix.c)

2006-04-19  Bernhard R. Link <brlink@debian.org>
	* fix copy and paste errors in FmPopup.c introduced in 1.8
	* reenable ENHANCE_LOG, but make it only log the output
	of external programs to avoid deathlocks.
	(FmLog.c, execute.h)
	* do not do reverse deletion or ask weather to do it if a directory is
	empty. (FmDelete.c)

2006-04-18  Bernhard R. Link <brlink@debian.org>
	* repair nametemplate handling in mime_start.c
	* move some generic stuff from mime_start.c to mime.c,
	* repair xfmmailcap to do something related to xfm.
	* add a xfmmailcap.1 man page
	* add a xfm_mailcap.5 man page
	* update xfmtype.1 and fix xfmtype.c to do what the manpage tells.
	* update xfm.1
	* remove configFile resource not used anywhere anymore

2006-04-17  Bernhard R. Link <brlink@debian.org>
	* add compatibility code when input application window
	description still contain the obsolete filename field.
	( Fm.h, FmAw.c, FmAwActions.c, FmOps.c)
	* add GETFSENT pdeuso-entry for xfmdev to read
	  available mount points via getfsent.
	  Only decrement mount count when previousy mounted.
	( Fm.h, FmDirs.c, FmFw.c)
	* if XFM-DEVICES gets LOADed, a non-modifiable menu
	with all the devices known is created.
	( Am.h, Fm.h, FmAw.c, FmAwActions.c, FmAwPopup.c,
	  FmFw.c, FmMain.c)
	* move all included and yet installed images to images/
	( FmBitmaps.c)
	* tell make dist what to include
	* implement icon determination code for XFM-DEVICES
	( FmFw.c)
	* move manpages to doc/ and add xfm.5 and xfmdev.5.

2006-04-16  Bernhard R. Link <brlink@debian.org>
	* show disabled cursor for AW drags if dropping is not possible
	( Xfm.m4, FmAwActions.c, 
	* reenable draging files on AW items, no longer taking the
	items filename into account.
	( Fm.h, FmAwActions.c, FmFw.c, FmFwActions.c, execute.c)
	* depreceate filename field of AW
	( Am.h, Fm.h, FmAw.c, FmAwActions.c, FmAwCb.c, FmAwPopup.c,
	  FmOps.c, mime_start.c)

2006-04-14  Bernhard R. Link <brlink@debian.org>
	* various draging improvements:
	  - show by cursor if things cannot be dropped currently
	  - disable kwm workaround and catch leave and enter events again
	  - move cursor handling into new drag_set_dropable
	  (Xfm.m4, Am.h, FileList.c, Fm.h, FmAw.c, FmAwActions.c,
	   FmFwActions.c)

2006-04-06  Bernhard R. Link <brlink@debian.org>
	* fix bug introduces in dispatchDirFile
	(FileList.c)

2006-04-05  Bernhard R. Link <brlink@debian.org>
	* show the type the action is for
	 (mime_start.c, mime.c, mime.h)
	* error out when no action found for a file, do not
	  print empty actions.
	(FmFwActions.c, mime_start.c)

2006-04-04  Bernhard R. Link <brlink@debian.org>
	* remove fileExecFile action and change dispatchDirExeFile to 
	dispatchDirFile, replace dispatchDirExeFilePopup by grabMouseForPopup.
	(Xfm.m4, FileList.c, Fm.h, FileList.h, FileList.c, FmFwActions.c, 
	 IconFileList.c, TextFileList.c)

	* new resources editor, viewer, xterminal, xtermalon and shell
	of type XtRCommandArgs. (not given to shell like the older ones)
	remove defaultEditor, defaultViewer, defaultXterm, bourneShells,
	shellCommand.
	(Fm.h, FmFw.c, FmFwActions.c, FmMain.c, xfm.man, execute.c,
	 mime_start.c, execute.h)

	* new resource echoMimeSearch to display what possibilities
	are checked when starting a file. (Fm.h, FmMain.c, mime_start.c)

2006-04-03  Bernhard R. Link <brlink@debian.org>
	* reenable appDefaults version check

2006-03-20  Bernhard R. Link <brlink@debian.org>
	* move resources.app_file to aw.app_file and
	make it a pointer instead of a static array,
	also make {read,write}ApplicationData to only
	use that variable.
	(Am.h, Fm.h, FmAw.c, FmAwActions.c, FmAwCb.c,
	 FmAwPopup.c, FmMain.c)
	* remove static message array from FmChmod.c
	* initialize dialog flag and end of line in varPopup
	and close a memory hole in createPopupQuestions (FmUtils.c)

2006-03-19  Bernhard R. Link <brlink@debian.org>
	* create one set of popup menus per FileWindow,
	  removing the need for the popup_fw variable.
	  (Fm.h, FmChmod.c, FmDelete.c, FmFw.c, FmFwActions.c,
	   FmFwCb.c, FmInfo.c, FmPopup.c)
	* move stuff from CFLAGS to xfmconfig.h
	* fix strange value given to XtCallActionProc (src/FileList.c)
	* increment FmVersion to denote the AppDefault format changes
	  (FmVersion.h)
	* quite compiler warnings by making more stuff const char,
	unsigned, __attribute__ed, renamed to not shadow, or casted.
	(Am.h, Fm.h, FmAw.c, FmChmod.c, FmConfirm.c, FmDirs.c,
	 FmErrors.c, FmFw.c, FmHistory.c, FmHistory.h, FmInfo.c,
	 FmMain.c, FmOps.c, FmPopup.c, FmSelection.c, FmSelection.h,
	 FmStringDefs.h, FmUtils.c, IconFileList.c, TextField.c,
	 TextFieldP.h, TextFileList.c, execute.c, magic.c, magic.h, mime.c)
	* make varPopup always alloc its return value, as some code
	is free'ing it now.

2006-03-18  Bernhard R. Link <brlink@debian.org>
	* make un*zip static and avoid uninitialized warnings (magic.c)
	* remove the non-ENHANCE_TXT_FIELD case 
	  (FmAwPopup.c, FmAwCb.c, FmHistory.c, FmMain.c, FmUtils.c
	* seperate static popup question data from answers, less
	  global variables)
	  (Fm.h, FmAwPopup.c, FmAwCb.c, FmInfo.c, FmPopup.c, FmUtils.c)
	* more typesafe Callbacks 
	  (Am.h, Fm.h, FmAw.c, FmChmod.c, FmConfirm.c, FmErrors.c, FmFw.c,
	   FmFwCb.c, FmInfo.c, FmPopup.c, FmUtils.c)

2006-02-07  Bernhard R. Link <brlink@debian.org>
	* add support to detect gzipped and bzipped files
	and look into them for their file type.
	(magic.c)
	* flip gzip modifier image
	(IconFileList.c)

2006-02-06  Bernhard R. Link <brlink@debian.org>
	* draw file_modifiers (symlink, gzipped, bzipped)
	  over icons.

2006-02-05  Bernhard R. Link <brlink@debian.org>
	* IconFileWindow size fixup:
	   - limit maximal extends to 32000 to cope with broken
	     X servers
	   - if vertical extend is too large, increase horizontal
	     instead.
	   - always show horizontal scroll bars when needed
	   - add a new maxLabelWidth resource to limit filename 
	     writing over that limit.

2006-01-15  Bernhard R. Link <brlink@debian.org>
	* major clean up:
	  - use prototypes regardless of NeedPrototypes
	  - mark unused variables
	  - some signed/unsigned fixes
	(almost all files)

2006-01-01  Bernhard R. Link <brlink@debian.org>
	* ignore magic rules needing more than 1024
	bytes of a file. (customizeable with
	the new maxMagicRead resource).
	(Fm.h, FmFw.c, FmMain.c, magic.c, magic.h, xfmtype.c)

2005-12-30  Bernhard R. Link <brlink@debian.org>
	* add loadFileIcon and do not search in the
	icon dir with loadIcon. (therfore adding a new
	icon_dir resource)
	(FmMain.c, Fm.hm, FmBitmaps.c, FmOps.c)
	* icons to show are determined by mime-type
	and programs to start are selected by mailcap database.
	(FileList.c, Fm.h, FmAwActions.c, FmBitmaps.c,
	 FmDelete.c, FmDirs.c, FmFw.c, FmFwActions.c,
	 FmInfo.c, FmMain.c, FmOps.c, IconFileList.c,
	 TextFileList.c, magic.c, magic.h, mime.c,
	 mime.h, xfmmailcap.c, xfmtype.c, execute.c,
	 execute.h)

2005-12-10  Bernhard R. Link <brlink@debian.org>
	* add arbitrary environment variable parsing within
	ConfigFile-name expansion. Move expansion into a
	resource conversion routine
	(Fm.h, FmMain.c, FmOps.c)
	* replace update of obsolete resource conversion
	via XtAppAddConverter for SortType DisplayType with
	XtSetTypeConverter.
	(FmMain.c)

2005-12-09  Bernhard R. Link <brlink@debian.org>
	* add application/x-xfm icon
	* improve magicfile: do not use buggy gnome data,
	do not override directory data, fix postscript mime type

2005-12-08  Bernhard R. Link <brlink@debian.org>
	* move application file loading code into
	single instance within FmAw.c
	(Am.h, FmAw.c, FmAwActions.c, FmAwCb.c, FmFwActions.c)
	* set default to IconView and not showing inodes in TextView

2005-11-24  Bernhard R. Link <brlink@debian.org>
	* remove support for "builtin" magic rule
	  (as those have changed their values anyway)
	* magic recognition can now also returns the
	  corresponding mime type (which is looked
	  for at parse time).
	(magic.c, magic.h, Fm.h, xfmtype.c, FmDirs.c, FmFw.c)
	* add prototypes, correct prototypes, make local
	functions static, fix parameter types.
	(Am.h, Fm.h, FmAw.c, FmAwCb.c, FmAwPopup.c, FmBitmaps.c,
	 FmChmod.c, FmConfirm.c, FmErrors.c, FmFw.c, FmFwActions.c,
	 FmFwCb.c, FmMain.c, FmPopup.c, FocusForm.c, TextField.c,
	 magic.h)
	* TftDrawShadows gets relief field it has in Xaw3d
	(TextField.c)

2005-11-22  Bernhard R. Link <brlink@debian.org>
	* When parsing magic files, subtype expressions
	replace the message instead of appending it.
	(Makes the code a bit simpler and needed for
	 coming move to mime-types)
	Also move declarations into magic.h and the
	prior content of magic.h to magic.c.
	(Fm.h,magic.h,magic.c,FmDirs.c,FmFw.c,FmInfo.c,
	 xfmtype.c)

2005-11-20  Bernhard R. Link <brlink@debian.org>
	* calculate fallback resources compilied into the binary
	from the app-defaults file. 
	(FmMain.c)

2005-11-17  Bernhard R. Link <brlink@debian.org>
	* create app-defaults file and install it with make install
	* place some default translations into builtin classes
	  (FmMain.c, TextFileList.c, IconFileList.c, FmFw.c)
	* place default into binary, too.
	  (FmMain.c)
	* reenable viewport-hack
	  (FmFw.c)
	* disable ENHANCE_LOG until I have time to implement
	  it properly (can block when it writes itself too much
	  into stderr)
	* Fix wrong index when to menu title is there
	  (FmHistory.c)

2005-11-12  Bernhard R. Link <brlink@debian.org>
	* Add an "Any" to the modifier map of translations
	  causing popup menus to show up. This avoids them
	  opening non-functional when NumLock is activated.

2005-11-01  Bernhard R. Link <brlink@debian.org>
	* use memcpy instead of strcpy to copy
	  magic strings into place to avoid problems
	  with '\000\021' magic for application/x-tex-tfm.
	  (magic.c) All praise valgrind for finding that one.
	* refactor application windows' icon loading a bit
	  move unescaping and bitmap loading into parseApp,
	  all icon loading into readApplicationBitmap, 
	  choose default icon based on action and not on
	  file type.
	  (Am.h, FmAw.c, FmAwCb.c)
	* Make it compile with -std=c99 -pedantic.
	  (FmBitmaps.c, FmErrors.c, magic.c, mime.c, lib/bitmaps/xfm_*.xbm)

2005-10-31  Bernhard R. Link <brlink@debian.org>
	* replace readIcon by loadIcon, caching requests for icons 
	  and keeping them in memory, not free'ing them.
	(Am.h, Fm.h, FmAw.c, FmAwActions.c, FmBitmaps.c, FmFw.c,
	 FmOps.c, FmUtils.c)

2005-10-30  Bernhard R. Link <brlink@debian.org>
	* Clean up FmBitmaps.c code a bit
	  (moving #ifdefs into readPixmap, splitting
	   that into FromFile and FromData for better
	   type checking and readability)
	  (FmBitmaps.c)
	* properly add -Wall, fix some subtilities that got missed 
	  as it was not enabled as expected.
	  (Makefile.am, FmFw.c, xfmmailcap.c)

2005-10-29  Bernhard R. Link <brlink@debian.org>
	* more built in types and all in mime-type format
	  (magic.c, xfmtype.man)
	* remove code for disabled XPM, ENHANCE_3DICONS
	  and ENHANCE_CURSOR; tidy up Fm.h and FmBitmaps.c
	  a bit
	  (configure.in,Makefile.am, Fm.h, FmBitmaps.c, FmAw.c, FmFw.c, FmMain.c)
	* replace
	  lib/pixmaps/xfm_{file,files,dir,icon,appmgr,xymlnk}.xpm
	  by
          contrib/3dicons/icons/{file,files,folder,folder,suitcase,link}.xpm

2005-10-23  Bernhard R. Link <brlink@debian.org>
	* remove support to switch off MAGIC_HEADER 
	  (FileList.c, Fm.h, FmBitmaps.c, FmDirs.c, FmFw.c, 
	   FmInfo.c, FmMain.c, xfm.man)
	* add system_mailcap_file and mailcap_file resource to read
	  (Fm.h, FmFw.c, FmMain.c)
	* move some expanded values away from a fixed size array
	  to variable sized variables. 
	  (Fm.h, FmFw.c, FmMain.c, FmOps.c)
	* fix forgotten count = 0 in magic_parse_single_file (magic.c)
	  and fix default magic file accordingly (contrib/3dicons/magic)
	* add mime_get_betworking (mime.c, mime.h, xfmmailcap.c)
	* add include statement (mime.c)
	  and include default magic file using it. (contrib/3dicons/mime)

2005-10-22  Bernhard R. Link <brlink@debian.org>
	* implement running tests specified by mailcap (mime.c)

2005-10-19  Bernhard R. Link <brlink@debian.org>
	* Replace all Xaw includes by Xaw3d.
	(avoiding to mix them)
	* remove -lXext -lSM -lICE as not needed.

2005-10-17  Bernhard R. Link <brlink@debian.org>
	* add checks for some headers in configure.in
	* add start of mime.c and xfmmailcap.c
	to parse mailcap files.

2005-10-17  Bernhard R. Link <brlink@debian.org>
	* 'include:' file's and gnome's mime-magic
	into the default magic file.
	* use text/plain and application/octet-stream
	as fallback types instead of ascii and data (magic.c)
	* rewrite default xfrm file to use those
	mime types as magic values.

2005-10-15  Bernhard R. Link <brlink@debian.org>
	* add xfmconfig.h to all files, declaring some
	preprocessor switches there instead of by compiler
	command line (*.c)
	* change some typing to make gcc's aliasing rules happier 
	(TextField.c, FmSelection.c)
	* add an include: directive for magic files (magic.c)

2005-10-02  Bernhard R. Link <brlink@debian.org>
	* Place GPL notice in every file, update FSF postal
	address, remove old cvs Ids, ... (all src/*.{c,h} files)

	* fix some compiler warnings (xfmtype.c, FmFw.c, FmExec.c,
	FmErrors.c)

2005-03-24  Bernhard R. Link <brlink@debian.org>
	* Always specify xpm_attributes, avoiding
          segfaults with full color palette (FmBitmaps.c)

2004-06-21  Bernhard R. Link <brlink@debian.org>
	* fix some compiler warnings (FmAwActions.c, FmBitmaps.c, 
	FmDelete.c, FmFwActions.c, FmFwCb.c, FmHistory.c, FmMain.c, 
	FmOps.c, FmPopup.c, FmSelection.c, FmUtils.c, TextField.c)
	* fix possible buffer overflow (FmDirs.c)
	* begin changing magic.c to use regexps from libc.

2003-08-27  Bernhard R. Link <brlink@debian.org>

	* ad 'systemwide' configfiles to be read when no
	user supplied are available (FmAw.c, FmAwCb.c, FmMain.c)

2001-09-03  root  <Dr.Graef@t-online.de>

	Release 1.4.3

	* fixed some bugs in magic.c (patch snapped from xplore), updated
	magic files accordingly (*NOTE*: this might break older setups,
	so make sure you update your personal magic file!)

	* added Bob Woodside's double click patch for the application
	window (FmAw.c)

2000-05-11  Till Straumann <Till.Straumann@TU-Berlin.de>

    Patchlevel 1.4.2patchl05

    * fixed problems with `kwm' hanging on session logout.
      We now participate to the WM_SAVE_YOURSELF protocol
      (and even set KWM_SAVE_YOURSELF if kwm seems to be running).
    * fixed the `ugly text display of long group names' problem which
      occurred when a text display list contained only one entry [..]

2000-01-17  Albert Graef  <ag@muwiinfa.geschichte.uni-mainz.de>

	Patchlevel 1.4.2patchl04
	
	* added some trivial changes to fix compilation probs on SuSE
	Linux 6.3 and Solaris 2.x, and tweaked some of the resources in
	Xfm.cpp (nicer selection color, no borders on labels in dialogs
	when using Xaw3d)

	* updated ChangeLog

2000-01-17  Till Straumann <Till.Straumann@tu-berlin.de>

	Patchlevel 1.4.2patchl03
	
	This patch fixes a couple of bugs in 1.4.2:

	* xfm sometimes crashed when creating a text display
	(e.g. by cloning a text display or setting the
	`defaultDisplayType' or `initialDisplayType' resources).

	* the `options' menu button disappeared when the text display was
	updated.

	* double clicks in the file window finally work in ol[v]wm/kwm
	even if the focus policy is "click to focus" (app window still
	needs to be fixed)

	* popup windows didn't handle the WM_DELETE_WINDOW protocol.

	* the `-version' option should work and show the release number as
	well as the patchlevel.

	* The `TextField: cursor position out of range' warnings should
	have gone. TextField has been used for other apps and has got a
	couple of new features (currently not used by xfm).

Fri Oct 31 08:06:33 1997  Albert Graef (ag@muwiinfa.geschichte.uni-mainz.de)

	Release 1.4.2

	* integrated some last-minute patches from Till
	
	* some more bug fixes and final touches for the forthcoming public
 	release

	* integrated the new 3dicons setup and made it the default
	(Imake.options, Imakefile)
	
	* added WM_DELETE_WINDOW handlers to the main popups

	* added an "about" dialog

	* moved installation instructions to a separate `INSTALL' file
	
Oct 1997  Albert Graef (ag@muwiinfa.geschichte.uni-mainz.de)

        some additional patches for Till's 1.4 version

	* bug fixes in copy operation (patch contributed by Walt Killjoy
  	(ngogn@clark.net)) and magic headers code (patch by Juan
 	D. Martin)

	* transparently move files between different file systems (via
 	copy/del)

	* new Rename and Xterm operations (inspired by moxfm)

	* current path/application file name is shown in window titles

	* at startup, prompt user to run xfm.install if the .xfm dir does
 	not yet exist

	* added a new 3d icon set (see contrib/3dicons)

	* updated the manpage

Jul-Oct 1997  Till Straumann (strauman@sun6hft.ee.tu-berlin.de)

	new version 1.4 with lots of bug fixes and enhancements (see
 	README-1.4 for details)

Mar-Apr 1995  Albert Graef (ag@muwiinfa.geschichte.uni-mainz.de)

	Release 1.3.2

	* integrated various contributions: magic file type detection (Juan D.
	Martin, juando@cnm.us.es), filter option (Kevin Rodgers,
	rodgers@lvs-emh.lvs.loral.com), view option (Scott Heavner,
	sdh@falstaff.MAE.cwru.edu) and default values in parameter dialogs
	(Brian King, ender@ee.WPI.EDU)

	* fixed a memory leak in .FmOps.copydir(), and some annoying bugs in
	.FmFw.createTreeDisplay(), .FmFwCb.mainArrowCb() and
	.FmAw.replaceApplication()

	* added default values to all standard dialogs (everybody's favorite
	trivial change ;-), and, since I was too lazy to implement an "About"
	box, a -version option which causes xfm	to print its version number
	and exit

	* improved support for creating symbolic links, and added a Link
	option to the file popup menu; these options now work analogous to the
	corresponding Copy options

	* removed the autoSave resource and the Save setup option; application
	files are now always saved automatically upon each modification of the
	application window (this has become necessary since manipulating the
	applications window is now a lot easier; see below); a Reload option
	still lets you edit application files with a text editor and reload
	the applications file while xfm is running

	* added an option to install application groups (which is a simplified
	version of the general application install option)

	* an application file stack; the Back and Main options allow you
	to navigate in your application group tree, and make explicit "back"
	items in the application window unnecessary

	* drag and drop in the application window; it is now possible to move
	and copy items in the application window by simply dragging a selected
	set of items to a new place

	* cut/copy/paste of application items; this finally gives a convenient
	way to move items in the application window between different
	application files

	* added "Select all" and "Deselect all" options to the application
	menu

	* buttons with Back, Main, Reload and File window options at the
	bottom of the application window

	* additions to the Imakefile and Xfm.cpp for optional linking with
	Xaw3d (suggested by Simon Marlow)

	* removed obsolete xfmc subdir, cleaned up the source directory tree,
	overhauled Imakefiles, and added an "Imake.options" file for easier
	customization

	* renamed the standard application files (note that xfm applications
	files are now recognized in xfm by the "#XFM" header, thanks to the
	magic types added by Juan D. Martin; so the rigid "xfm-*" naming
	scheme of earlier 1.3.x releases is no longer required)

	* added lots of icons (a large collection of fileicons was donated by
	Juan D. Martin), and overhauled the standard config files

	* updated documentation

Feb 1995  Robert Vogelgesang (vogelges@rhrk.uni-kl.de)

	Release 1.3.1

	Some minor portability fixes for AIX.


Dec 1994  Albert Graef (ag@muwiinfa.geschichte.uni-mainz.de)

	* bug fixes:
	  - initialize parameter dialog fields
	  - handle \% in push and drop actions
	  - invoke executable with absolute pathname
	    (.FmFwActions.fileExecFile())
	  - fixed buggy use of alloca in FmAw.c; added casts to (char *) to
	    all invokations of alloca
	  - fixed "interrupted system call" error in shell auto-detection (fix
	    suggested by Simon Marlow)

	* applied some portability patches

	* added some icons (in particular, note that the applications window
	  has a new icon, xfm_appmgr.xpm, which now has the same size as the
	  file window icon; the "button bar" icon, which used to be in
	  xfm_appmgr.xpm, is now in apps.xpm)

	* some cosmetic changes and bug fixes in configuration, make, and
	  documentation files

Nov 1994  Robert Vogelgesang (vogelges@rhrk.uni-kl.de)

	Release 1.3.1 beta

	* fixed some minor bugs, in particular initialization of file types
	  in text display

	* code cleanup; updated documentation. 	

	One problem remains unsolved: sometimes when you start xfm, it
	won't come up, but print a message like:
	`Reading child's output failed: interrupted system call'
	It's my Bourne Shell test which outputs this message. If you get
        this message, please retry starting xfm, and if that doesn't
	work, you can disable the test by defining the X resource
        Xfm.BourneShells -- see the man page for details.
	Albert gets this on a Sun running Solaris, but I cannot reproduce
	it under Linux, and therefore wasn't able to fix it.
	Maybe you are. Please email any fixes (or further bug reports)
	either to Albert or to me. 

Sep 1994  Robert Vogelgesang (vogelges@rhrk.uni-kl.de)

	* added resource `*BourneShells' and shell type detection.

Apr 1994  Albert Graef (ag@muwiinfa.geschichte.uni-mainz.de)

	Release 1.3 with many bug fixes and enhancements, too numerous to list
	them all. The most important user-visible changes are listed below, in
	no particular order.

	* Fixed bugs in drag and drop operations.

	* Applications are launched in the user's home directory if no files
	are specified, and in the directory containing the selected files
	otherwise.

	* Resources are now contained in the Xfm application defaults file,
	to be installed in /usr/lib/X11/app-defaults.

	* A bunch of additional resources for controlling existing and new xfm
	operations; see the Xfm applications default file for details.

	* Check for geometry resource for popups. This allows you to display
	dialog popups in a fixed place, instead of having to chase them
	around the screen.

	* Avoid unecessary folder updates in Move/Copy/Delete operations.

	* Check for identical source and target in move and copy operations.

	* Added an Abort button to the confirmation popup, which allows
	you to kill an operation (like Move, Delete) which may prompt you
	for more than one confirmation.

	* Confirmation for exiting xfm (configurable with the confirmQuit
	resource).

	* Made the -filemgr option work.

	* Prevent applications from locking up xfm with keyboard input. This
	bug was discovered by my four years old son Sebastian when he played
	around with the mouse. ;-)

	* Added overwrite confirmation for the move operation.

	* Added confirmation for removing applications in the applications
	window.

	* Added a status line to the file window which displays number of
	files and total byte size for the displayed directory and selection.

	* Distinguish between directories and other files in the file window
	popup menu.

	* Added a semaphore to prevent the automatic folder updates from
	breaking xfm.

	* Disabled the xfmc stuff. It will possibly be reintegrated in a
	future release. Trashcans and opening windows on floppy devices
	can now be realized easily without xfmc. In fact, the applications
	file distributed with xfm contains examples on how to do this.

	* Added support for color icons in XPM format.

	* Added support for user-defined file types.

	* Distinguish between push and drop actions for launching applications.

	* Allow all types of files to be installed on the application window,
	with proper action settings depending on the file type.

	* Allow actions to prompt for parameters before launching an
	application.

	* Changed the format of the xfm applications files (which is now named
	xfm-apps by default) and added configuration files for file types
	(xfmrc) and devices (xfmdev).

	* Added an autosave feature for application files.

	* Reorganized menus and actions. The file window now has three menus
	(File, Folder and View), and the application menu is accessible as
	a popup by pressing the right mouse button in the application window.
	Pressing the button on an application invokes a popup menu with
	operations for this application, similar to the file window popup.
	This menu contains two new operations for moving and copying
	applications to the bottom of the applications window.

	* Added support for recursive copying and deletion operations (with
	help form Simon Marlow). An extra confirmation resource allows you to
	be prompted before the contents of a directory is removed, in addition
	to the usual delete confirmations.

	* New operations: move/copy a file or a collection of files to a
	specified target (which may be an existing directory). The move
	operation replaces the rename operation in the previous release.
	I also added operations to create a new and empty file, to create
	symbolic links, and to empty the current directory (delete all items
	in it).

	* Added an operation to open a new file window from the application
	window, and allow the last file window to be closed.

	* Made the application and file windows respond to WM_DELETE_WINDOW
	messages.

	* The selection operations now only include . or .. in the selection
	when specified explitly. I also added a Remove button to the
	selections popup which allows you to remove the specified files
	from the selection. The pattern matcher now also understands
	ranges of characters such as [a-z].

	* Added a collection of color icons, and edited existing bitmaps for
	cursors, directories, files, etc. Also designed some icons myself,
	like xfm_appmgr.xpm. Hope you like them. :-)

	* Added a LOAD action to the application manager which allows you to
	load different application files simply by double-clicking on the
	corresponding icon. In effect, this provides support for different
	application groups in the application manager. There is still only
	one applications window, though. :-(

	* Added support for auto-mounting and -unmounting of special file
	systems such as floppies. See the man page for details.

	* Double-clicking on the directory name label in a file window now
	updates the directory display. This is for those of you who are too
	impatient to wait for the automatic folder update to perform its
	task. It is also useful on some special file systems which do not
	always change the time stamp when updating a directory. (I noticed
	this under the msdos file system of Linux.)

	* Added a man page. Quick and dirty job, but it hopefully provides
	all necessary information. In any case, it is better than nothing. ;-)

	* And a plethora of smaller bug fixes (for which I probably
	introduced some new ;-).

Wed Mar 17 00:00:05 1993  system admin  (root@rachel)

	* Updated the README file, included a MANIFEST, and released
	version 1.2.

	* Cleaned up the source, placing xfm and xfmc in subdirectories
	with a top-level Imakefile that knows which things to make.  It
	should still be possible to make in each subdirectory seperately.

Tue Mar 16 19:37:43 1993  system admin  (root@rachel)

	* Placed xfm under the GNU General Public License, added a
	copyright message to files that didn't have one.

	* Lots of minor cleanups and cosmetic changes.  Now compiles with
	virtually no warnings with -Wall -Wno-parentheses.

	* Added an initialDisplayType resource, since there are differing
	opinions as to whether the first window should be of the same type
	as subsequent ones.

	* Incorporated numerous patches from Dave Safford 
	(dave.safford@edu.tamu.sc) including the following: a timeout that
	updates windows when they have changed (by checking the
	timestamp), icons have different names (so they can be assigned
	colours), an edit option for the popup menu, and an option to hide
	files beginning with a '.'.  Also added some new options to
	DEFAULTS to give some colour to the icons, and display the
	application manager on the left of the screen.

Sat Mar  6 23:38:23 1993  system admin  (root@rachel)

	* Added defaultEditor resource.  This is the name of a
	program to be executed when a normal file is double-clicked on.

Fri Mar  5 23:19:05 1993  system admin  (root@rachel)

	* Fixed a major memory leak (failing to free the FileRecs on
	updating a window).  Added function freeFileList() to FmDirs.
	Added some hooks for the debugging malloc library, included when
	DEBUG_MALLOC is defined. (ver 1.1h).

Sun Dec  6 16:48:16 GMT 1992

  * Made some minor cleanups, changed the README file, tested it for about
    20 secs, and released it to a few alpha testers (ver 1.1g).

Fri Oct 16 15:25:42 BST 1992
  
  * New function: newFileWindow in FmFw.c. Replaces a common sequence of lines
    when opening a new file window.

  * Added some checking that the chdir function actually succeeded in
    createFileWindow() - it was failing sometimes when responding to
    messages from the client.

  * fileOpenButtonCb() now pops up windows by the cursor only if it was called
    from FmFwActions.c.

  * Uncommented a line from fileCloseCb() that caused an error in older versions
    of the X toolkit - the widgets could not be destoryed. Xfm should now use
    a lot less memory as this was a major memory leak.

  * Fixed some bugs in the communications module. There are still problems due
    to the event handler being called recursively - this is mainly a problem
    with the error handler which dispatches more events while waiting for the
    user to press 'ok'.

Thu Oct 15 15:44:33 BST 1992
  
  * Removed the function clearUpdateMarks(), and incorporated it into 
    intUpdate().

  * Finally completed the communications module so that arbitrary length
    messages can be sent from the client. It seems to work, but I'm a bit
    dubious.

Wed Oct 14 12:54:37 BST 1992

  * Removed special translations for labels, it messed up the click-drag stuff
    (ie. if you dragged on to a label, xfm got all confused).

  * Finally fixed the problem with symbolic links to non-existent files. 
    Now, you get the directory displayed, and the offending icon(s) are greyed
    out, although they can still be used. You should still get a warning when
    this is happening.

  * I'm getting some strange behaviour, that results in error() being called
    recursively. For now I just ignore any subsequent errors, but I suspect
    this is a bug in the toolkit/server.

  * Removed the freeing of the bitmaps and cursors on exit. This is done by
    the server anyway (apparently).

  * improved the communications module somewhat - it now uses atoms for the two
    message types, to avoid problems with other messages. Still need to allow
    arbitrary length messages. Also - I'm getting an error when using the
    client from another machine.

Tue Oct 13 11:54:18 BST 1992

  * added sys/types.h before sys/stat.h in Fm.h. Removed sys/stat.h from some
    files since it is included in Fm.h anyway. This patch is required for
    Ultrix (apparently), and System V I think.

Mon Oct 12 14:06:05 BST 1992

  * Probably missed out a few more.

  * Fixed fnSub() in FmDirs.c - It was failing due to overlapping areas being
    handled incorrectly by strcpy, to the effect that if HOME was shorter than
    the name of the resource file, it crashed. Thanks to Peter Williams for 
    this one.

  * Fixed FmDelete.c so that it deletes symbolic links properly.

Sat Sep 26 15:20:08 BST 1992

  * I've missed a few out here...
    Added support to handle the ClientMessage event, and either open a new
    window or update some of the existing ones. A small program called xfmc
    to send these signals is included. Currently very hacky, needs some work.

  * Added a signal handler for SIGCHLD that just calls waitpid(), this clears
    up the zombie processes generated by the application manager.

  * Patched in a fix for FmFw.c, when the text display is used and there exists
    a file owned by a user that has no entry in the password file, then it core
    dumped. Thanks to hkarhune@hydra.helsinki.fi for this one.

  * Action fileBeginDrag is now called when leaving the window with the button
    pressed. This solves problems with double clicking (you weren't allowed to
    move the mouse between clicks).

  * Added a floating menu activated by the third button with all the single 
    file operations on it. The operations menu now has only delete and mkdir 
    options. I think it's nicer this way.

  * Scrapped FmIcons.c for now. Looking for a more general solution.

Sat Sep 12 19:35:50 BST 1992

  * Added support for user defined icons in file windows: FmIcons.c. A new
    resource is added (iconMappings).

  * Cursors are now opaque (looks nicer :-)

  * Cursor changes to a no-entry symbol when over a directory that you
    do not have write access to.

  * New function abortXfm() in FmErrors.c for terminal errors during startup.

Thu Sep 10 17:05:49 BST 1992 simonm (simonm@dcs.glasgow.ac.uk)

  * This file added.

  * Moved the 'move' operation to button 1 (press+move to initiate)

  * Added the select operation, put it on button 1. Button 1 now selects the
    file that the mouse is on, and deselects all others. Move defaults to
    select if the mouse doesn't move anywhere usefull.

  * Relegated the old toggle operation to button 2.

  * Added the ability to drag directories onto the root window to open them

  * Modified popupByCursor so that windows are not created half off the
    screen, modulo messing around by the window manager.