diff options
author | robi <robi> | 2011-12-25 23:12:58 +0000 |
---|---|---|
committer | robi <robi> | 2011-12-25 23:12:58 +0000 |
commit | cfda9316ba78761e515300679ea35528169ad7ce (patch) | |
tree | 30344d605293381484f8147399b4c2e92b7f1391 | |
parent | 4078c9c21a7888941ad38a74f64d0fa3656d39b5 (diff) |
prepare release 0.3.0-pv2
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | NEWS | 11 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | src/Makefile.in | 4 |
5 files changed, 24 insertions, 4 deletions
@@ -1,4 +1,13 @@ + + + +0.3.0.pv2 new : new partial step, recover journal lost inodes + new : support for libext2fs 1.41.x and 1.42.x + BUG : #018449 #018437 + elimination of some errors in the process of file systems larger than 8TB + + 0.3.0.pv1 new : functions for RPM; DBF; XCF(Gimp); ESRI; DjVu and CDF change : DEB; ZIP; TTF; Gnumeric; some Perl and Python files Optimization for text based files (not completed yet) @@ -1,3 +1,14 @@ + +ext4magic 0.3.0 pv2 A new recover sub-step. Inode found in partially overwritten areas of the + journal can now also recovers. It is impossible to identify the inode number, + the file name and the time of deletion. These files are also restored to the + MAGIC-2 directory. + ext4magic can now also be compiled with libext2fs-1.42.x, + but ext4 file systems >= 16 TByte an do not work. + Some errors in file system > 8 TBype have been eliminated. + + + ext4magic 0.3.0 pv1 New features for restoring Gimp images, many of document formats and enhancements to recover text-based files. @@ -2497,7 +2497,7 @@ fi # Define the identity of the package. PACKAGE=ext4magic - VERSION=0.3.0-pv1 + VERSION=0.3.0-pv2 cat >>confdefs.h <<_ACEOF diff --git a/configure.in b/configure.in index 52d209c..19319e9 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ AC_INIT(configure.in) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(ext4magic, 0.3.0-pv1) +AM_INIT_AUTOMAKE(ext4magic, 0.3.0-pv2) AC_LANG_C AC_PROG_CC diff --git a/src/Makefile.in b/src/Makefile.in index d237f4b..ba673db 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -245,9 +245,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/Makefile + $(AUTOMAKE) --foreign src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ |