OSDN Git Service

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