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