blob: e24b2d60b651699b3ba001f13752445c4518cfe1 [file] [log] [blame]
bigbiff bigbiffca829c42013-01-28 08:14:25 -050011.0.0 (2013-01-19)
2
3* Fixed crash when renaming a file within a single directory and a new name
4differs only in case.
5* Fixed clusters allocation: a cluster beyond valid clusters range could be
6allocated.
7* Fixed crash when a volume is unmounted while some files are open.
8* SConscript now respects AR and RANLIB environment variables.
9* Improved error handling.
10
11Linux:
12
13* Enabled big_writes. This improves write speed (larger block size means less
14switches between kernel- and user-space).
15* Do BLKROGET ioctl to make sure the device is not read-only: after
16"blockdev --setro" kernel still allows to open the device in read-write mode
17but fails writes.
18
19OS X:
20
21* Fixed OS X 10.8 support.
22* Switched to 64-bit inode numbers (now Mac OS X 10.5 or later is required).
23* Switched from unmaintained MacFUSE to OSXFUSE (http://osxfuse.github.com).
24* Fixed device size detection. Now mkfs works.
25* Workarounded some utilities failures due to missing chmod() support.
26* Disabled (senseless) permission checks made by FUSE.
27
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500280.9.8 (2012-08-09)
29
30* The mkfs utility can now create huge file systems (up to several exabytes).
31* Fixed handling of characters beyond Basic Multilingual Plane.
32* Echo messages to syslog only if stderr is not connected to a terminal.
33
340.9.7 (2012-03-08)
35
36* Out-of-the-box FreeBSD support (via ublio library).
37* Fixed "missing EOD entry" error (could happen while reading directory that
38consists of several clusters).
39* Fixed interpretation of minutes field in files timestamps (minutes could be
40displayed incorrectly).
41* Fixed mtime seconds field initialization for newly created file (mtime could
42be 1 sec less than creation time).
43* SConscript now respects CC, CCFLAGS and LDFLAGS environment variables.
44
450.9.6 (2012-01-14)
46
47* Fixed write performance regression introduced in 0.9.4.
48* Mount in read-only mode if the device is write-protected.
49* Set ctime to mtime to ensure we don't break programs that rely on ctime
50(e.g. rsync considered that all files are outdated) [Eldad Zack].
51* Indicate that FS in not clean when it was not cleanly unmounted.
52* Utilities are now compatible with GNU/Hurd.
53* Fixed several memory leaks that could occur on error handling paths.
54* Improved handling of corrupted file systems.
55
560.9.5 (2011-05-15)
57
58* Fixed erasing of the root directory cluster when creating a new FS with
59mkexfatfs. This bug could cause mkexfatfs to produce invalid FS.
60* Utilities are not linked with libfuse anymore.
61* Ensure that the path being opened is either a device or a regular file.
62
630.9.4 (2011-03-05)
64
65* Introduced exfat-utils: dumpexfat, exfatfsck, mkexfatfs, exfatlabel.
66* Fixed "Invalid argument" error while mounting a volume from a disk with sector size greater than 512 bytes.
67* Wait for all data to be flushed to disk on unmount.
68* Kernel cache is no longer flushed on open. This can slightly improve read performance by avoiding extra read requests from kernel to user-space.
69* Allow to unmount volumes as user (fusermount -u) if they were mounted from the very same user [Tino Lange].
70* Errors and warnings are now duplicated to syslog.
71
720.9.3 (2010-09-25)
73
74* Directories now can shrink.
75* Improved timestamps resolution from 2 sec to 1 sec.
76* Fixed timestamps displaying under Mac OS X when compiled for i386 or ppc.
77* Fixed FS size displaying for non-GNU systems.
78
790.9.2 (2010-07-24)
80
81* Fixed a bug which could cause the whole directory to become unreadable after renaming a file in it.
82* Support for Solaris and various *BSD [Albert Lee].
83* Improved error handling on corrupted volumes.
84* Improved allowed file name characters filter.
85* Added man page.
86
870.9.1 (2010-06-12)
88
89* Implemented automounting (util-linux-ng 2.18 or later is required).
90* Fixed mounting when cluster bitmap is larger than expected.
91* Fixed crash on statfs() when root directory contains error.
92* Fixed bugs specific to big-endian machines.
93* Other bugfixes.
94
950.9.0 (2010-03-21)
96
97* Initial release.