diff options
author | robi <robi> | 2010-08-10 17:55:25 +0000 |
---|---|---|
committer | robi <robi> | 2010-08-10 17:55:25 +0000 |
commit | 8f27364faf5c58eebce6616be246afaeff734a14 (patch) | |
tree | 33999b223f49d5df02e106884d7d77aecbe1962a | |
parent | 496517231f4c1542de0575a7a5d4737e6ce530cd (diff) |
V-0.1.4
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | INSTALL | 10 | ||||
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | TODO | 2 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
6 files changed, 23 insertions, 8 deletions
@@ -1,3 +1,11 @@ +0.1.4 BUG: #17387 symlink not restored + BUG: #17423 undeleted directory not found + BUG: #17425 run-time error "segmentation fault" at the beginning of a directory + enable optional support for ext2/3/4 file attributes + restore unlinked files + + + 0.1.3 BUG: crash if no write access to input filename list changes: time option to "-a ...." and "-b ...." changes: time match search for inode in directory @@ -108,8 +108,8 @@ libblkid-devel libblkid-dev Das ext4magic Archiv downloaden und entpacken und in das so entstehende Verzeichnis wechseln - # tar -xzf ext4magic-0.1.3.tar.gz - # cd ext4magic-0.1.3 + # tar -xzf ext4magic-0.1.4.tar.gz + # cd ext4magic-0.1.4 Das Paket wird jetzt kompiliert. @@ -159,8 +159,8 @@ ext4magic angelegt wird. Nutzen sie die selbe Shell in der die EXT2LIB Variable wie folgt compilieren - # tar -xzf ext4magic-0.1.3.tar.gz - # cd ext4magic-0.1.3 + # tar -xzf ext4magic-0.1.4.tar.gz + # cd ext4magic-0.1.4 # ./configure CFLAGS="-I$EXT2LIB" LDFLAGS="-L$EXT2LIB" LIBS="-luuid -lcom_err -lpthread" # make @@ -211,7 +211,7 @@ Die unterschiedlichen Versionen sehen sie zB. im Vergleich der Ausgabe folgender # ext4magic -V x - ext4magic version : 0.1.3 + ext4magic version : 0.1.4 libext2fs version : 1.41.11 CPU is little endian. # @@ -1,3 +1,10 @@ +ext4magic 0.1.4 Support for user-modifiable file attributes. + ext4magic can now restore the ext2/3/4 File attributes. + It is disabled by default. To activate, you must add the option --enable-file-attr + when running configure. + + + ext4magic 0.1.3 there is now a german documentation http://openfacts2.berlios.de/wikide/index.php/BerliosProject:Ext4magic @@ -1,11 +1,11 @@ Currently known issues - - on big-endian the crtime and deleted directory entry not correct if use the real libfunction for read the inode. The modified version to read the Journal inode works. BUG:#017304 ; #017304 - on ext4 possible small memory leak (must be tested) +- There are too many recovers files, because reused Inode @@ -2492,7 +2492,7 @@ fi # Define the identity of the package. PACKAGE=ext4magic - VERSION=0.1.3 + VERSION=0.1.4 cat >>confdefs.h <<_ACEOF diff --git a/configure.in b/configure.in index 2a728ea..33b332e 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ AC_INIT(configure.in) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(ext4magic, 0.1.3) +AM_INIT_AUTOMAKE(ext4magic, 0.1.4) AC_LANG_C AC_PROG_CC |