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>2016-04-10 18:20:15 +0300
committerMatt Wu <matt@ext2fsd.com>2016-04-10 18:20:15 +0300
commit056d15199626d48f53d4b3dabfc13f882ed5877e (patch)
tree091cdb67cbff61b0109cae05339e6b2c5ff7d515
parent41eb7028f7ab78b0e5022b1ca10bae5afcfecc54 (diff)
Ext3Fsd 0.65Ext3Fsd-0.65
-rw-r--r--Ext3Fsd/Ext3fsd.rc8
-rwxr-xr-xExt3Fsd/include/ext2fs.h2
-rwxr-xr-xExt3Fsd/notes.txt20
-rwxr-xr-xExt3Fsd/readme.txt24
4 files changed, 30 insertions, 24 deletions
diff --git a/Ext3Fsd/Ext3fsd.rc b/Ext3Fsd/Ext3fsd.rc
index 3531ff3..f1b3c1b 100644
--- a/Ext3Fsd/Ext3fsd.rc
+++ b/Ext3Fsd/Ext3fsd.rc
@@ -19,8 +19,8 @@
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,64,4,04
- PRODUCTVERSION 0,64,4,04
+ FILEVERSION 0,65,4,10
+ PRODUCTVERSION 0,65,4,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.64\0"
+ VALUE "FileVersion", "0.65\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.64\0"
+ VALUE "ProductVersion", "0.65\0"
VALUE "SpecialBuild", "\0"
END
END
diff --git a/Ext3Fsd/include/ext2fs.h b/Ext3Fsd/include/ext2fs.h
index 82b0a2b..f1366b6 100755
--- a/Ext3Fsd/include/ext2fs.h
+++ b/Ext3Fsd/include/ext2fs.h
@@ -41,7 +41,7 @@
/* STRUCTS & CONSTS******************************************************/
-#define EXT2FSD_VERSION "0.64"
+#define EXT2FSD_VERSION "0.65"
/* WDK DEFINITIONS ******************************************************/
diff --git a/Ext3Fsd/notes.txt b/Ext3Fsd/notes.txt
index 8a85d2b..6c16080 100755
--- a/Ext3Fsd/notes.txt
+++ b/Ext3Fsd/notes.txt
@@ -1,21 +1,17 @@
==================================
-Release Notes for Ext2Fsd V0.64
+Release Notes for Ext2Fsd V0.65
==================================
-Features implemented or bugfix since V0.63:
+Features implemented or bugfix since V0.64:
- Features:
- 1, Drive letter assignment mechanism refined
- 2, Mount as specified user (uid/gid) supported
+ 1, major performance improvements (small files meta-operatios)
+ 2, memory pressure handling for buffer-head structures reclaim
+ 3, back support for Windows 2000 (i386, 32bit)
+ 4, no bothering user with notification message for Ext2Mgr
+ 5, project improvement: Ext2Mgr to be built with WDK or VS2008
- Bugs fixed:
- 1, Symlink creation breaks metedata statistics for inodes
- 2, Unexpected drive letter removal for virtual devices
- 3, Resource lock rules refined to consolidate consistency
- 4, Kernel codes improved to make Ext3Fsd more secure
-
-Supported Ext3/4 features by 0.64:
+Supported Ext3/4 features by 0.65:
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 2829dea..c76337b 100755
--- a/Ext3Fsd/readme.txt
+++ b/Ext3Fsd/readme.txt
@@ -2,15 +2,15 @@
About Ext2Fsd
======================
-Ext2Fsd project is an ext2 file system driver for Windows (2000/2003/XP/7/8).
+Ext2Fsd project is an ext2/3/4 file system driver for Windows (2k/XP/7/8/10).
-It's a free software. Everyone can distribute and modify it under GNU GPLv2.
+It's a free software. Everyone can distribute or modify it under GNU GPLv2.
======================
Author & Homepage
======================
-Matt<mattwu@163.com>
+Matt Wu <mattwu@163.com>
http://www.ext2fsd.com
@@ -18,8 +18,8 @@ http://www.ext2fsd.com
Credits
======================
-Here, I owe all my thanks to Bo Branten<bosse@acc.umu.se> for his
-project romfs and his great contribution of the free version ntifs.h
+Thanks to Bo Branten<bosse@acc.umu.se> for his project romfs and his great
+contribution of the free version ntifs.h.
Everyone can get to him at http://www.acc.umu.se/~bosse/.
@@ -28,9 +28,20 @@ Everyone can get to him at http://www.acc.umu.se/~bosse/.
Revision history
======================
+50, V0.65 2016-04-10
+
+Modifications from V0.64:
+
+Features:
+ 1, major performance improvements (small files meta-operatios)
+ 2, memory pressure handling for buffer-head structures reclaim
+ 3, back support for Windows 2000 (i386, 32bit)
+ 4, no bothering user with notification message for Ext2Mgr
+ 5, project improvement: Ext2Mgr to be built with WDK or VS2008
+
49, V0.64 2016-04-04
-Modifications from V0.62:
+Modifications from V0.63:
Features:
1, Drive letter assignment mechanism refined
@@ -42,7 +53,6 @@ Bugs fixed:
3, Resource lock rules refined to consolidate consistency
4, Kernel codes improved to make Ext3Fsd more secure
-
48, V0.63: 2016-03-12
Modifications from V0.62: