Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matt-wu/Ext3Fsd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wu <matt@ext2fsd.com>2015-06-09 19:36:37 +0300
committerMatt Wu <matt@ext2fsd.com>2015-06-09 19:36:37 +0300
commit9da4652c0abc76ccc0e86671d02217da7976f4f8 (patch)
tree242228fb1b0c479300056fffaee0ec3d2637f995
parent9b2c7f9d8e5ce33fa819c074e03705913710c419 (diff)
Version 0.62Ext3Fsd-0.62
-rw-r--r--Ext3Fsd/Ext3fsd.rc8
-rwxr-xr-xExt3Fsd/include/ext2fs.h2
-rwxr-xr-xExt3Fsd/notes.txt37
-rwxr-xr-xExt3Fsd/readme.txt8
4 files changed, 18 insertions, 37 deletions
diff --git a/Ext3Fsd/Ext3fsd.rc b/Ext3Fsd/Ext3fsd.rc
index 3c96d1d..4c75035 100644
--- a/Ext3Fsd/Ext3fsd.rc
+++ b/Ext3Fsd/Ext3fsd.rc
@@ -19,8 +19,8 @@
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,61,6,08
- PRODUCTVERSION 0,61,6,08
+ FILEVERSION 0,62,6,10
+ PRODUCTVERSION 0,62,6,10
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -38,14 +38,14 @@ BEGIN
VALUE "Comments", "Matt Wu <matt@ext2fsd.com>\0"
VALUE "CompanyName", "www.ext2fsd.com\0"
VALUE "FileDescription", "Ext2 File System Driver for Windows\0"
- VALUE "FileVersion", "0.61\0"
+ VALUE "FileVersion", "0.62\0"
VALUE "InternalName", "Ext2Fsd.sys\0"
VALUE "LegalCopyright", "GPLv2\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "Ext2Fsd.sys\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "Ext2 File System Driver\0"
- VALUE "ProductVersion", "0.61\0"
+ VALUE "ProductVersion", "0.62\0"
VALUE "SpecialBuild", "\0"
END
END
diff --git a/Ext3Fsd/include/ext2fs.h b/Ext3Fsd/include/ext2fs.h
index 8a99132..abc87ea 100755
--- a/Ext3Fsd/include/ext2fs.h
+++ b/Ext3Fsd/include/ext2fs.h
@@ -40,7 +40,7 @@
/* STRUCTS & CONSTS******************************************************/
-#define EXT2FSD_VERSION "0.61"
+#define EXT2FSD_VERSION "0.62"
//
diff --git a/Ext3Fsd/notes.txt b/Ext3Fsd/notes.txt
index 4970410..77356a8 100755
--- a/Ext3Fsd/notes.txt
+++ b/Ext3Fsd/notes.txt
@@ -1,41 +1,14 @@
==================================
-Release Notes for Ext2Fsd V0.61
+Release Notes for Ext2Fsd V0.62
==================================
-Features implemented or bugfix since V0.53:
+Features implemented or bugfix since V0.61:
- 1, Ext4 extent writing support (developed by ngkaho1234 @ gmail.com).
- See his repository for more details:
- http://github.com/ngkaho1234/Ext3Fsd.git
- 2, Size manipulation and i/o path revised for support of both indirect and
- extent-based mappings
- 3, 16T volume supported (tested with 4T volume / 4K block-size)
- Version 0.53 and previous versions only support up to 2T volume
- ticket: https://sourceforge.net/p/ext2fsd/bugs/134/
- 4, Deletion acceleration: truncation optimized for indirect-based files
- 5, Size-expanding disabled in IRP_MJ_CREATE for better performance.
- Windows sometimes would truncate file size back to 0
- 6, Support Volume exclusive-open for e2fsprogs utils. Any attempts
- will be denied while EXT4 volume is being checked (e2fsck).
- 7, FIXME: Possible zero-content returned (requesting data from file tail)
- 8, FIXME: File ByteOffset updated for FO_SYNCHRONOUS_IO open (async i/o)
- ticket: https://sourceforge.net/p/ext2fsd/bugs/133/
- 9, FIXME: don't do byte or range round up for paging i/o requests
- ticket: https://sourceforge.net/p/ext2fsd/bugs/129/
- 10, FIXME: occasional block bitmap difference issue, cased by checksum
- caculation in uninit_bg group initializing
- 11, FIXME: Ext4 unwritten-extent supported to avoid possible data corruption
- MSB of ee_len field of unwritten extent is used as only a flag. It
- was mistakenly treated as extent length (block numbers) in V0.60
- 12, FIXME: Manually clear file to zero for indirect-block file that is newly
- created but not yet written
- 13, Renaming supported: with names only diffs in lower or upper cases
- 14, I/o path revised to correctly handle ValidDataLength & unwritten holes
- 15, e2fsprogs utils for Windows (e2fsck, mke2fs, tune2fs, debugfs) included
+ 1, FIXME: STEAM game cache (data) validation failures
+ 2, FIXME: WDK sources compiling random failures
-
-Supported Ext3/4 features by 0.61:
+Supported Ext3/4 features by 0.62:
1, flexible inode size: > 128 bytes, up to block size
2, dir_index: htree directory index
diff --git a/Ext3Fsd/readme.txt b/Ext3Fsd/readme.txt
index 4174c60..fedebb3 100755
--- a/Ext3Fsd/readme.txt
+++ b/Ext3Fsd/readme.txt
@@ -28,6 +28,14 @@ Everyone can get to him at http://www.acc.umu.se/~bosse/.
Revision history
======================
+47, V0.62: 2015-06-09
+
+Modifications from V0.61:
+
+ 1, FIXME: STEAM game cache (data) validation failures
+ for direct-io mode, wrong reading length in bytes reported
+ 2, FIXME: WDK sources compiling random failures
+
46, V0.61: 2015-06-08
Modifications from V0.60: