forked from CTU-OSP/mc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
3894 lines (2541 loc) · 119 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
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.
* build-glib1.sh: New file - download and compile glib 1.2.x,
then compile mc against it.
* build-glib2.sh: New file - download and compile glib 2.x with
dependencies (gettext, pkgconfig), then compile mc against it.
* Makefile.am: Distribute them.
2003-10-29 Pavel Roskin <[email protected]>
* acinclude.m4 (MC_UNDELFS_CHECKS): Don't use internal Autoconf
variables.
* configure.in: Rewrite check for mmap() to avoid using internal
variables of Autoconf. Rename the rest of ac_cv_* to mc_cv_*.
* configure.in: Use AC_CHECK_MEMBERS to check fields of struct
stat. Adjust all dependencies.
* acinclude.m4 (AC_STRUCT_LINGER): Remove, use AC_CHECK_MEMBERS
instead.
* configure.in: Define SLANG_POSIX_SIGNALS if all 4 required
functions are present. Remove references to extraconf.h.
* extraconf.h: Eliminate.
* Makefile.am: Remove extraconf.h.
* configure.in: Move ext2fs undelete support ...
* acinclude.m4 (MC_WITH_VFS): ... here.
* extraconf.h: Remove VFS logic, it's enforced in configure now.
* acinclude.m4 (MC_WITH_VFS): Use AC_SEARCH_LIBS when possible.
Allow disabling network code by --disable-netcode.
2003-10-28 Pavel Roskin <[email protected]>
* configure.in: Don't check if "file" can use stdin - it's
unused now.
2003-10-25 Pavel Roskin <[email protected]>
* extraconf.h: Don't define HAVE_GRANTPT forcedly if grantpt()
wasn't found. Don't define HAVE_CRYPT, it's unused now.
* configure.in: Remove check for socketpair(). Add new option
--enable-background.
* extraconf.h: Don't define WITH_BACKGROUND.
2003-10-14 Pavel Roskin <[email protected]>
* configure.in: Don't check for seekdir() and telldir().
2003-09-23 Pavel Roskin <[email protected]>
* doc/sr/Makefile.am: Don't install mcserv documentation if mcfs
support is disabled.
* lib/*.ti: Remove, these files are obsolete.
* lib/tdiff: Likewise.
* lib/xterm.tcap: Likewise.
* lib/Makefile.am: Remove obsolete files. Don't install
README.xterm and xterm.ad, there are partly obsolete and can
break things if used as is.
2003-09-22 Strahinya Radich <[email protected]>
* lib/mc.hint.sr: Updated.
* lib/mc.menu.sr: New file - translated menu.
* lib/Makefile.am: Add mc.menu.sr.
* doc/sr/: New Serbian documentation.
* doc/Makefile.am: Add "sr" directory.
* configure.in: Add substitutions for new files.
2003-09-22 Pavel Roskin <[email protected]>
* configure.in: Check for strlcpy() if glib 1.2.x is used.
2003-09-11 Strahinya Radich <[email protected]>
* lib/mc.hint.sr: New file - Serbian hints.
2003-09-04 Pavel Roskin <[email protected]>
* lib/mc.menu: Add entry for viewing manual pages.
2003-08-18 Pavel Roskin <[email protected]>
* lib/mc-wrapper.csh.in: Use "id" command to find the real user
id. $USER is not reliable.
* lib/mc-wrapper.sh.in: Likewise.
Reported by Figura Peter <[email protected]>
2003-08-18 Andrew V. Samoilov <[email protected]>
* acinclude.m4 (MC_WITH_NCURSES): Fix ESCDELAY check on Solaris.
Make sure that linking succeeds.
2003-08-02 Pavel Roskin <[email protected]>
* lib/cedit.menu: Avoid using "id -u", it doesn't work on
Solaris. From Andrew V. Samoilov <[email protected]>
2003-07-23 Pavel Roskin <[email protected]>
* lib/mc.lib: Add more "end" and "home" sequences for xterm.
2003-07-22 Pavel Roskin <[email protected]>
Get rid of all references to NATIVE_WIN32.
* pc: Remove. No work has been done on the PC post for years.
* README.PC: Likewise.
* Makefile.am: Adjust for the above.
* configure.in: Likewise.
2003-07-21 Pavel Roskin <[email protected]>
* configure.in: Check posix_openpt() first and fallback to
GNU-specific getpt() only if needed.
2003-06-29 David Sterba <[email protected]>
* lib/mc.hint.cs: Typo fixes.
2003-06-25 Marco Ciampa <[email protected]>
* doc/it/mc.1.in: small fix
2003-06-23 Andrew V. Samoilov <[email protected]>
* lib/mc.ext: Allow ZIP in all capitals in "file" output.
2003-06-18 Pavel Roskin <[email protected]>
* configure.in: Remove test for SCO UNIX. Remove all references
to SCO_FLAVOR everywhere. SCO flavor is rather unsavory now.
2003-06-06 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Don't run compressed logs from /var/log through
nroff. Suggested by Alfie Costa <[email protected]>
2003-05-16 Marco Ciampa <[email protected]>
* syntax/ruby.syntax: upgrade
* syntax/perl.syntax: small fix
2003-05-14 Marco Ciampa <[email protected]>
* syntax/ruby.syntax: New file - syntax for Ruby.
* syntax/Syntax: Add ruby.syntax.
* syntax/Makefile.am: Likewise.
2003-05-08 Pavel Roskin <[email protected]>
* mc.spec.in: Strip pre-1998 changelog to work around a bug in
rpm 4.2, which doesn't like %install inside %changelog.
2003-04-29 Pavel Roskin <[email protected]>
* configure.in: Add vfs/extfs/iso9660 to AC_CONFIG_FILES.
* lib/mc.ext.in: Add support for ISO images.
2003-03-31 Dmitry Alexeyev <[email protected]>
* syntax/Syntax: Highlight *.mc as a makefile.
* syntax/sql.syntax: Add more keywords for PostgreSQL.
2003-03-21 Pavel Roskin <[email protected]>
* syntax/sh.syntax: Highlight "find". Highlight whole string
after "#!". Make unrecognized text inside `` less bright.
2003-03-17 Marco Ciampa <[email protected]>
* doc/it/mc.1.in: Some manual fixes.
2003-03-14 Pavel Roskin <[email protected]>
* syntax/c.syntax: Allow integer specifiers for %x and %X in C
format strings.
* syntax/cs.syntax: Likewise.
* syntax/java.syntax: Likewise.
* syntax/ml.syntax: Likewise.
* syntax/php.syntax: Likewise.
* syntax/python.syntax: Likewise.
* syntax/slang.syntax: Likewise.
* syntax/swig.syntax: Likewise.
2003-03-11 Pavel Roskin <[email protected]>
* acinclude.m4 (MC_ASM_LABELS): New macro to work around a bug
gettext. Define _INTL_REDIRECT_MACROS if needed.
* configure.in: Use MC_ASM_LABELS.
2003-03-07 Pavel Roskin <[email protected]>
* configure.in: Add --with-glib-static option.
2003-03-06 Pavel Roskin <[email protected]>
* syntax/spec.syntax: Add BuildArch.
2003-03-05 Pavel Roskin <[email protected]>
* configure.in: Check availability of setsid().
2003-03-04 Sanlig Badral <[email protected]>
* po/LINGUAS: added Mongolian (mn) translation.
2003-03-03 Pavel Roskin <[email protected]>
* lib/mc.lib: Add xterm arrows both for application and normal
mode. Normal mode can be accidentally enabled if one mc is run
from another and Ctrl-O is used to switch between them.
Add F11-F20 definitions for cons25 (FreeBSD console).
2003-02-27 Juan C. Olivares <[email protected]>
* syntax/cs.syntax: New file.
* syntax/Syntax: Add cs.syntax.
* syntax/Makefile.am: Likewise.
2003-02-27 Marco Ciampa <[email protected]>
* doc/it/mc.1.in: updated manual with -e switch description.
2003-02-26 Pavel Roskin <[email protected]>
* syntax/syntax.syntax: Highlight "define".
2003-02-23 Marco Ciampa <[email protected]>
* doc/it/mc.1.in: updated manual with some stylistic changes.
2003-02-23 Dmitry Alexeyev <[email protected]>
* lib/mc.ext.in: Add entry for QNX Neutrino packages.
2003-02-22 Pavel Tsekov <[email protected]>
* acinclude.m4 [AC_G_MODULE_SUPPORTED]: New macro.
* configure.in: Test for gmodule. Don't link mc with libX11 if
gmodule is supported.
2003-02-22 Pavel Roskin <[email protected]>
* configure.in: Add --with-glib12 option to configure to force
using glib 1.2.x.
2003-02-21 Andrew V. Samoilov <[email protected]>
* doc/ru/mc.1.in (Layout): Translate 'Xterm window title' option.
(Extension File Edit): Translate include feature.
2003-02-20 Pavel Roskin <[email protected]>
* configure.in: Move list of all translations ...
* po/LINGUAS: ... here.
2003-02-18 Pavel Roskin <[email protected]>
* syntax/c.syntax: Highlight C++ comments in preprocessor
directives.
Reported by Oswald Buddenhagen <[email protected]>
2003-02-13 Marco Ciampa <[email protected]>
* doc/it/mc.1.in: updated manual following it.po changes.
2003-02-05 Pavel Roskin <[email protected]>
* configure.in: Bump version to 4.6.0a.
* configure.in: Version 4.6.0 released.
2003-02-04 Arpi <[email protected]>
* syntax/Syntax: Match *.syntax before other files to fix
highlighting of makefile.syntax.
2003-02-04 Pavel Roskin <[email protected]>
* syntax/c.syntax: Revert highlighting trailing whitespaces.
2003-02-03 Andrew V. Samoilov <[email protected]>
* autogen.sh: Fix unportable "+" sed regexp in gettext_ver
calculation. Reported by [email protected].
2003-01-31 Pavel Roskin <[email protected]>
* syntax/nroff.syntax: Make colors more compatible with the
highlighting used in the internal viewer - yellow for bold and
brightred for italic.
2003-01-31 Andrew V. Samoilov <[email protected]>
* syntax/c.syntax: Highlight trailing whitespace(s).
2003-01-30 Pavel Tsekov <[email protected]>
* acinclude.m4 (MC_WITH_NCURSES): Check -lcurses if -lncurses
doesn't work. Useful on OpenBSD 3.2.
2003-01-29 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Fix missing semicolon that affected viewing RPM
packages.
2003-01-24 Pavel Roskin <[email protected]>
* configure.in: Add -lposix on A/UX before all tests.
2003-01-23 Pavel Roskin <[email protected]>
* acinclude.m4 (MC_EXTFS_CHECKS): Fix redirection to /dev/null.
2003-01-22 Pavel Roskin <[email protected]>
* configure.in: Bump version to 4.6.0-pre3a.
* configure.in: Version 4.6.0-pre3 released.
* acinclude.m4 (_MC_WITH_XSLANG): Drop support for old S-Lang
versions that required the native curses library on some OSes.
2003-01-19 Adam Byrtek <[email protected]>
* doc/mcview.1.in: New file.
* configure.in: Treat it like doc/mcedit.1.in.
* doc/Makefile.am: Likewise.
2003-01-17 Adam Byrtek <[email protected]>
* doc/mc.1.in (Layout): Document 'Xterm window title' option.
2003-01-16 David Martin <[email protected]>
* doc/mc.1.in: Add EXTernal virtual File System node (extfs).
2003-01-16 David Martin <[email protected]>
* doc/mc.1.in: Set man page header and footer.
* 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.
2003-01-12 David Martin <[email protected]>
* po/es.po: Update. Rewrite localized names for some menu entries.
* doc/es/mc.1.in: Likewise.
* lib/mc.hint.es: Likewise.
2002-12-27 David Martin <[email protected]>
* doc/pl/xnc.hlp: Update GPL (change FSF address and move 19xx
entries to "year").
2002-12-26 Pavel Roskin <[email protected]>
* configure.in: Release 4.6.0-pre2, bump version to 4.6.0-pre2a.
* configure.in: Fix non-portable operator. Bump version to
4.6.0-pre2.
2002-12-24 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Use --nosignature with rpm to avoid a message
in the viewer about unsigned packages.
* acinclude.m4 (MC_WITH_SLANG): Don't add -lslang to MCLIBS if
the system S-Lang is rejected.
* lib/mc.ext.in: Play *.mov by mplayer.
2002-12-23 Pavel Roskin <[email protected]>
* configure.in: Enable X11 support by default, use --without-x
to disable.
2002-12-19 Pavel Roskin <[email protected]>
* syntax/perl.syntax: Add separate context for function
declarations and definitions, highlight prototypes.
2002-12-11 Pavel Roskin <[email protected]>
* acinclude.m4 (MC_EXTFS_CHECKS): Add check for Perl.
* configure.in: Substitute Perl location in all extfs scripts
written in Perl.
2002-12-11 David Martin <[email protected]>
* doc/xnc.hlp: Update GPL (change FSF address
and move 19xx entries to "year").
* doc/es/xnc.hlp: Likewise.
* doc/hu/xnc.hlp: Likewise.
* doc/it/xnc.hlp: Likewise.
* doc/ru/xnc.hlp: Likewise.
2002-12-09 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Remove ftplist. Add patchfs.
2002-11-29 Andrew V. Samoilov <[email protected]>
* autogen.sh: Use $srcdir/configure.mc instead of
$srcdir/configure if first one exists and is executable.
2002-11-28 Pavel Roskin <[email protected]>
* configure.in: Determine which help translations user wants to
install, based on USE_NLS, LINGUAS and ALL_LINGUAS.
* doc/Makefile.am: Set SUBDIR to the list of the requested
translations.
* acinclude.m4 (MC_EXTFS_CHECKS): New macro.
(MC_WITH_VFS): Call MC_EXTFS_CHECKS.
* configure.in: Generate vfs/extfs/uzip.
* vfs/extfs/uzip: Move to vfs/extfs/uzip.in.
* vfs/extfs/Makefile.am: Corresponding adjustments.
2002-11-26 Pavel Roskin <[email protected]>
* syntax/sql.syntax: Add highlighting for dot and backticks.
2002-11-16 Pavel Roskin <[email protected]>
* configure.in: Move check for pwdauth() to MC_MCSERVER_CHECKS.
* acinclude.m4 (MC_MCSERVER_CHECKS): If using crypt(), check for
shadow password support.
* acinclude.m4 (MC_MCSERVER_CHECKS): Don't limit PAM check to
Linux. Use AC_SEARCH_LIBS to find crypt(). Consolidate mcserv
libraries into MCSERVLIBS.
* configure.in: Move all mcserv related checks ...
* acinclude.m4 (MC_MCSERVER_CHECKS): ... here.
2002-11-15 Pavel Roskin <[email protected]>
* configure.in: Fully enable glib2. Update the documentation.
2002-11-14 Andrew V. Samoilov <[email protected]>
* lib/mc.menu: Don't use --repetitive-best option with bzip2 -
it is redundant in versions 0.9.5 and above.
2002-11-10 Pavel Roskin <[email protected]>
* configure.in: Check for uintptr_t. Needed to compile regex.c
on MacOS X. Reported by Wim Rijnders <[email protected]>
2002-11-07 Andrew V. Samoilov <[email protected]>
* syntax/ada95.syntax: Highlight "then" and "else".
From Victor Porton <[email protected]>.
Highlight "exit".
2002-11-06 Pavel Roskin <[email protected]>
* lib/edit.indent.rc: Remove all options for indent and add a
comment explaining where those options should be.
2002-11-05 Pavel Roskin <[email protected]>
* lib/mc-wrapper.csh.in: Remove /bin/csh at the beginning - this
script is not meant to be executed by the kernel. This also
eliminates dependency of the RPM package on csh.
* lib/mc-wrapper.sh.in: Remove /bin/sh at the beginning.
2002-11-01 Pavel Roskin <[email protected]>
* configure.in: Don't substitute mc.sh and mc.csh - it's now
done ...
* lib/Makefile.am: ... here. Add wrappers for mc to avoid
defining complex shell scripts in functions and aliases.
* lib/mc-wrapper.csh.in: New file - template for the script
that runs mc and changes directory in csh.
* lib/mc-wrapper.sh.in: New file - template for the script
that runs mc and changes directory in sh.
2002-11-01 Andrew V. Samoilov <[email protected]>