diff --git a/ChangeLog b/ChangeLog index 4b998601..38487c91 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21,8 +21,10 @@ xx/xx/2003 - 1.8.0-devel - Work in progress. causing the program doing the enumeration to hang in a tight loop. NOTE: There is still work to do as ctx->al_entry is set to NULL instead of to the position in the attribute list at which to insert. - - Added man page for ntfsls. + - Added man pages for ntfsls and other utilities (Richard Russon and + me). - Lots of extensions and cleanups to ntfsls. + - Other assorted bugfixes and developments (see bk changes). 13/02/2003 - 1.7.1 - Urgent bug fixes. - Urgent bug fixes in ntfsresize (Szabolcs Szakacsits): diff --git a/NEWS b/NEWS index e45d44e8..411e019e 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,19 @@ Current news ============ +Added new utilities: ntfsclone by Szakacsits Szabolcs, ntfscluster by Richard +Russon, ntfsinfo by Matthew Fanto, ntfsls originally by Lode Leroy, modified +by Anton Altaparmakov. + +Library internal enhancements and API additions. Of particular note is the +device io abstraction layer and the addition of the win32 device operations +(these haven't been integrated in the build process yet but do work when +integrated manually). Thanks to Lode Leroy for the win32 code. + + +Older news +========== + Renamed ntfstools to ntfsprogs everywhere. Added new utility ntfslabel by Matthew Fanto. See man 8 ntfslabel for details. @@ -16,10 +29,6 @@ last release (1.6.0). It should now offer a much more solid and stable basis for development of software accessing NTFS volumes. All utilities have been ported to the new API. - -Older news -========== - linux-ntfs should now compile and work on all architectures. Added two options to mkntfs. One to enable compression on the volume and one diff --git a/README b/README index 17b90874..a614ad99 100644 --- a/README +++ b/README @@ -68,3 +68,15 @@ ntfsundelete for more details. ntfsresize - Resize NTFS volumes. See man 8 ntfsresize for details. +ntfsclone - Efficiently create/restore an image of an NTFS partition. See +man 8 ntfsclone for details. + +ntfscluster - Locate the owner of any given sector or cluster on an NTFS +partition. See man 8 ntfscluster for details. + +ntfsinfo - Show some information about an NTFS partition or one of the files +or directories within it. See man 8 ntfsinfo for details. + +ntfsls - List information about files in a directory residing on an NTFS +partition. See man 8 ntfsls for details. + diff --git a/configure b/configure index 9e573441..a2fff4ce 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.57 for ntfsprogs 1.8-devel. +# Generated by GNU Autoconf 2.57 for ntfsprogs 1.8.0beta. # # Report bugs to . # @@ -427,8 +427,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='ntfsprogs' PACKAGE_TARNAME='ntfsprogs' -PACKAGE_VERSION='1.8-devel' -PACKAGE_STRING='ntfsprogs 1.8-devel' +PACKAGE_VERSION='1.8.0beta' +PACKAGE_STRING='ntfsprogs 1.8.0beta' PACKAGE_BUGREPORT='linux-ntfs-dev@lists.sourceforge.net' ac_unique_file="config.h.in" @@ -947,7 +947,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures ntfsprogs 1.8-devel to adapt to many kinds of systems. +\`configure' configures ntfsprogs 1.8.0beta to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1014,7 +1014,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of ntfsprogs 1.8-devel:";; + short | recursive ) echo "Configuration of ntfsprogs 1.8.0beta:";; esac cat <<\_ACEOF @@ -1115,7 +1115,7 @@ fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -ntfsprogs configure 1.8-devel +ntfsprogs configure 1.8.0beta generated by GNU Autoconf 2.57 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 @@ -1130,7 +1130,7 @@ cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by ntfsprogs $as_me 1.8-devel, which was +It was created by ntfsprogs $as_me 1.8.0beta, which was generated by GNU Autoconf 2.57. Invocation command line was $ $0 $@ @@ -1809,7 +1809,7 @@ fi # Define the identity of the package. PACKAGE=ntfsprogs - VERSION=1.8-devel + VERSION=1.8.0beta cat >>confdefs.h <<_ACEOF @@ -11423,7 +11423,7 @@ _ASBOX } >&5 cat >&5 <<_CSEOF -This file was extended by ntfsprogs $as_me 1.8-devel, which was +This file was extended by ntfsprogs $as_me 1.8.0beta, which was generated by GNU Autoconf 2.57. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -11486,7 +11486,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -ntfsprogs config.status 1.8-devel +ntfsprogs config.status 1.8.0beta configured by $0, generated by GNU Autoconf 2.57, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" diff --git a/configure.ac b/configure.ac index fc57eec8..c5fd4ded 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.57) -AC_INIT(ntfsprogs, 1.8-devel, linux-ntfs-dev@lists.sourceforge.net) +AC_INIT(ntfsprogs, 1.8.0beta, linux-ntfs-dev@lists.sourceforge.net) AC_CANONICAL_TARGET([]) AC_CONFIG_SRCDIR([config.h.in]) AM_CONFIG_HEADER([config.h]) diff --git a/ntfsprogs.spec.in b/ntfsprogs.spec.in index f9223e3c..8bfa2ebf 100644 --- a/ntfsprogs.spec.in +++ b/ntfsprogs.spec.in @@ -34,6 +34,15 @@ ntfslabel for details. ntfsundelete - Recover deleted files from an NTFS volume. See man 8 ntfsundelete for details. ntfsresize - Resize an NTFS volume. See man 8 ntfsresize for details. + ntfsclone - Efficiently create/restore an image of an NTFS partition. +See man 8 ntfsclone for details. + ntfscluster - Locate the owner of any given sector or cluster on an +NTFS partition. See man 8 ntfscluster for details. + ntfsinfo - Show some information about an NTFS partition or one of the +files or directories within it. See man 8 ntfsinfo for details. + ntfsls - List information about files in a directory residing on an +NTFS partition. See man 8 ntfsls for details. + %package devel Summary : files required to compile software that uses libntfs @@ -78,6 +87,9 @@ rm -rf "$RPM_BUILD_ROOT" %{prefix}/lib/*.la* %changelog +* Tue Sep 30 2003 Anton Altaparmakov +- added the new utilities, ntfsclone, ntfscluster, ntfsinfo, ntfsls. + * Sat Jan 18 2003 Anton Altaparmakov - renamed to ntfsprogs.spec.in - change source tar ball name to ntfsprogs