1
1
Этот коммит содержится в:
Enrico Weigelt, metux IT service 2009-01-31 06:34:40 +01:00
родитель 8bc0e27a54 e3a3890a3a
Коммит b407c65b74
5 изменённых файлов: 38 добавлений и 34 удалений

Просмотреть файл

@ -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> 2009-01-29 Mikhail S. Pobolovets <styx.mp@gmail.com>
* lib/mc.ext.in: update for OpenOffice and StarOffice viewer. * lib/mc.ext.in: update for OpenOffice and StarOffice viewer.
odt2txt is now used odt2txt is now used

51
NEWS
Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

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