]> git.sven.stormbind.net Git - sven/exfat-utils.git/blob - ChangeLog
Increment dh compat level to 10.
[sven/exfat-utils.git] / ChangeLog
1 1.2.7 (2017-06-05)
2
3 * Fixed handling of two last clusters: operations with files that occupy these
4 clusters could fail.
5 * Fixed crash when started with stdin, stdout or stderr closed.
6
7 1.2.6 (2017-01-28)
8
9 * Operations with directories (except initial listing) now make less
10 read/write system calls.
11 * Fixed handling of files with optional tail entries (0xe0-0xff): videoclip
12 files created by Sony cameras were missing.
13 * Write operations now correctly return ENOSPC (instead of EIO) when there is
14 no free disk space left.
15 * Fixed max file name length: it's 255 16-bit code units (not 256).
16
17 1.2.5 (2016-12-05)
18
19 * Added an option for dumpexfat to show file fragments [Daniel Drake].
20 * Fixed crash when directory starts with an invalid cluster.
21 * Daylight saving time in now properly reflected in file timestamps.
22
23 1.2.4 (2016-06-03)
24
25 * Fixed wrong files names hashes when upper case table is compressed.
26 * Man pages are now installed by default.
27 * Commas and backslashes in device names are now escaped.
28
29 1.2.3 (2015-12-19)
30
31 * Fixed clusters loss when file renaming replaces target.
32
33 1.2.2 (2015-11-09)
34
35 * Improved reliability in case of a sudden unplug: FS will be in a clean state
36 after closing all files and performing sync(1).
37 * Fixed compilation on Debian GNU/kFreeBSD and GNU/Hurd platforms.
38 * Updated mount.exfat-fuse man page.
39
40 1.2.1 (2015-09-24)
41
42 * Fixed compatibility with Zalman VE-200: now newly created directories do not
43 have archive bit set.
44 * Fixed heap corruption: malformed FS can use invalid sector or cluster size.
45 * Fixed hang on mount: malformed FS can have cyclic references in the clusters
46 map.
47
48 1.2.0 (2015-08-26)
49
50 * Switched from SCons to autotools.
51 * Added musl libc support [Brendan Heading].
52 * Worked around "FS is larger than device" error for memory cards formatted by
53 Panasonic Lumix cameras.
54 * Worked around "unknown entry type 0xe1" error for memory cards formatted by
55 Sony cameras.
56
57 1.1.1 (2014-11-15)
58
59 * Fixed mkfs crash on some sectors-per-cluster (-s option) values.
60
61 1.1.0 (2014-07-08)
62
63 * Relicensed the project from GPLv3+ to GPLv2+.
64 * OpenBSD support [Helg Bredow].
65 * Improved I/O errors handling.
66 * Implemented fsync() and fsyncdir().
67 * Fixed crash on Mac OS X 10.5 caused by non-standard use of realpath(). Also
68 fixed TrueCrypt disks unmounting.
69 * Avoid extra erase on writes to the end of a file. This should improve linear
70 write speed.
71 * Allow arbitrary changing of lower 9 bits of mode. Allow owner/group changing
72 to the same owner/group. This fixes rsync.
73 * Fixed buffers overflows when handling lengthy file names.
74 * Fixed "real size does not equal to size" error on volumes with pagefile.sys.
75 * Fixed negative IUsed in "df -i" output.
76
77 1.0.1 (2013-02-02)
78
79 * Fixed unexpected removal of a directory if it is moved into itself.
80 * Fixed "Operation not permitted" error on reading an empty file.
81
82 1.0.0 (2013-01-19)
83
84 * Fixed crash when renaming a file within a single directory and a new name
85 differs only in case.
86 * Fixed clusters allocation: a cluster beyond valid clusters range could be
87 allocated.
88 * Fixed crash when a volume is unmounted while some files are open.
89 * SConscript now respects AR and RANLIB environment variables.
90 * Improved error handling.
91
92 Linux:
93
94 * Enabled big_writes. This improves write speed (larger block size means less
95 switches between kernel- and user-space).
96 * Do BLKROGET ioctl to make sure the device is not read-only: after
97 "blockdev --setro" kernel still allows to open the device in read-write mode
98 but fails writes.
99
100 OS X:
101
102 * Fixed OS X 10.8 support.
103 * Switched to 64-bit inode numbers (now Mac OS X 10.5 or later is required).
104 * Switched from unmaintained MacFUSE to OSXFUSE (http://osxfuse.github.com).
105 * Fixed device size detection. Now mkfs works.
106 * Workarounded some utilities failures due to missing chmod() support.
107 * Disabled (senseless) permission checks made by FUSE.
108
109 0.9.8 (2012-08-09)
110
111 * The mkfs utility can now create huge file systems (up to several exabytes).
112 * Fixed handling of characters beyond Basic Multilingual Plane.
113 * Echo messages to syslog only if stderr is not connected to a terminal.
114
115 0.9.7 (2012-03-08)
116
117 * Out-of-the-box FreeBSD support (via ublio library).
118 * Fixed "missing EOD entry" error (could happen while reading directory that
119 consists of several clusters).
120 * Fixed interpretation of minutes field in files timestamps (minutes could be
121 displayed incorrectly).
122 * Fixed mtime seconds field initialization for newly created file (mtime could
123 be 1 sec less than creation time).
124 * SConscript now respects CC, CCFLAGS and LDFLAGS environment variables.
125
126 0.9.6 (2012-01-14)
127
128 * Fixed write performance regression introduced in 0.9.4.
129 * Mount in read-only mode if the device is write-protected.
130 * Set ctime to mtime to ensure we don't break programs that rely on ctime
131 (e.g. rsync considered that all files are outdated) [Eldad Zack].
132 * Indicate that FS in not clean when it was not cleanly unmounted.
133 * Utilities are now compatible with GNU/Hurd.
134 * Fixed several memory leaks that could occur on error handling paths.
135 * Improved handling of corrupted file systems.
136
137 0.9.5 (2011-05-15)
138
139 * Fixed erasing of the root directory cluster when creating a new FS with
140 mkexfatfs. This bug could cause mkexfatfs to produce invalid FS.
141 * Utilities are not linked with libfuse anymore.
142 * Ensure that the path being opened is either a device or a regular file.
143
144 0.9.4 (2011-03-05)
145
146 * Introduced exfat-utils: dumpexfat, exfatfsck, mkexfatfs, exfatlabel.
147 * Fixed "Invalid argument" error while mounting a volume from a disk with sector size greater than 512 bytes.
148 * Wait for all data to be flushed to disk on unmount.
149 * Kernel cache is no longer flushed on open. This can slightly improve read performance by avoiding extra read requests from kernel to user-space.
150 * Allow to unmount volumes as user (fusermount -u) if they were mounted from the very same user [Tino Lange].
151 * Errors and warnings are now duplicated to syslog.
152
153 0.9.3 (2010-09-25)
154
155 * Directories now can shrink.
156 * Improved timestamps resolution from 2 sec to 1 sec.
157 * Fixed timestamps displaying under Mac OS X when compiled for i386 or ppc.
158 * Fixed FS size displaying for non-GNU systems.
159
160 0.9.2 (2010-07-24)
161
162 * Fixed a bug which could cause the whole directory to become unreadable after renaming a file in it.
163 * Support for Solaris and various *BSD [Albert Lee].
164 * Improved error handling on corrupted volumes.
165 * Improved allowed file name characters filter.
166 * Added man page.
167
168 0.9.1 (2010-06-12)
169
170 * Implemented automounting (util-linux-ng 2.18 or later is required).
171 * Fixed mounting when cluster bitmap is larger than expected.
172 * Fixed crash on statfs() when root directory contains error.
173 * Fixed bugs specific to big-endian machines.
174 * Other bugfixes.
175
176 0.9.0 (2010-03-21)
177
178 * Initial release.