forked from MidnightCommander/mc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
2798 lines (1856 loc) · 87.3 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
2002-09-29 Pavel Roskin <[email protected]>
* configure.in: Remove the argument from --with-gpm-mouse. The
directories for include files and libraries can be specified
using LDFLAGS and CPPFLAGS, as documented in the output of
"configure --help".
* configure.in: Complete rewrite of the screen library support.
Add new option --with-screen instead on --with-slang,
--with-included-slang and --with-ncurses. Only allow
--with-termcap is using the included S-Lang library.
* aclocal.m4: Corresponding changes.
* syntax/mail.syntax: Replace "wholechars right" and "wholechars
left" with single "wholechars".
* syntax/nroff.syntax: Likewise.
* syntax/sh.syntax: Likewise.
* syntax/tcl.syntax: Likewise.
* syntax/*.syntax: Remove numeric Cooledit colors. It's
unreasonable to require them to be correct. On the other hand,
Cooledit can easily be changed to accept named color names.
* syntax/syntax.syntax: Don't require Cooledit colors for
highlighting color names. Remove Cooledit colors.
* syntax/m4.syntax: Don't use yellow color on parentheses, since
it interferes with parentheses highlighting. Remove list of
supported Autoconf macros.
2002-09-26 Pavel Roskin <[email protected]>
* syntax/syntax.syntax: Remove highlighting for numbers - it's
for Cooledit only.
* syntax/c.syntax: Require at least one space at the beginning
of indented cpp directives. Use brightmagenta for them.
* syntax/syntax.syntax: Don't start keywords with "\[" - it
doesn't work. Use "\[\]" at the end of keywords to suppress
their special meaning.
2002-09-22 Pavel Roskin <[email protected]>
* doc/Makefile.am: Remove width from the man2hlp command line.
The same for translations.
* configure.in: Remove support for HSC proxy - it's obsolete.
Remove all references to HSC proxy everywhere.
2002-09-21 Pavel Roskin <[email protected]>
* configure.in: Bump version to 4.6.0-pre1b.
* doc/hu/mc.hlp.hu: Rename to ...
* doc/hu/mc.hlp.hu.in: ... this. Adjust paths.
* configure.in: Substitute doc/hu/mc.hlp.hu.
* doc/hu/Makefile.am: Don't distribute mc.hlp.hu.
* doc/mc.1.in: Update path to the data files. Rename MC_LIBDIR
to MC_DATADIR. Make the same changes in the translations.
* */Makefile.am: Replace mclibdir with pkgdatadir to use "share"
directory for architecture-independent files.
2002-09-19 Pavel Roskin <[email protected]>
* syntax/m4.syntax: New file.
* syntax/Syntax: Add m4.syntax.
* syntax/Makefile.am: Likewise.
From Vlad Romanenko <[email protected]>
* syntax/sql.syntax: Only recognize non-standard MySQL comments
at the beginning of line.
2002-09-19 Andrew V. Samoilov <[email protected]>
* syntax/syntax.syntax: Add "linestart" for "context",
"context default" and "context exclusive" keywords.
* syntax/c.syntax: Fix "%s" highlighting for "%-19s"
and "%5.5s" formats.
2002-09-18 Pavel Roskin <[email protected]>
* syntax/Syntax: Remove gobledy_gook at the beginning. Move
rules for syntax files ...
* syntax/syntax.syntax: ... here. Add "linestart" for "file"
and "include" keywords.
* syntax/Makefile.am: Add syntax.syntax.
2002-09-17 Vlad Romanenko <[email protected]>
* syntax/js.syntax: Advanced number highlighting.
2002-09-17 Pavel Roskin <[email protected]>
* syntax/c.syntax: Highlight "?" by the same color as ":".
* syntax/java.syntax: Likewise.
* syntax/swig.syntax: Likewise.
* syntax/python.syntax: Remove duplicate keyword ":".
* Makefile.am: Add m4 to SUBDIRS. Set ACLOCAL_AMFLAGS so that
m4 directory is used by aclocal.
* m4/Makefile.am: New file.
* configure.in: Substitute m4/Makefile.
* autogen.sh: Don't copy any macro files, use m4 directory.
* syntax/Makefile.am: Add js.syntax.
* configure.in: Add support for glib 2.x. Right now, it has to
be explicitly enabled by `--with-glib2'.
From Ali Akcaagac <[email protected]>
2002-09-16 Pavel Roskin <[email protected]>
* syntax/js.syntax: New file.
* syntax/Syntax: Add js.syntax.
From Vlad Romanenko <[email protected]>
2002-09-16 Andrew V. Samoilov <[email protected]>
* doc/pl/Makefile.am: Use $(top_srcdir)/doc/xnc.hlp instead
of local xnc.hlp
* doc/pl/xnc.hlp: Removed.
2002-09-13 Pavel Roskin <[email protected]>
* configure.in: Add AM_GNU_GETTEXT_VERSION for autopoint.
Remove "potfiles" command.
* acinclude.m4: Add empty AM_GNU_GETTEXT_VERSION definition for
compatibility with gettext 0.10.x.
* autogen.sh: Use autopoint for gettext 0.11.5 and above. Don't
allow gettext versions from 0.10.40 to 0.11.5 (not inclusive).
* po/Makevars: New file for compatibility with gettext 0.11.x.
* configure.in: Remove "Debugger code" message.
* acinclude.m4: Replace undelfs_o with use_undelfs.
* configure.in: Likewise. Don't substitute it.
* configure.in: Simplify processing of without-edit. Replace
several variables with use_edit.
* acinclude.m4: Remove AC_WITH_EDIT.
* acinclude.m4: Replace smbfs and SAMBAFILES variables with
use_smbfs.
* configure.in: Likewise.
* INSTALL: Document --with-samba.
* configure.in: Roll --enable-mcserv-install into ...
* acinclude.m4: ... --with-mcfs. Adjust makefiles.
* INSTALL: Document --with-mcfs.
2002-09-12 Pavel Roskin <[email protected]>
* configure.in: Don't check if crypt() prototype is needed to
avoid warnings - the whole code is not worth avoiding one
legitimate warning.
* acinclude.m4: Remove AC_TRY_WARNINGS.
* configure.in: ALL_LINGUAS should be defined unconditionally.
* acinclude.m4: Clarify some help texts, add defaults in square
brackets, use more consistent spacing.
* configure.in: Likewise.
* lib/mc.menu: Don't call tarballs "releases". Don't
dereference symlinks.
2002-09-10 Pavel Roskin <[email protected]>
Globally replace OS2_NT and _OS_NT with WIN32_NATIVE.
2002-09-07 Pavel Roskin <[email protected]>
* configure.in: Eliminate --with-terminfo option, which was
essentially equivalent to --with-included-slang and didn't force
anything.
* acinclude.m4 (AC_USE_TERMINFO): Remove.
* INSTALL: Adjust to match.
* FAQ: Likewise.
2002-09-05 Pavel Roskin <[email protected]>
* configure.in: Fix USE_VFS_NET conditional. Don't substitute
NETFILES - it's unused.
* configure.in: Check for arpa/inet.h.
* mcfn_install: Remove. Also remove all references to it.
* INSTALL.FAST: Update information about ncurses.
From Dmitry Semyonov <[email protected]>
* acinclude.m4 (AC_USE_TERMCAP): Add -ltermcap to MCLIBS, not
LIBS.
* configure.in: Eliminate MCCFLAGS, use CPPFLAGS instead. Add
"-L" options to LDFLAGS, not to LIBS or MCLIBS - this should fix
test for ncurses in non-standard directories.
2002-09-04 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Remove edit rules for compressed files that
were compressing even unchanged files - the editor itself can
handle compression better.
2002-09-03 Pavel Roskin <[email protected]>
* acinclude.m4: Remove Termnet support, it's too old and obscure
to be supported properly.
2002-08-27 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Add new OpenOffice.org formats. Always use
OpenOffice.org, not StarOffice. Add more video formats.
* lib/mc.ext.in: Use gzip instead of gunzip and compress. Avoid
unnecessary pipeline. Redirect stderr from cpio, because it can
be non-empty even for successful operations.
2002-08-26 Pavel Roskin <[email protected]>
* syntax/spec.syntax: New file.
* syntax/Syntax: Add spec.syntax.
* syntax/Makefile.am: Likewise.
From PLD Linux Distribution with minor changes.
2002-08-25 Pavel Roskin <[email protected]>
* lib/mcserv.init: Update from Red Hat package.
* lib/mcserv.pamd: Likewise.
* configure.in: Fix interpretation of the iconv test result.
Reported by Pavel Shirshov <[email protected]>
* mc.sh.in: Only bash needs the mc() function to be exported.
* doc/pl/mc.1.in: Add node names and options. Use @prefix@
instead of /usr where appropriate.
* doc/Makefile.am: Enable generation of the help file.
* doc/pl/*: Add Polish translation.
* doc/Makefile.am: Adjust for the above.
* configure.in: Likewise.
2002-08-24 Pavel Roskin <[email protected]>
* lib/edit.indent.rc: Use tidy to format HTML.
From David Martin <[email protected]>
* lib/cedit.menu: Remove all references to the error file.
* lib/edit.indent.rc: Likewise.
* lib/edit.spell.rc: Likewise.
2002-08-23 Pavel Roskin <[email protected]>
* configure.in: Make GLIB_LIBS a separate AC_SUBST'ed variable,
use only for the programs that need it (mc and mcserv).
* configure.in: Fix help text for gpm and ncurses. Properly
handle --without-ncurses.
Reported by Moritz Barsnick <[email protected]>
* configure.in: Work around a bug in Autoconf-2.53 that prevents
splitting of user-specified path in AC_PATH_PROGS.
* configure.in: Move glib test earlier, as it tends to fail for
many users. Make GLIB_CONFIG a precious variable. Check for
glib12-config - that's how it's called on FreeBSD.
Reported by Pavel Shirshov <[email protected]>
2002-08-22 Pavel Roskin <[email protected]>
* configure.in: Remove old-style Linux-only support for shadow
passwords.
2002-08-21 Pavel Roskin <[email protected]>
* configure.in: Restore AM_INIT_AUTOMAKE with two arguments for
now, otherwise Automake 1.5 breaks. Remove version number from
AC_INIT, the version from AM_INIT_AUTOMAKE takes preference.
Substiture RH_VERSION, which is VERSION without dashes, needed
for RedHat specfile.
* configure.in: Bump version to 4.6.0-pre1a. Don't use
arguments in AM_INIT_AUTOMAKE to avoid defining the version in
two places.
Release mc-4.6.0-pre1.
* configure.in: Bump version to 4.6.0-pre1.
* po/*.po: Regenerate.
2002-08-20 David Martin <[email protected]>
* doc/es/mc.1.in: Minor changes.
* doc/es/xnc.hlp: Likewise.
2002-08-20 Andrew V. Samoilov <[email protected]>
* mc.spec.in: Add /usr/lib/mc/mc.charsets and
%{_mandir}/*/man1/*.
2002-08-20 Pavel Roskin <[email protected]>
* doc/it/mc.1.in (Controlling Midnight Commander): Remove.
2002-08-19 Pavel Roskin <[email protected]>
* configure.in: Add Italian documentation.
* doc/Makefile.am: Likewise.
* acinclude.m4 (MC_WITH_VFS): Disable mcfs by default.
* configure.in: Enable subshell support on all operating systems
by default. Old issues are most likely solved by now.
2002-08-18 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Try links before lynx. Force full path when
invoking X11 browsers - it breaks VFS, but VFS support in mc.ext
is already broken if the program starts in background. Add a
comment discouraging taking this code as example.
* doc/mc.1.in (Controlling Midnight Commander): Remove, it's
obsolete.
* doc/es/mc.1.in: Likewise.
* doc/ru/mc.1.in: Likewise.
* doc/hu/mc.hlp.hu: Likewise.
* lib/mc.menu: Remove all references to $MC_CONTROL_FILE, which
was unsafe by design and is no longer supported. Use %t instead
of %u to preserve tags in case of failure.
* vfs/extfs/ftplist.in: Remove support for running commands, it
makes no sence.
2002-08-16 Pavel Roskin <[email protected]>
* lib/mc.global: Remove, it duplicates the role of mc.lib.
* lib/mc.lib: Add contents of mc.global.
* lib/Makefile.am: Remove all references to mc.global.
* syntax/sh.syntax: Fix highlighting of "<<-EOF".
Reported by Andrew V. Samoilov <[email protected]>
2002-08-16 Andrew V. Samoilov <[email protected]>
* syntax/sh.syntax: Highlight alias, bg, eval, exec, export, fg,
set, umask and unset like other builtin commands.
2002-08-15 Pavel Roskin <[email protected]>
* configure.in: Remove check for SIGTSTP, it's not needed for
the subshell support.
* acinclude.m4 (AC_SHORT_D_NAME_LEN): Remove, this test is now
done at runtime.
* configure.in: Don't use AC_SHORT_D_NAME_LEN.
2002-08-14 Andrew V. Samoilov <[email protected]>
* doc/ru/mc.1.in: Remove reference to README.edit.
* doc/mc.1.in: Likewise.
* doc/hu/mc.hlp.hu: Likewise. Remove /var/tmp/mc-4.5.46-buildroot
everywhere.
2002-08-14 Pavel Roskin <[email protected]>
* doc/mc.1.in: Consistently use "native" ftp syntax.
* doc/ru/mc.1.in: Likewise.
* doc/es/mc.1.in: Update from David Martin <[email protected]>
* doc/es/xnc.hlp: Likewise.
* lib/mc.hlp.hu: Move ...
* doc/hu/mc.hlp.hu: ... here. Make all necessary adjustments.
2002-08-09 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Remove all unrecognized actions (e.g. Extract)
and entries that are obsolete or make no sence.
* doc/xnc.hlp: Add translatable titles for topics "QueryBox" and
"How to use help".
* doc/Makefile.am: Don't distribute help file. Generate it in
the build directory.
* doc/es/Makefile.am: Likewise.
* doc/ru/Makefile.am: Likewise.
* lib/xnc.hlp: Move ...
* doc/xnc.hlp: ... here.
* doc/Makefile.am: Necessary adjustments.
* lib/Makefile.am: Likewise.
* src/Makefile.am: Likewise.
* configure.in: Add Spanish documentation.
* doc/Makefile.am: Likewise.
* doc/es: Spanish documentation.
From David Martin <[email protected]>
2002-08-08 Pavel Roskin <[email protected]>
* lib/mc.lib: Add f11-f20 keys for Konsole.
2002-08-06 Pavel Roskin <[email protected]>
* syntax/lisp.syntax: New file.
* syntax/Syntax: Add lisp.syntax.
* syntax/Makefile.am: Likewise.
From Mykolas Juraitis <[email protected]> with minor
changes.
2002-08-04 Pavel Roskin <[email protected]>
* configure.in: Check for SIGTSTP and SIGCONT signals. Disable
subshell if this test fails.
2002-08-03 Pavel Roskin <[email protected]>
* syntax/mail.syntax: Colors changed to be more readable.
* syntax/html.syntax: Don't require character entities to be
whole, but check their validity.
2002-08-02 Pavel Roskin <[email protected]>
* configure.in: No longer need to define REGEX_MALLOC.
2002-08-01 Pavel Roskin <[email protected]>
* configure.in: Remove support for MAD and Electric Fence.
Developers should use modern memory debuggers (e.g. Valgrind).
* INSTALL: Remove references to MAD.
2002-07-31 Pavel Roskin <[email protected]>
* syntax/html.syntax: Remove recognition for any individual
words - there are too many of them, we cannot keep up.
2002-07-30 Pavel Roskin <[email protected]>
* doc/ru/Makefile.am: Use man2hlp directly.
2002-07-28 Pavel Roskin <[email protected]>
* syntax/changelog.syntax: Highlight "*" only after tab. This
requires fixed syntax highlighting.
* lib/mc.ext.in: Open *.doc and *.rtf files with abiword by
default. Open *.xls with gnumeric. Use mplayer for most video
formats.
* syntax/nroff.syntax: Require most keywords to be whole.
2002-07-21 Pavel Roskin <[email protected]>
* syntax/fortran.syntax: Fix highlighting of "*" at the
beginning of line. Recognize " +" as continuation. Move
all "linestart" keywords earlier to avoid more conflicts.
2002-07-18 Pavel Roskin <[email protected]>
* syntax/unknown.syntax: Don't highlight anything by default.
* syntax/changelog.syntax: Highlight functions without
filenames.
* syntax/Syntax: Match *ChangeLog*.
* syntax/c.syntax: Reenable highlighting for "/" and preserve
highlighting for "//" comments by using exclusive context.
* syntax/java.syntax: Likewise.
* syntax/swig.syntax: Likewise.
* syntax/slang.syntax: Reenable highlighting for "/".
* syntax/sql.syntax: Enable highlighting for "/" and "-".
* syntax/sql.syntax: New file.
* syntax/Syntax: Add sql.syntax.
* syntax/Makefile.am: Likewise.
From Walery Studennikov <[email protected]> with minor changes.
2002-07-16 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Remove handling of executables. They should
be handled internally for "pause after run" to work.
* syntax/Syntax: Associate *.itcl with tcl.syntax.
* syntax/tcl.syntax: Add itcl keywords, other improvements.
2002-07-15 Pavel Roskin <[email protected]>
* configure.in: Don't check for strcasecmp(), strncasecmp() and
strdup() - test results are not used except in gettext, which
provides its own tests.
* configure.in: When checking for ncurses, check for
has_colors(), not curses_version() - the later is missing in
older version of ncurses.
2002-07-13 Pavel Roskin <[email protected]>
* acinclude.m4 (AC_EXT2_UNDEL): Add ext2fs libraries to MC_LIBS,
not to LIBS.
* configure.in: Fix breakage in ncurses headers check from the
previous commit. Simplify other instances of AC_CHECK_HEADERS.
Define REGEX_MALLOC here.
* acinclude.m4 (AC_NCURSES): Remove.
* configure.in: Use AC_CHECK_HEADERS to find ncurses headers and
AC_CHECK_LIB to check existance of ncurses library. Eliminate
variables force_ncurses and search_ncurses.
2002-07-10 Pavel Roskin <[email protected]>
* configure.in: Remove --with-netrc, it is now default and can
be disabled at the runtime.
* syntax/tcl.syntax: New file.
* syntax/Syntax: Add tcl.syntax.
* syntax/Makefile.am: Likewise.
* syntax/java.syntax: Don't treat #define separately from other
preprocessor directives.
* syntax/slang.syntax: Likewise.
* syntax/swig.syntax: Likewise.
2002-07-09 Pavel Roskin <[email protected]>
* syntax/c.syntax: Don't treat #define separately from other
preprocessor directives.
2002-07-08 Pavel Roskin <[email protected]>
* syntax/perl.syntax: Highlight text after __END__ as a comment.
* syntax/po.syntax: Avoid gray color, which is hard to see.
2002-07-05 Pavel Roskin <[email protected]>
* syntax/dos.syntax: Add more commands.
2002-07-04 Pavel Roskin <[email protected]>
* AUTHORS: Add Andrew V. Samoilov <[email protected]>, alphabetically
sort authors.
2002-06-24 Pavel Roskin <[email protected]>
* syntax/dos.syntax: New file - highlighting for DOS batch
files. From Petr Kozelka <[email protected]>
* syntax/Syntax: Add dos.syntax.
* syntax/Makefile.am: Likewise.
2002-06-04 Max Schedriviy <[email protected]>
* syntax/php.syntax: New version.
2002-05-23 Andrew V. Samoilov <[email protected]>
* NEWS: Mention ftpfs/fish uploading changes and new configure
options --with-codepagedir=DIR, --with-configdir=DIR and
--without-mcfs.
2002-05-22 Pavel Roskin <[email protected]>
* doc/ru/Makefile.am: Fix out-of-tree build.
2002-05-14 Pavel Roskin <[email protected]>
* configure.in: Fix logic for gettext 0.10.x.
2002-05-14 Andrew V. Samoilov <[email protected]>
* configure.in: Don't generate po/Makefile if
there is 'top_builddir' in po/Makefile.in.
* autogen.sh: More fixes for gettext 0.11+.
2002-05-08 Andrew V. Samoilov <[email protected]>
* configure.in (ALL_LINGUAS): Added "be" for Belarusian.
2002-04-21 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Add support for *.rmi files - latest TiMidity++
can play them.
2002-04-09 Andrew V. Samoilov <[email protected]>
* autogen.sh: Fix for gettext 0.11 family (and newer).
2002-04-08 Pavel Roskin <[email protected]>
* autogen.sh: Allow gettext newer than 0.10.39.
From Björn Eriksson <[email protected]>
2002-04-03 Pavel Roskin <[email protected]>
* doc/ru/Makefile.am: Distribute mc.ru.hlp and don't remove it
by "make clean" because not everyone has Perl to rebuild it.
2002-03-27 Andrew V. Samoilov <[email protected]>
* syntax/Syntax: Replace ^Syntax$ with [Ss]yntax$ and add
first line regular expression.
2002-03-26 Andrew V. Samoilov <[email protected]>
* configure.in: Define USE_INCLUDED_REGEX if GNU C library 2.1
or newer is not used.
* acinclude.m4: New option --with-mcfs and macro WITH_MCFS.
* src/Makefile.am: Move mc.hlp.ru processing ...
* doc/ru/Makefile.am: ... here.
2002-03-21 Andrew V. Samoilov <[email protected]>
* syntax/Syntax: Match ^Syntax$ for Syntax Highlighting.
* syntax/c.syntax: Highlight "%p" printf format.
Allow '*' as width and precision for strings and numbers.
* doc/mc.1.in: Fix smbfs example. Minor format fixes.
* doc/ru/mc.1.in: Likewise.
2002-03-18 Pavel Roskin <[email protected]>
* doc/ru/Makefile.am: Distribute xnc.hlp.
2002-03-12 Pavel Roskin <[email protected]>
* doc/Makefile.am: Adjust for doc/ru/Makefile.am.
2002-03-12 Andrew V. Samoilov <[email protected]>
* configure.in (AC_CONFIG_FILES): Add doc/ru/Makefile.am.
* doc/ru/Makefile.am: New file.
2002-03-08 Pavel Roskin <[email protected]>
* doc/Makefile.am (EXTRA_DIST): Distribute doc/ru/mc.1.
2002-03-04 Andrew V. Samoilov <[email protected]>
* configure.in (AC_CONFIG_FILES): Add doc/ru/mc.1.
2002-03-01 Andrew V. Samoilov <[email protected]>
* doc/mc.1.in: Use nodename `Background jobs' for section
`Background Jobs' to reflect user visible Command menu option
and src/cmd.c dialog implementation.
* doc/ru: New directory for Russian manuals.
* doc/ru/mc.1.in: Translated mc.1 manual page. Originally
translated by Victor A. Kostromin for mc 4.5.30. Converted
from binary mc.hlp.ru, corrected and actualized by me.
* doc/ru/xnc.hlp: Translated lib/xnc.hlp. See above.
* doc/ru/.cvsignore: Ignore mc.1.
2002-02-27 Andrew V. Samoilov <[email protected]>
* doc/mc.1.in (Macro Substitution): Document "%var{ENV-default}".
(FILES): Document changes in mc behavior. ~/.mc/ini now overrides
mc.lib settings.
(Virtual File System): Document SMB File System.
2002-02-26 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Run "file" before "nm" to avoid an error
message "no symbol found" for unsupported architectures and
provide more useful information.
2002-02-22 Pavel Roskin <[email protected]>
* README.smbfs: Remove. It contained no useful information
and the webpage is now dead.
* Makefile.am: Remove README.smbfs.
* README: Mention that glib 1.2.x is required.
2002-02-21 Andrew V. Samoilov <[email protected]>
* lib/edit.indent.rc: Use "#! /bin/sh"
* lib/edit.spell.rc: Likewise.
* lib/mcserv.init: Likewise.
* lib/cedit.menu: Eliminate bashisms.
Add missed `:' in AUTHOR evaluation.
Unset LANGUAGE and make LC_ALL empty.
Use "#! /path/to/program".
2002-02-20 Andrew V. Samoilov <[email protected]>
* doc/mc.1.in (FILES): Use ~/.mc/bindings instead of
~/.mc/ext, ~/.mc/ini instead of ~/.mc.ini.
Fix tarfs URL syntax example. Minor typo and format fixes.
2002-02-14 Andrew V. Samoilov <[email protected]>
* doc/mc.1.in (FILES): Use MC_LIBDIR instead of MCHOME.
Fix location of configuration files.
2002-02-05 Pavel Roskin <[email protected]>
* configure.in: Don't use defunct ncurses_version.
Reported by Thomas Dickey <[email protected]>
Set force_ncurses whenever --with-ncurses is used. If set,
suppress checks for S-Lang and fail is ncurses is not found.
* configure.in: Introduce a new variable screen_type that is
either "slang" or "ncurses" without additional text. Use it
instead of screen_manager whenever possible. Fix text in
AC_NCURSES call, use m4 quotes and move shell quotes into the
macro.
* acinclude.m4: Likewise.
2002-01-28 Petr Kozelka <[email protected]>
* syntax/Syntax: Known Delphi/Kylix source file extensions
supported (*.dpr, *.inc).
* syntax/pascal.syntax: Many new (Delphi/Kylix) keywords added.
Special highlighting for CVS keywords. Understands single-line
comments (//).
2002-01-24 Alexander Shopov <[email protected]>
* configure.in (ALL_LINGUAS): Added "bg"
2002-01-21 Pavel Roskin <[email protected]>
* NEWS: Mention word completion in the editor.
2002-01-17 Pavel Roskin <[email protected]>
* extraconf.h: Remove OS/2 specific code.
* doc/mc.1.in (Configuration): Clarify some entries.
2002-01-11 Andrew V. Samoilov <[email protected]>
* acinclude.m4: New options for smbfs:
--with-configdir=DIR Where the Samba configuration files are (/etc)
--with-codepagedir=DIR Where the Samba codepage files are
2002-01-11 Pavel Roskin <[email protected]>
* syntax/xml.syntax: New file - highlighting for XML.
From Petr Kozelka <[email protected]>
* syntax/Syntax: Add xml.syntax.
* syntax/Makefile.am: Likewise.
2002-01-04 Pablo Saratxaga <[email protected]>
* configure.in: Added "eu" to ALL_LINGUAS.
2002-01-03 Pavel Roskin <[email protected]>
* lib/mc.menu: Correct quoting.
Reported by Matthias Urban <[email protected]>
* NEWS: Mention removal of the OS/2 port.
* README.PC: Remove OS/2 specific parts.
2002-01-02 Pavel Roskin <[email protected]>
* configure.in: Make help about --with-subshell easier to
understand. Minor alignment fixes for the help.
* acinclude.m4: Minor alignment fixes for the help.
2001-12-31 Pavel Roskin <[email protected]>
* configure.in: Generate vfs/Makefile from vfs/Makefile.in, not
from vfs/Make-mc.in.
2001-12-27 Duarte Loreto <[email protected]>
* configure.in: Added portuguese to ALL_LINGUAS
2001-12-21 Pavel Roskin <[email protected]>
* acinclude.m4 (AC_WITH_SLANG): Don't add ../slang to includes.
Don't remove slang/slang.h - it's never created.
* acinclude.m4 (AC_WITH_SLANG): Don't make symlink from
slang-mc.h to slang.h. Remove fastdepslang variable, it's
unused.
2001-12-01 Wang Jian <[email protected]>
* configure.in(ALL_LINGUAS): Renamed zh_CN.GB2312 to zh_CN.
2001-11-29 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Use "type" to recognize zip and lha archives.
2001-11-27 Pavel Roskin <[email protected]>
* lib/mc.ext.in: When running X programs in background, do it
from subshell. Otherwise some of them terminate when mc exits.
Reported by Christian Dysthe <[email protected]>
Remove some obsolete and gmc-specific entries. Use StarOffice
to open files detected as "Microsoft Office Document".
* lib/mc.lib: Support "Home" and "End" sequences in xterm from
XFree86 4.1.0.
2001-11-16 Andrew V. Samoilov <[email protected]>
* doc/mcedit.1.in: Fix help file location.
2001-11-14 Pavel Roskin <[email protected]>
* acinclude.m4 (MC_UNDELFS_CHECKS): Check for ext2_ino_t,
fallback to ino_t for e2fsprogs version 1.19 and older.
2001-10-30 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Add support for Netpbm files.
2001-10-25 Andrew V. Samoilov <[email protected]>
* slang/slvideo.c (SLtt_set_color): Eliminate C++ comments.
http://bugzilla.gnome.org/show_bug.cgi?id=60935
* doc/mc.1.in: Document %p macro.
2001-10-24 Pavel Roskin <[email protected]>
* configure.in: Move AC_FUNC_MMAP before it's used indirectly.
Allow using --without-mmap.
* INSTALL: Document --without-mmap.
2001-10-24 Andrew V. Samoilov <[email protected]>
* configure.in: Resurrect ALL_LINGUAS test, to allow specify list
of languages to be installed by setting env variable before
configure. If it is empty, it defaults to full list.
By Alex Tkachenko <[email protected]>.
2001-10-19 Pavel Roskin <[email protected]>
* syntax/sh.syntax: Highlight reserved words inside backticks.
Use the same wholechars settings for reserved words and
commands. Recognize more words. Recognize function definitions
without "function" or without "()". Use brightmagenta instead
of brightblue.
2001-10-18 Pavel Roskin <[email protected]>
* configure.in: When checking for "nroff -mandoc" support, don't
use /dev/null as input file, use stdin. Some versions of nroff
(e.g. groff-1.16.1) don't accept special files.
2001-10-14 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Treat Makefile.PL as a Perl program, not as a
Makefile. Don't allow any suffixes after "Makefile".
2001-10-12 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Add support for *.xcf files (native GIMP
format).
2001-10-06 Andrew V. Samoilov <[email protected]>
* lib/mc.menu: Use "case" instead of non-portable "egrep -q".
Fix compress<->bzip2 conversion and conversion of tagged
archives.
2001-10-05 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Use ogginfo to view *.ogg files.
Suggested by Marcel Pol <[email protected]>
* lib/mc.ext.in: Use xmms to play *.mp3 under X. When viewing
*.mp3, use "verbose" option to mpg123. Add support for *.ogg
and *.mid files.
2001-09-30 Pavel Roskin <[email protected]>
* configure.in: Don't check whether grep supports stdin - it's
not used anymore.
* NEWS: Mention this change.
2001-09-19 Pavel Roskin <[email protected]>
* doc/mcedit.1.in: Fix a very long line - use double
backslashes since they are interpreted even in the .nf blocks.
* lib/edit.spell.rc: Try aspell before resorting to ispell.
* syntax/php.syntax: Replace with a better implementation by
Max Schedriviy <[email protected]>
2001-09-15 Pavel Roskin <[email protected]>
* doc/mc.1.in: Fix location of mcedit files.
* doc/mcedit.1.in: Likewise. Remove obsolete technical details.
2001-09-14 Pavel Roskin <[email protected]>
* configure.in: Don't check for ncurses version and for keyok()
because the mouse support code doesn't need this hack anymore.
2001-09-13 Pavel Roskin <[email protected]>
* configure.in: Fix some cases of overquoting and underquoting.
* acinclude.m4: Likewise.
2001-09-12 Pavel Roskin <[email protected]>
* configure.in: Update list of browsers. Don't fallback to
lynx since it cannot be run in background.
* lib/mc.ext.in: Redirect output of X11 browsers to /dev/null.
If no browser for X11 was found, use lynx.
* autogen.sh: Add a workaround to ensure that "depcomp" is
distributed.
* configure.in: Replace obsolete macros. Use AC_MSG_NOTICE
where appropriate.
* acinclude.m4: Likewise. Fix check whether S-Lang uses
terminfo.
* configure.in: Use three-argument form of AC_INIT. Use
AC_CONFIG_AUX_DIR. Remove some unused or implied macros.
* Makefile.am (EXTRA_DIST): Remove "depcomp" - this workaround
is not needed if AC_CONFIG_AUX_DIR is used.
* vfs/Make-mc.in: Adjust mkinstalldirs location.
* autogen.sh: Create "config" and remove "autom4te.cache".
2001-09-11 Pavel Roskin <[email protected]>
* syntax/Syntax: New file, extracted from edit/syntax.c.
* syntax/Makefile.am: Add Syntax.
* configure.in: Add -lcurses (for use with S-Lang) to MCLIBS not
to LIBS. Don't use unportable "grep -q", use "case" instead.
2001-09-10 Pavel Roskin <[email protected]>
* configure.in: Only check for X if --with-tm-x-support has been
specified.
* configure.in: Add check for sys/ioctl.h.
* configure.in: Use AC_FUNC_STRCOLL instead of generic test.
* acinclude.m4: Put -lncurses to MCLIBS, not LIBS.
* configure.in: Likewise. Add MCLIBS to LIBS temporarily when
testing for functions in ncurses.
* acinclude.m4: Provide descriptions in all AC_DEFINE macros.
* configure.in: Likewise. Use AH_BOTTOM to include extraconf.h.
* acconfig.h: Remove.
* configure.in: Eliminate LIBSLANG and LSLANG.
* acinclude.m4: Likewise. Use MCLIBS for -lslang.
* configure.in: Use MCLIBS for -lgpm. Remove LGPM. Check for
resizeterm() and keyok() only if configuring with ncurses.
* configure.in: Remove now unused variables LIBVFS and LVFS.
* configure.in: Remove unused variables LINTL and INTLDEPS.
* configure.in: Add -I\$(top_builddir)/intl to CPPFLAGS when
building with included gettext, because libintl.h is copied
there.
2001-09-09 Pavel Roskin <[email protected]>
* NEWS: Update.
* configure.in: Remove a hack for Unixware. AC_FUNC_GETMNTENT
checks -lgen for getmntent as of Autoconf 2.52.
2001-09-07 Pavel Roskin <[email protected]>
* configure.in: Check for pwd.h.
* Make.common.in: Remove.
* configure.in: Remove all references to Make.common.in and
MCCPPFLAGS.
* aclocal.m4: Likewise.
* configure.in: Require Autoconf 2.52. Remove hacks for
Autoconf 2.13.
* Makefile.am: Require Automake 1.5.
2001-09-06 Pavel Roskin <[email protected]>
* syntax/php.syntax: New file - PHP file highlighting. Copied
from Cooledit 3.17.4.
* syntax/Makefile.am: Add php.syntax.
2001-09-06 Timur Bakeyev <[email protected]>
* acconfig.h: Brought back couple of symbols, that are still necessary
due reference to them from configure.in.
2001-09-04 Pavel Roskin <[email protected]>