forked from CTU-OSP/mc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
4379 lines (2871 loc) · 136 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2009-03-04 Andrew Borodin <[email protected]>
* po/ru.po: fixed Russian translation.
2009-03-02 Andrew Borodin <[email protected]>
* po/*.po: updated all *.po files.
2009-03-02 Mikhail Pobolovets <[email protected]>
* src/find.c: Micro fix for 'Skip hidden' shortcut
It's now Alt+k instead of Alt+p
2009-02-24 Andrew Borodin <[email protected]>
* src/menu.c: menubar_paint_idx(): fixed menu painting for NCurses screen library.
2009-02-24 Mikhail Pobolovets <[email protected]>
* syntax/spec.syntax: .spec syntax update by adamw (#189)
2009-02-21 Mikhail Pobolovets <[email protected]>
* src/find.c: 'Skip .hidden files and dirs' renamed to 'Skip hidden'
Check box position has been changed. (#132)
* po/ru.po: translation update for 'Skip hidden'.
2009-02-20 Mikhail Pobolovets <[email protected]>
* src/find.c: 'Skip .hidden files and dirs' has been introduced.
An option to toggle on|off searching for|in hidden directories
and files. (#132)
2009-02-19 Andrew Borodin <[email protected]>
* src/screen.c: reimplemented displaying size of total marked files.
If mini-status is on, total size is displayed on mini_info_separator.
If mini-status is off, total marked size or current size is displayed
at the bottom of panel.
show_free_space(): more glib usage. Use macro for array size.
Set attribute here instead of show_dir().
display_mini_info(): check the show_mini_info value before call this.
Move display size of total marked files from here...
display_total_marked_size(): ...to this new function.
display_mini_info(): removed unused return.
mini_info_separator(): check the show_mini_info value before call this.
Set attribute independently of HAVE_SLANG. Show total size of marked files.
show_dir(): show size of current selected file or total size of marked
files if mini-status is off.
panel_update_contents(): removed. Since total size of marked files
is displayed on mini-info-separator, paint_panel() is used instead.
paint_panel(): used in update_dirty_panels() and panel_event()
instead of panel_update_contents(). Fixed double call of show_dir().
2009-02-17 Mikhail Pobolovets <[email protected]>
* po/lt.po: update by stikonas (#274)
2009-02-05 Mikhail Pobolovets <[email protected]>
* po/nl.po: update by mpol (#271)
2009-02-05 Patrick Winnertz <[email protected]>
* reverted all mhl usage in files except escaping stuff
2009-02-04 Enrico Weigelt, metux ITS <[email protected]>
* mhl/types.h, mhl/escape.h: replaced bool type by stdbool.h (fixing #239, #240)
* lib/mc.sh.in: fixes for non-bash shells (fixing #196)
2009-02-03 Enrico Weigelt, metux ITS <[email protected]>
* lib/mc.ext.in: command line options fix by adamw (#183)
2009-02-03 Enrico Weigelt, metux ITS <[email protected]>
* lib/mc.lib: added patch on #219 by angel_il
* edit/editcmd.c, configure.ac: removed obsolete own implementation of memove (#242)
* vfs/extfs/u7z: patch from mandriva (#194)
* added Andrew Borodin's patch for showing free space (#188)
2009-02-02 Enrico Weigelt, metux ITS <[email protected]>
* vfs/extfs/iso9660.in: added iso9660 fix by cppgx (#86)
2009-02-01 Enrico Weigelt, metux ITS <[email protected]>
* src/util.c: fixed name_trunc() on NULL or empty parameters
* src/achown.c: fixed unitialized var in init_chown_advanced()
(patch from Andrew Borodin)
* replaced gboolean by bool (from mhl/types.h)
2009-01-31 Enrico Weigelt, metux ITS <[email protected]>, Patrick Winnertz <[email protected]>, Slava Zanko <[email protected]>, Sergei Trofimovich <[email protected]>
* edit/editcmd.c, mhl/escape.h, mhl/string.h, mhl/types.h, src/Makefile.am,
* src/boxes.c, src/command.c, src/complete.c, src/complete.h, src/file.c,
* src/find.c, src/main.c, src/panelize.c, src/util.c, src/utilunix.c,
* src/widget.c, src/widget.h, src/wtools.c, vfs/fish.c:
fixed shell escaping issues in commandline completion engine
2009-01-31 Enrico Weigelt, metux ITS <[email protected]>
* replaced buggy concat_dir_and_file() by mhl_str_dir_plus_file() (in mhl/string.h)
* replaced g_snprintf() by snprintf()
* replaced GString stuff by static buffers
2009-01-30 Enrico Weigelt, metux ITS <[email protected]>
* src/Makefile.am, edit/Makefile.am vfs/Makefile.am: fixed #208
(out-of-tree builds)
* syntax/Syntax, syntax/Makefile.am, syntax/vhdl.syntax: added VHDL syntax (#193)
* replaced calls to g_strdup() by mhl_str_dup()
2009-01-30 Enrico Weigelt, metux ITS <[email protected]>
* replaced calls to g_free() by mhl_mem_free()
2009-01-29 Mikhail S. Pobolovets <[email protected]>
* lib/mc.ext.in: update for OpenOffice and StarOffice viewer.
odt2txt is now used
2009-01-29 Patrick Winnertz <[email protected]> & Sergei Trofimovich <[email protected]>
* src/file.c: Added trailing dir separator for default path in copy/move dialogs.
This solves "strange" rename cases, when copying/moving is performed into
deleted directory.
2009-01-27 Enrico Weigelt, metux ITS <[email protected]>
* mhl/escape.h, src/complete.c, vfs/fish.c: introduced new type
SHELL_ESCAPED_STR for more type safety
2009-01-27 Enrico Weigelt, metux IT service <[email protected]>
* mhl/escape.h, mhl/string.h: fixed comments to use /* ... */
2009-01-27 Sergei Trofimovich <[email protected]>
* syntax/python.syntax: Added syntax highlighting for
pytnoh-2.6+ keywords (patch sent by NNemec)
2009-01-26 Mikhail S. Pobolovets <[email protected]>
* vfs/fish.c: Iterpret SUP.flags as port number if SUP.flags is not in
0, FISH_FLAG_COMPRESSED and FISH_FLAG_RSH. Weakness: port number
2009-01-25 Ilia Maslakov <[email protected]>
* src/boxes.c, src/boxes.h, src/dir.c, src/dir.h:
* src/main.c, src/panel.h, src/screen.c, src/setup.c:
- Add support for showing executables at first in the panel view
2009-01-25 Patrick Winnertz <[email protected]> & Sergei Trofimovich <[email protected]>
* mhl/string.h, vfs/fish.c, vfs/utilvfs.c, vfs/utilvfs.h: Reworked fish code
so that symlinks and files which special characters works now
2009-01-25 Mikhail S. Pobolovets <[email protected]>
* src/cmd.c src/option.c src/setup.c src/main.h: Automatic new directory(Mkdir, F7)
name filling. Can be configured (on|off) in 'Configure options'
2009-01-25 Enrico Weigelt, metux ITS <[email protected]>
* edit/editcmd.c, src/cmd.c, src/ext.c, src/history.h:
* src/hotlist.c, src/panelize.c, src/tree.c, src/user.c:
* src/view.c, vfs/ftpfs.c, vfs/utilvfs.c:
- Made history section names statically instead of dynamic
translated strings. This breaks now once every history file
but afterwards this will be stable
2009-01-24 Enrico Weigelt, metux ITS <[email protected]>
* vfs/extfs/rpm, vfs/extfs/trpm: removed obsolete rpm tags
* src/cmd.c: fixed bug #35 (do_view_cmd is now calling repaint_screen())
* syntax/Syntax, syntax/nemerle.syntax: Added syntax rules
for Nemerle source files
2009-01-24 Patrick Winnertz <[email protected]>
* edit/editcmd.c: Fix some issues about regex:
- prevent . to match a newline (\n)
- match from start of line and not from cursor position
2009-01-24 Enrico Weigelt, metux IT service <[email protected]>
* configure.ac:
* lib/mc.ext.in:
* vfs/extfs/Makefile.am:
* vfs/extfs/extfs.ini:
* vfs/extfs/uace.in:
* vfs/extfs/uarc.in:
* vfs/extfs/uc1541.in: added support for historic archive formats
(patch provided by jpelletier)
* merged in lzma patch from mandriva
2009-01-19 Patrick Winnertz <[email protected]>
* edit/edit.h: Add two more ints
* src/setup.c: Add keybinding to disable tab highlighting
2009-01-18 Patrick Winnertz <[email protected]>
* edit/editdraw.c: Moved var into if clause as it's only used there
* edit/editlock.c: Removed unnecessary arguement to if condition
* src/cmd.c: Removed unused pointer
* src/hotlist.c: Removed unused function save_group
* src/main.c: Removed unused function do_mc_filename_rename
* src/util.c: Removed unused struct whentm
2009-01-16 Enrico Weigelt, metux ITS <[email protected]>
* src/subshell: setting subshell pty to close-on-exec
(taken from mandriva patches)
2009-01-14 Slava Zanko <[email protected]>
* lib/mc.ext.in: change filemask for recognize 7z-files
* vfs/extfs/u7z:
- change only LC_DATE global variable for correct work with arhive;
- add sorting by filename in output of list files
2009-01-12 Patrick Winnertz <[email protected]>
* AUTHORS: Added Enrico Weigelt, Slava Zanko and
Patrick Winnertz as authors
2009-01-11 Patrick Winnertz <[email protected]>
* po/de.po: Fix some spelling errors
2009-01-11 Enrico Weigelt, metux ITS <[email protected]>
* FAQ HACKING README man/*: new HQ url
* syntax/awk.syntax: added awk syntax file
* configure.ac: replaced obsolete autoconf macros AC_GNU_SOURCE
AC_AIX AC_MINIX by AC_USE_SYSTEM_EXTENSIONS
2009-01-11 Patrick Winnertz <[email protected]>
* syntax/pascal.syntax: Added syntax highlighting for
some delphi keywords
2009-01-10 Enrico Weigelt, metux ITS <[email protected]>
* syntax/Makefile.am syntax/Syntax syntax/haskell.syntax:
added syntax definition for Haskell (taken from rhclub-tree)
* syntax: added ebuild Syntax defition (taken from rhclub-tree)
* edit/editcmd.c:
* src/achown.c src/background.c src/boxes.c src/chmod.c:
* src/chown.c src/cmd.c src/command.c src/dir.c src/execute.c:
* src/ext.c src/file.c src/filegui.c src/find.c src/help.c:
* src/learn.c src/main.c src/panelize.c src/screen.c:
* src/selcodepage.c src/subshell.c src/tree.c src/user.c:
* src/utilunix.c src/view.c:
* vfs/cpio.c vfs/direntry.c vfs/extfs.c vfs/fish.c vfs/ftpfs.c:
* vfs/mcfs.c vfs/sfs.c vfs/smbfs.c vfs/tar.c vfs/undelfs.c:
* vfs/utilvfs.c vfs/vfs.c:
Changed message type codes on calls to message(), query_dialog(),
close_error_pipe() from numeric IDs to symbols D_ERROR, D_NORMAL
2009-01-07 Enrico Weigelt, metux ITS <[email protected]>
* removed bundled slang
2008-12-18 Roland Illig <[email protected]>
* doc/mcedit.1: Documented the newly added filename:lineno
invocation method.
2008-02-19 Pavel Roskin <[email protected]>
* doc/hu/mc.1.in: Fix description for M-u and M-H. Reported by
Bozo Lajos.
2008-01-06 Roland Illig <[email protected]>
* FAQ: Answered the slow startup related to old Samba code.
(Closes: #21959)
2007-10-19 Pavel Tsekov <[email protected]>
* NEWS: Update for 4.6.2.
2007-10-11 Pavel Tsekov <[email protected]>
* configure.ac: Determine the size of `long', `long long' and
off_t.
2007-09-26 Pavel Tsekov <[email protected]>
* NEWS: Revert last change - it is invalid.
2007-09-24 Pavel Tsekov <[email protected]>
* m4/codeset.m4: Update to serial #2.
* m4/fsusage.m4: Update to serial #23.
* m4/iconv.m4: Update to serial #AM6.
* m4/intdiv0.m4: Update from gnulib.
* m4/intmax.m4: Update to serial #3.
* m4/inttypes-pri.m4: Update to serial #4.
* m4/inttypes_h.m4: Update to serial #7.
* m4/lib-link.m4: Update to serial #13.
* m4/lib-prefix.m4: Update to serial #5.
* m4/longlong.m4: Update to serial #10.
* m4/onceonly.m4: Update to serial #4.
* m4/printf-posix.m4: Update to serial #3.
* m4/size_max.m4: Update to serial #6.
* m4/stdint_h.m4: Update to serial #6.
* m4/ulonglong.m4: Update to serial #6.
* m4/wint_t.m4: Update to serial #2.
2007-09-24 Pavel Tsekov <[email protected]>
* doc/mcedit.1.in: Update the version number to 4.6.2-pre1.
* doc/mcview.1.in: Ditto.
* doc/mcserv.8.in: Ditto.
2007-09-24 Pavel Tsekov <[email protected]>
* FAQ: Update MC's homepage url.
* README: Ditto.
* doc/mc.1.in: Ditto.
* doc/mcedit.1.in: Ditto.
* doc/mcserv.8.in: Ditto.
* doc/mcview.1.in: Ditto.
* doc/es/mc.1.in: Ditto.
* doc/hu/mc.1.in: Ditto.
* doc/it/mc.1.in: Ditto.
* doc/pl/mc.1.in: Ditto.
* doc/ru/mc.1.in: Ditto.
* doc/sr/mc.1.in: Ditto.
* doc/sr/mcserv.8.in: Ditto.
2007-09-10 Pavel Tsekov <[email protected]>
* configure.ac: Update the version number to 4.6.2-pre1.
* doc/mc.1.in: Likewise.
2007-01-13 Pavel Tsekov <[email protected]>
* doc/mc.1.in: Place the description of the "Swap panels" on
a paragraph of its own.
2006-12-30 Pavel Tsekov <[email protected]>
* m4/ls-mntd-fs.m4: Update to serial #26.
2006-12-30 Pavel Tsekov <[email protected]>
* m4/fsusage.m4: Update to serial #22.
2006-12-30 Pavel Tsekov <[email protected]>
* m4/fsusage.m4: Update to serial #18.
2006-12-28 Pavel Roskin <[email protected]>
* build-glib1.sh: Fix misplaced --with-glib12. Copy
config.guess and config.sub from mc to glib sources - they are
too old in glib.
* build-glib2.sh: Update to the latest versions of glib, gettext
and pkg-config.
2006-11-27 Leonard den Ottolander <leonard den ottolander nl>
* NEWS: Bash < 2.05b (3-digit octals in echo_e_cmd) no longer
supported.
2006-09-07 Pavel Tsekov <[email protected]>
* acinclude.m4 (AC_GET_FS_INFO): Add erronously removed call to
gl_FSTYPENAME.
* m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Add missing
include directive for sys/param.h.
2006-09-07 Pavel Tsekov <[email protected]>
* m4/ls-mntd-fs.m4: Update to serial#22, which adds support
for getmntinfo() returning its result in struct statvfs.
* m4/fstypename.m4: Update to serial#6, which replaces
HAVE_F_FSTYPENAME_IN_STATFS with HAVE_STRUCT_STATFS_F_FSTYPENAME.
2006-09-07 Pavel Tsekov <[email protected]>
* acinclude.m4 (AC_GET_FS_INFO): Revert a failed attempt to
properly detect getmntinfo() returning its result in struct statvfs.
2006-06-30 Hampa Hug <[email protected]>
* acinclude.m4 (AC_GET_FS_INFO): Check the return value of
getmntinfo() properly.
2006-06-17 Pavel Tsekov <[email protected]>
* m4/fstypename.m4: New file.
* acinclude.m4 (AC_GET_FS_INFO): Add a check to determine whether
getmntinfo() takes struct statvfs instead of struct statfs as its
first argument. Define MOUNTED_GETMNTINFO_STATVFS if it does.
Add a check to determine whether struct statvfs has a field named
f_fstypename.
Use gl_FSTYPENAME tp determine whether struct statfs has a field
named f_fstypename.
2006-06-07 Pavel Tsekov <[email protected]>
* configure.ac: Revert last commit.
2006-05-29 Roland Illig <[email protected]>
* m4/ls-mntd-fs.m4: Updated to serial #21, which fixes the use
of an undefined variable.
2006-05-21 Roland Illig <[email protected]>
* configure.ac: Fixed detection of <sys/statvfs.h>, statvfs()
and struct statvfs.f_fstypename, so that mc builds on NetBSD 3.0
again.
2006-04-18 Pavel Tsekov <[email protected]>
* acinclude.m4 (AC_GET_FS_INFO): Make it work again - the last
commit broke it.
* m4/onceonly.m4: New file.
2006-04-13 Anton Monroe <[email protected]>
* doc/mc.1.in: Function key documentation update.
2006-03-18 Leonard den Ottolander <leonard den ottolander nl>
* acinclude.m4 (AC_GET_FS_INFO): Replace old fileutils code to get
mount and file system information with m4_includes of the corresponding
GNU coreutils-5.94 files (ls-mntd-fs.m4 (#20) and fsusage.m4 (#16)).
* m4/fsusage.m4, m4/ls-mntd-fs.m4: Create.
2006-02-23 Pavel Tsekov <[email protected]>
* doc/mc.1.in: Document `fish_directory_timeout'.
2006-02-18 David Martin <[email protected]>
* doc/es/mc.1.in: Cleanup. Fix key naming.
2006-01-29 Pavel Tsekov <[email protected]>
* doc/mc.1.in: Update the documentation to reflect the fact
that confirmation may be requested when deleting directory
hotlist entries based on a user configurable setting.
2006-01-29 Julian Mehnle <[email protected]>
* doc/mc.1.in: Document support for VIEWER environment variable.
2005-11-15 Pavel Roskin <[email protected]>
* acinclude.m4 (MC_WITH_MCSLANG): Add type tests from S-Lang
configuration scripts.
2005-11-10 Pavel Roskin <[email protected]>
* configure.ac: Catch unexpanded MC_* macros.
* m4/*.m4: Update to the macros provided by gettext 0.14.3.
* m4/Makefile.am: Update the list of the *.m4 files.
* configure.ac: Use AC_GNU_SOURCE, which prevents redefining
_GNU_SOURCE. Bump Autoconf version to 2.54, where AC_GNU_SOURCE
appeared.
Reported by Leonard den Ottolander <leonard den ottolander nl>
* configure.ac: Use gettext 0.14.3.
* acinclude.m4 (MC_ASM_LABELS): Remove, it's not needed with
recent versions of gettext.
* acinclude.m4 (MC_ASM_LABELS): Make the test function global
and move its definition above main(). That's closer to what
gettext is actually doing.
2005-10-03 Pavel Roskin <[email protected]>
* configure.ac: Require gettext with ngettext support. It's
already used in src/info.c.
2005-09-28 Pavel Roskin <[email protected]>
* acinclude.m4: Remove gettext 0.10.x compatibility.
2005-08-23 Marco Ciampa <[email protected]>
* doc/it/mc.1.in: updated italian trasnlation.
* doc/it/xnc.hlp: small fix.
2005-08-15 Roland Illig <[email protected]>
* configure.ac: The function getgrouplist() is not used anymore,
so there is no need to check for it. The various get[ug]id
functions are used, so add checks for them. Same for isascii.
2005-07-20 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Restore support for opening 7-zip archives.
* configure.ac: Add vfs/extfs/ualz to AC_CONFIG_FILES.
* lib/mc.ext.in: Add support for ALZip archives.
2005-07-10 Leonard den Ottolander <leonard den ottolander nl>
* configure.ac: Rename AS_HELP_STRING to AC_HELP_STRING.
2005-07-08 Leonard den Ottolander <leonard den ottolander nl>
* NEWS: Fixed commit to the wrong branch.
2005-07-05 Roland Illig <[email protected]>
* configure.ac: Removed detection of the umode_t type. All
references to it have been replaced with mode_t.
2005-07-03 Leonard den Ottolander <leonard * den ottolander nl>
* lib/mc.ext.in: Match files in /log/ or /logs/ directories as plain
text not man page; match local man pages; add fixes for gzipped man
pages to plain and bzipped man pages.
2005-07-03 Leonard den Ottolander <leonard * den ottolander nl>
* lib/mc.ext.in: Move matches for plain compressed files down.
2005-07-03 Roland Illig <[email protected]>
* acinclude.m4 (MC_WITH_VFS): Don't link with libnsl
unnecessarily.
* configure.ac: Simplified detection of the necessary libraries
for socket() and gethostbyname().
Patch provided by Tomasz Kloczko at 2005-06-15 on mc-devel.
2005-06-21 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Support opening for 7-Zip archives.
2005-06-06 Roland Illig <[email protected]>
* NEWS: Added the differences between pre3 and HEAD.
* lib/mc.ext.in: Added ${PAGER} as fallback if neither lynx nor
links is installed.
2005-05-31 Andrew V. Samoilov <[email protected]>
* pkginfo.in: New file. Configuration files for Sun Solaris pkgmk(1).
* prototype.in: Likewise.
* configure.ac: Likewise.
* Makefile.am: Likewise.
2005-05-29 Martin Petricek <[email protected]>
* lib/mc.ext.in: Added support for .7z archives.
2005-05-26 Pavel Roskin <[email protected]>
* *: Update postal address of Free Software Foundation.
2005-05-23 Roland Illig <[email protected]>
* syntax/ChangeLog: The syntax directory has got its own
ChangeLog.
2005-05-17 Roland Illig <[email protected]>
* configure.ac: Removed the extra definition of
HAVE_C_TYPE_SOCKLEN_T, which is unused.
2005-05-14 Roland Illig <[email protected]>
* syntax/diff.syntax: Lines starting with a <tab> character are
displayed like lines starting with a <space>. This is for the
cvs diff -T option.
* syntax/makefile.syntax: Highlight $$ (a literal $) in
brightcyan. This way $${var} is not highlighted as if it were a
Makefile variables. Also added useful comments before the contexts.
2005-05-13 Pavel Roskin <[email protected]>
* configure.ac: Require Autoconf 2.53 or newer.
* m4/Makefile.am: Remove isc-posix.m4, it's obsolete.
* m4/isc-posix.m4: Remove.
2005-05-13 Nerijus Baliunas <[email protected]>
* lib/mc.ext.in: Add OpenOffice.org 2 extensions, use o3totxt
to view OpenOffice.org documents.
2005-05-11 Pavel Roskin <[email protected]>
* acinclude.m4: Remove MC_ARG_ENABLE_DEVELOPER_MODE.
* configure.ac: Replace MC_ARG_ENABLE_DEVELOPER_MODE with a
simpler and more user-friendly piece of code.
2005-05-01 Roland Illig <[email protected]>
* syntax/c.syntax: Added missing punctuation characters.
2005-04-28 Pavel Roskin <[email protected]>
* syntax/Syntax: Don't highlight csh scripts. Allow using
"/usr/bin/env" instead of the full path.
2005-04-27 Leonard den Ottolander <leonard * den ottolander nl>
* AUTHORS: Added Pavel Shirshov and myself as contributors.
2005-04-26 Roland Illig <[email protected]>
* acinclude.m4: Renamed AS_HELP_STRING to AC_HELP_STRING for
compatibility with autoconf-2.57.
2005-04-22 Roland Illig <[email protected]>
* acinclude.m4: Added macro MC_ARG_ENABLE_DEVELOPER_MODE.
* configure.ac: Using MC_ARG_ENABLE_DEVELOPER_MODE instead of
the --maintainer-mode.
2005-04-17 Leonard den Ottolander <leonard * den ottolander nl>
* syntax/eiffel.syntax: dos2unix; removed redundant cooledit
colour definitions.
* syntax/perl.syntax: Removed redundant cooledit definitions.
* syntax/php.syntax: ' ' and " " context fixes.
* syntax/syntax.syntax: Removed 2 duplicate lines.
2005-04-16 Roland Illig <[email protected]>
* lib/mc.ext.in: Recognize either *.udeb or *.deb as Debian
packages. Fixes Savannah patch #3899.
2005-04-14 Leonard den Ottolander <leonard * den ottolander nl>
* syntax/Syntax: Catch Makefiles with capitals in the extension.
2005-04-14 Roland Illig <[email protected]>
* doc/mc.1.in (Internal File Viewer): Rewrote some documentation.
Removed the paragraph about the growing buffers. It's generally
uninteresting to users.
2005-04-13 Roland Illig <[email protected]>
* configure.ac: Add -DNDEBUG to CPPFLAGS if the maintainer mode
is not enabled.
2005-03-19 Pavel Roskin <[email protected]>
* acinclude.m4 (MC_WITH_SLANG): Partly restore original order of
checks and add a comment with a warning.
From Pavel S. Shirshov <[email protected]>
* acinclude.m4 (MC_WITH_SLANG): Reorder checks. Move termcap
checks ...
(MC_SLANG_TERMCAP): ... here.
(MC_SLANG_PRIVATE): Check if private functions are available.
It's not the case on Debian unstable.
2005-03-19 Pavel S. Shirshov <[email protected]>
* syntax/idl.syntax: Add syntax file for the CORBA idl.
From Ian Zagorskih <[email protected]>
* syntax/lua.syntax: Add syntax file for the LUA programming language.
From Mike Gorchak <[email protected]>
* syntax/Syntax: Add syntax file for CORBA idl and lua.
* syntax/Makefile.am: Likewise.
* mc.qpg.in: Likewise.
* NEWS: Likewise.
2005-03-19 Pavel Roskin <[email protected]>
* acinclude.m4 (MC_WITH_SLANG): Define HAVE_SYSTEM_SLANG after
all fallbacks so it shows whether we are using system S-Lang.
* configure.ac: Remove USE_INCLUDED_SLANG, since it's now fully
dependent on HAVE_SLANG and HAVE_SYSTEM_SLANG.
* src/myslang.h: Likewise.
2005-03-18 Mike Gorchak <[email protected]>
* syntax/assembler.syntax: Add syntax file for the x86 assembler.
* syntax/povray.syntax: Add syntax file for the POVRay.
* syntax/Syntax: Add syntax file for x86 assembler and POVRay.
* syntax/Makefile.am: Likewise.
* mc.qpg.in: Likewise.
* NEWS: Likewise.
2005-03-14 Leonard den Ottolander <leonard * den ottolander nl>
* syntax/diff.syntax: Changed default color from gray, which was
quite unreadable, to a bright yellow.
2005-03-10 Roland Illig <[email protected]>
* autogen.sh: Made the gettext version check more portable. The
actual sed command is unchanged.
2005-02-26 Miguel de Icaza <[email protected]>
* doc/mc.1.in: Replace M-char with Alt-char everywhere, which is
simpler to understand.
2005-01-29 Miguel de Icaza <[email protected]>
* configure.ac: Check for getgrouplist API call.
2005-02-07 Roland Illig <[email protected]>
* NEWS: Added the changes between mc-4.6.1-pre3 and now.
2005-01-27 Roland Illig <[email protected]>
* configure.ac: Add checks for C headers <sys/mkdev.h> and
<sys/sysmacros.h> to support major/minor arithmetics on
device numbers.
2005-01-11 Pavel S. Shirshov <[email protected]>
* acinclude.m4: Fix '--with-screen' configure option.
2004-12-30 Andrew V. Samoilov <[email protected]>
* autogen.sh: Fix workaround for automake 1.5.
2004-12-28 Leonard den Ottolander <leonard * den ottolander nl>
* syntax/spec.syntax: Set whole on spec macro option keywords.
2004-12-13 Pavel S. Shirshov <[email protected]>
* acinclude.m4: Fix "make distcheck".
2004-12-12 Pavel S. Shirshov <[email protected]>
* NEWS: Update.
2004-12-10 Pavel S. Shirshov <[email protected]>
* autogen.sh: Comment workaround for Automake 1.5. It's not working
for Automake 1.9.
2004-12-07 Roland Illig <[email protected]>
* syntax/Makefile.am: Don't install syntax highlighting files if
the internal editor is disabled.
2004-12-03 Pavel S. Shirshov <[email protected]>
* configure.ac: Bump version to 4.6.1a
2004-11-17 Pavel S. Shirshov <[email protected]>
* acinclude.m4: Fix compiling mc with system slang on FreeBSD.
2004-11-16 Roland Illig <[email protected]>
* TODO: Checked the remaining vfs/extfs shell scripts and
removed them from the TODO list. This was the last item
in the section "Before 4.6.1", so I deleted the whole
section.
2004-11-08 Pavel S. Shirshov <[email protected]>
* TODO (4.6.2): Fix the '#' in path names issue.
2004-11-07 Roland Illig <[email protected]>
* TODO (4.6.1): Moved the '#' in path names issue to 4.6.2.
* TODO: Added issue about hiding passwords in VFS pathnames.
2004-11-05 Andrew V. Samoilov <[email protected]>
* README: Fix typo.
2004-11-04 Mike Gorchak <[email protected]>
* mc.qpg.in: Synchronization with the latest file has been added
to the distro.
* configure.ac: Added information about status of charset enabling.
* syntax/Syntax: Treat QNX6 specific files with extensions qpg and
qpg.in as xml files.
2004-11-02 Roland Illig <[email protected]>
* configure.ac: Add feature test whether socklen_t is defined
in <sys/socket.h>.
2004-10-28 Jindrich Novy <[email protected]>
* lib/mc.ext.in: Add a few sound formats that "play" and "mikmod"
utility knows.
2004-10-27 Roland Illig <[email protected]>
* configure.ac: Add check for type socklen_t.
2004-10-27 Juan C. Olivares <[email protected]>
* syntax/aspx.syntax: Add syntax file for ASP.NET.
* syntax/Syntax: Likewise.
* syntax/Makefile.am: Likewise.
2004-10-27 Pavel S. Shirshov <[email protected]>
* TODO: Move entry 'Broken pipe warning...' to 4.6.2 TODO list.
Remove entries for perl extfs scripts.
2004-10-24 Roland Illig <[email protected]>
* configure.ac: Only add "-Wall" to CFLAGS if GCC is set to "yes".
2004-10-23 Roland Illig <[email protected]>
* TODO: Check proper quoting in vfs/extfs/*.
2004-10-20 Pavel S. Shirshov <[email protected]>
* lib/mc.ext.in: Use xmms for audio files in XWindows mode.
Add support for *.wma files. Add support for playlists.
Partially based on patch from q# <[email protected]>
2004-10-18 Roland Illig <[email protected]>
* TODO: Some new TODO items with low priority: More standard
widgets, CVS frontend, patch editor, context menus.
2004-10-16 Roland Illig <[email protected]>
* TODO: Fixed the "./ files in tar archive" item for mc-4.6.1.
2004-10-16 Roland Illig <[email protected]>
* syntax/eiffel.syntax: Add syntax highlighting rules for the
Eiffel programming language.
* syntax/Syntax: Bind *.e with eiffel.syntax.
* syntax/Makefile.am: Added syntax.eiffel.
From Daniel F Moisset <dmoisset grulic org ar>
2004-10-12 Pavel S. Shirshov <[email protected]>
* syntax/sql.syntax: Improve sql.syntax file and added several
keywords.
From Karel Zak
2004-10-12 Andrew V. Samoilov <[email protected]>
* acinclude.m4 (MC_WITH_MCSLANG): Set screen_type to mcslang.
* configure.ac: Define USE_INCLUDED_SLANG if screen_type is mcslang.
2004-10-05 Gergely Sza'sz <[email protected]>
* syntax/perl.syntax: Fix highlight the hashes.
* syntax/diff.syntax: Highlight comments (lines begin with #),
and garbage in diff files.
2004-09-17 Dmitry Alexeyev <[email protected]>
* mc.qpg.in: New file. Description for QNX 6.x packager.
2004-09-25 Roland Illig <[email protected]>
* configure.ac: #define _GNU_SOURCE to an empty value instead of 1,
which conflicted with src/regex.c.
2004-09-24 Roland Illig <[email protected]>
* HACKING (Programming tips): Added a tip concerning the NULL
pointer in varargs function calls.
2004-09-22 Roland Illig <[email protected]>
* HACKING: Added advice for using g_strdup for a modifiable
copy of a string.
* HACKING: Added a section about where to look for bug reports
and patches.
2004-09-19 Roland Illig <[email protected]>
* HACKING: Added explanation for const_cast.
2004-09-17 Dmitry Alexeyev <[email protected]>
* syntax/makefile.syntax: Adds "define" and "ended" keywords
* syntax/perl.syntax: Adds "break" keyword
2004-09-10 Jakub Jelinek <[email protected]>
* lib/mc.lib: Add gnome, rxvt and xterm-new terminals.
2004-09-10 Pavel S. Shirshov <[email protected]>
* syntax/php.syntax: Upgrade php.syntax file.
From Leonard den Ottolander <leonard * den.ottolander.nl>
2004-09-04 Jakub Jelinek <[email protected]>
* configure.ac: grantpt is only available with -D_XOPEN_SOURCE
or -D_GNU_SOURCE under Linux.
2004-09-04 Pavel S. Shirshov <[email protected]>
* HACKING: Add to section "Programming Tips" g_free tip.
2004-09-02 Roland Illig <[email protected]>
* HACKING: Added a section "Programming Tips" which lists mistakes
that have been done once and should never be repeated.
2004-08-29 Roland Illig <[email protected]>
* m4/ri-gcc-warnings.m4: Now handles only the last --enable or
--disable option. Before, --disable has not been handled
correctly.
2004-08-22 Pavel S. Shirshov <[email protected]>
* m4/ri-gcc-warnings.m4: Using AC_HELP_STRING for more portable.
AS_HELP_STRING was introduced after autoconf 2.57+.
From Leonard den Ottolander <leonard * den.ottolander.nl>
2004-08-18 Roland Illig <[email protected]>
* "make uninstall": removes the symlinks bin/mcedit and bin/mcview.
2004-08-17 Roland Illig <[email protected]>
* configure.ac: The GCC warning flags are only used in
maintainer-mode.
2004-08-17 Pavel S. Shirshov <[email protected]>
* lib/cedit.menu: Security fix patch. Fix insecure temporary file and
directory creations. (CAN-2004-0231).
* lib/mc.menu: Likewise.
* doc/mc.1.in: Likewise.
* doc/es/mc.1.in: Likewise.
* doc/hu/mc.1.in: Likewise.
* doc/it/mc.1.in: Likewise.
* doc/pl/mc.1.in: Likewise.
* doc/ru/mc.1.in: Likewise.
* doc/sr/mc.1.in: Likewise.
2004-08-09 Andrew V. Samoilov <[email protected]>
* configure.ac: Add check for atoll().
* doc/mc.1.in (Extension File Edit): Document "directory" keyword.
* doc/ru/mc.1.in: Likewise.
2004-08-02 Pavel Shirshov <[email protected]>
* autogen.sh: Fix unportable "\n" in sed.
2004-04-02 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Use gqview instead of ee for images. ee seems
to be obsolete. Suggested by Marcel Pol <[email protected]>
2004-01-22 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Recognize *.tb2 and *.tbz files.
* configure.in: Rename to ...
* configure.ac: ... this.
2003-12-30 David Martin <[email protected]>
* doc/mc.1.in: Synchronized latest fixes (long options) and
moved year and version number.
2003-12-24 Pavel Roskin <[email protected]>
* configure.in: Release 4.6.1-pre1.
2003-11-28 Pavel Roskin <[email protected]>
* acinclude.m4 (MC_UNDELFS_CHECKS): Try ext2fs/ext2_fs.h before
linux/ext2_fs.h. Use ext2fs/ext2_fs.h when possible - it's
safer to avoid kernel headers.
2003-11-27 Pavel Roskin <[email protected]>
* src/TODO: Move ...
* TODO: ... here.
* doc/DEVEL: Move ...
* HACKING: ... here. Adjust makefiles.
2003-11-20 Pavel Roskin <[email protected]>
* build-glib1.sh: Use more portable syntax for functions. Fall
back to "ftp" for download, useful on BSD.
* build-glib2.sh: Likewise.