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