]> git.sven.stormbind.net Git - sven/exfat-utils.git/blob - ChangeLog
Imported Upstream version 1.1.0
[sven/exfat-utils.git] / ChangeLog
1 1.1.0 (2014-07-08)
2
3 * Relicensed the project from GPLv3+ to GPLv2+.
4 * OpenBSD support [Helg Bredow].
5 * Improved I/O errors handling.
6 * Implemented fsync() and fsyncdir().
7 * Fixed crash on Mac OS X 10.5 caused by non-standard use of realpath(). Also
8 fixed TrueCrypt disks unmounting.
9 * Avoid extra erase on writes to the end of a file. This should improve linear
10 write speed.
11 * Allow arbitrary changing of lower 9 bits of mode. Allow owner/group changing
12 to the same owner/group. This fixes rsync.
13 * Fixed buffers overflows when handling lengthy file names.
14 * Fixed "real size does not equal to size" error on volumes with pagefile.sys.
15 * Fixed negative IUsed in "df -i" output.
16
17 1.0.1 (2013-02-02)
18
19 * Fixed unexpected removal of a directory if it is moved into itself.
20 * Fixed "Operation not permitted" error on reading an empty file.
21
22 1.0.0 (2013-01-19)
23
24 * Fixed crash when renaming a file within a single directory and a new name
25 differs only in case.
26 * Fixed clusters allocation: a cluster beyond valid clusters range could be
27 allocated.
28 * Fixed crash when a volume is unmounted while some files are open.
29 * SConscript now respects AR and RANLIB environment variables.
30 * Improved error handling.
31
32 Linux:
33
34 * Enabled big_writes. This improves write speed (larger block size means less
35 switches between kernel- and user-space).
36 * Do BLKROGET ioctl to make sure the device is not read-only: after
37 "blockdev --setro" kernel still allows to open the device in read-write mode
38 but fails writes.
39
40 OS X:
41
42 * Fixed OS X 10.8 support.
43 * Switched to 64-bit inode numbers (now Mac OS X 10.5 or later is required).
44 * Switched from unmaintained MacFUSE to OSXFUSE (http://osxfuse.github.com).
45 * Fixed device size detection. Now mkfs works.
46 * Workarounded some utilities failures due to missing chmod() support.
47 * Disabled (senseless) permission checks made by FUSE.
48
49 0.9.8 (2012-08-09)
50
51 * The mkfs utility can now create huge file systems (up to several exabytes).
52 * Fixed handling of characters beyond Basic Multilingual Plane.
53 * Echo messages to syslog only if stderr is not connected to a terminal.
54
55 0.9.7 (2012-03-08)
56
57 * Out-of-the-box FreeBSD support (via ublio library).
58 * Fixed "missing EOD entry" error (could happen while reading directory that
59 consists of several clusters).
60 * Fixed interpretation of minutes field in files timestamps (minutes could be
61 displayed incorrectly).
62 * Fixed mtime seconds field initialization for newly created file (mtime could
63 be 1 sec less than creation time).
64 * SConscript now respects CC, CCFLAGS and LDFLAGS environment variables.
65
66 0.9.6 (2012-01-14)
67
68 * Fixed write performance regression introduced in 0.9.4.
69 * Mount in read-only mode if the device is write-protected.
70 * Set ctime to mtime to ensure we don't break programs that rely on ctime
71 (e.g. rsync considered that all files are outdated) [Eldad Zack].
72 * Indicate that FS in not clean when it was not cleanly unmounted.
73 * Utilities are now compatible with GNU/Hurd.
74 * Fixed several memory leaks that could occur on error handling paths.
75 * Improved handling of corrupted file systems.
76
77 0.9.5 (2011-05-15)
78
79 * Fixed erasing of the root directory cluster when creating a new FS with
80 mkexfatfs. This bug could cause mkexfatfs to produce invalid FS.
81 * Utilities are not linked with libfuse anymore.
82 * Ensure that the path being opened is either a device or a regular file.
83
84 0.9.4 (2011-03-05)
85
86 * Introduced exfat-utils: dumpexfat, exfatfsck, mkexfatfs, exfatlabel.
87 * Fixed "Invalid argument" error while mounting a volume from a disk with sector size greater than 512 bytes.
88 * Wait for all data to be flushed to disk on unmount.
89 * Kernel cache is no longer flushed on open. This can slightly improve read performance by avoiding extra read requests from kernel to user-space.
90 * Allow to unmount volumes as user (fusermount -u) if they were mounted from the very same user [Tino Lange].
91 * Errors and warnings are now duplicated to syslog.
92
93 0.9.3 (2010-09-25)
94
95 * Directories now can shrink.
96 * Improved timestamps resolution from 2 sec to 1 sec.
97 * Fixed timestamps displaying under Mac OS X when compiled for i386 or ppc.
98 * Fixed FS size displaying for non-GNU systems.
99
100 0.9.2 (2010-07-24)
101
102 * Fixed a bug which could cause the whole directory to become unreadable after renaming a file in it.
103 * Support for Solaris and various *BSD [Albert Lee].
104 * Improved error handling on corrupted volumes.
105 * Improved allowed file name characters filter.
106 * Added man page.
107
108 0.9.1 (2010-06-12)
109
110 * Implemented automounting (util-linux-ng 2.18 or later is required).
111 * Fixed mounting when cluster bitmap is larger than expected.
112 * Fixed crash on statfs() when root directory contains error.
113 * Fixed bugs specific to big-endian machines.
114 * Other bugfixes.
115
116 0.9.0 (2010-03-21)
117
118 * Initial release.