]> git.sven.stormbind.net Git - sven/exfat-utils.git/blob - ChangeLog
Merge tag 'upstream/1.0.0'
[sven/exfat-utils.git] / ChangeLog
1 1.0.0 (2013-01-19)
2
3 * Fixed crash when renaming a file within a single directory and a new name
4 differs only in case.
5 * Fixed clusters allocation: a cluster beyond valid clusters range could be
6 allocated.
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
11 Linux:
12
13 * Enabled big_writes. This improves write speed (larger block size means less
14 switches 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
17 but fails writes.
18
19 OS 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
28 0.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
34 0.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
38 consists of several clusters).
39 * Fixed interpretation of minutes field in files timestamps (minutes could be
40 displayed incorrectly).
41 * Fixed mtime seconds field initialization for newly created file (mtime could
42 be 1 sec less than creation time).
43 * SConscript now respects CC, CCFLAGS and LDFLAGS environment variables.
44
45 0.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
56 0.9.5 (2011-05-15)
57
58 * Fixed erasing of the root directory cluster when creating a new FS with
59 mkexfatfs. 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
63 0.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
72 0.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
79 0.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
87 0.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
95 0.9.0 (2010-03-21)
96
97 * Initial release.