manually merged mc-4.6

This commit is contained in:
Enrico Weigelt, metux IT service 2009-01-31 06:34:40 +01:00
commit b407c65b74
5 changed files with 38 additions and 34 deletions

View File

@ -1,4 +1,9 @@
2009-01-30 Enrico Weigelt, metux ITS <weigelt@metux.de>
* src/Makefile.am, edit/Makefile.am vfs/Makefile.am: fixed #208
(out-of-tree builds)
2009-01-29 Mikhail S. Pobolovets <styx.mp@gmail.com>
* lib/mc.ext.in: update for OpenOffice and StarOffice viewer.
odt2txt is now used

51
NEWS
View File

@ -2,43 +2,46 @@ Version 4.6.2
- MC Core
- Changed HQ url to point to new website
www.midnight-commander.org
www.midnight-commander.org (Closes: #137, #138)
- Added a micro helper library in order to go slowly
avay from glib
avay from glib (Closes: #157)
- Use static strings as section entries in ~/.mc/history
WARNING!: This will break old files
WARNING!: This will break old files (Closes: #50)
- Fixed a repaint issue when clicking on the "View" Button instead
of using F3
- Removed obsolete autoconf macros
- Fix escaping for command line completion
- prevent mc from segfaulting when getting invalid timestamps on files
- Fixed a keybord issue when running mc via a putty console
- setted pty fd to closeonexec (on subshell)
- Fixed "strange" file renames, when copying/moving is performed
into deleted directory.
of using F3 (Closes: #35)
- Removed obsolete autoconf macros (Closes: #133)
- Fix escaping for command line completion (Closes: #147)
- prevent mc from segfaulting when getting invalid timestamps on files (Closes: #96)
- Fixed a keybord issue when running mc via a putty console (Closes: #203)
- setted pty fd to closeonexec (on subshell) (Closes: #174)
- Fixed file renames, when copying/moving is performed
into deleted directories. (Closes: #181)
- Add an option to show executables first in the panels (Closes: #173)
- Editor
- Syntax highlighting for:
+ debian files (debian/changelog, debian/control, debian/copyright, ..)
+ updated sh syntax highlighting
+ updated pascal syntax highlighting
+ differentiate between c and cpp files for highlighting
- Removed some unneeded variables
- Do use a ro test if a file exists
- Fixes some missbehaviour in regex matching
+ debian files (debian/changelog, debian/control, debian/copyright, ..) (Closes: #142)
+ updated sh syntax highlighting (Closes: #143)
+ updated pascal syntax highlighting (Closes: #65)
+ differentiate between c and cpp files for highlighting (Closes: #16)
+ updated python highlighting to support python 2.6 (Closes: #216)
- Removed some unneeded variables (Closes: #168, #151)
- Do use a ro test if a file exists (Closes: #206)
- Fixes some missbehaviour in regex matching (Closes: #207, #211 )
+ start at front of line and not on cursor position
+ . shouldn't match a newline
- VFS
- Fix some bashisms in some extfs scripts
- Fix some bashisms in some extfs scripts (Closes: #146)
- Fixed various problems with symlinks and files with chars which needs
escaping over fish
- Added 7zip extfs descriptor
escaping over fish (Closes: #10, #87, #149)
- Added 7zip extfs descriptor (Closes: #92)
- Switched from o3totxt to odf2txt as o3totxt is outdated (Closes: #218)
- Locale
- Updated german translation
- New Belarussian translation
- Updated russian translation
- Updated german translation (Closes: #167)
- New Belarussian translation (Closes: #170)
- Updated russian translation (Closes: #159)
Version 4.6.2-pre1.

View File

@ -1,4 +1,4 @@
AM_CFLAGS = $(GLIB_CFLAGS)
AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir)
if USE_EDIT
noinst_LIBRARIES = libedit.a

View File

@ -1,4 +1,4 @@
AM_CFLAGS = $(GLIB_CFLAGS)
AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir)
localedir = $(datadir)/locale
pkglibexecdir = $(libexecdir)/@PACKAGE@

View File

@ -1,16 +1,12 @@
if USE_SAMBA_FS
SUBDIRS = samba extfs
else
SUBDIRS = extfs
SAMBA_CFLAGS = -DCONFIGDIR=\""@configdir@"\"
SAMBA_SUBDIRS = samba
endif
DIST_SUBDIRS = extfs
if USE_SAMBA_FS
AM_CFLAGS = $(GLIB_CFLAGS) -DCONFIGDIR=\""@configdir@"\"
else
AM_CFLAGS = $(GLIB_CFLAGS)
endif
SUBDIRS = extfs $(SAMBA_SUBDIRS)
AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) $(SAMBA_CFLAGS)
BASICFILES = \
cpio.c \