]> git.sven.stormbind.net Git - sven/exfatprogs.git/blob - NEWS
072344e10c7fbf67d4e37af3e2fa0761528f4ae5
[sven/exfatprogs.git] / NEWS
1 exfatprogs 1.2.4 - released 2024-06-17
2 ======================================
3
4 BUG FIXES :
5  * tune.exfat: Fix "invalid serial number" error when
6    setting an serial number.
7  * fsck.exfat: Fix memory leak in an error path
8
9 exfatprogs 1.2.3 - released 2024-05-23
10 ======================================
11
12 CHANGES :
13  * dump.exfat: Report sector size in bytes and cluster size in
14    terms of sectors.
15  * fsck.exfat: Show checksum value if the SetChecksum of File
16    directory entry is invalid.
17  * mkfs.exfat: Improve FAT length calculation to reduce
18    the FAT size.
19
20 NEW FEATURES :
21  * mkfs.exfat: Add the option "--sector-size".
22  * fsck.exfat: Support checking and repairing VendorAllcation and
23    VendorExtension directory entries.
24
25 BUG FIXES :
26  * exfatprogs: Remove unnecessary memory allocations.
27  * fsck.exfat: Fix corruption that can occur if the cluster size
28    is 512-byte.
29  * fsck.exfat: Fix the SecondaryCount of File directory entry
30    when the count of Name directory entries is 17 or higher.
31  * tune.exfat: Fix an error that accepts invalid serial numbers.
32
33 exfatprogs 1.2.2 - released 2023-10-26
34 ======================================
35
36 CHANGES :
37  * exfat2img: Allow dumps for read-only devices.
38  * fsck.exfat: Revert Repairing zero size directory.
39
40 NEW FEATURES :
41  * fsck.exfat: Repair duplicated filename.
42  * mkfs.exfat: Add the option "q" to print only error messages.
43  * mkfs.exfat: Add the option "U" to set volume GUID.
44  * tune.exfat: Add the option "U" / "-u" to set or print volume GUID.
45
46 BUG FIXES:
47  * fsck.exfat: Fix some out-of-bounds memory accesses.
48  * fsck.exfat: Change not to delete volume GUID directory entry.
49
50 exfatprogs 1.2.1 - released 2023-05-17
51 ======================================
52
53 CHANGES :
54  * fsck.exfat: Repair zero size directory.
55  * fsck.exfat: Four small clean-ups.
56
57 exfatprogs 1.2.0 - released 2022-10-28
58 ======================================
59
60 CHANGES :
61  * fsck.exfat: Keep traveling files even if there is a corrupted
62 directory entry set.
63  * fsck.exfat: Introduce the option "b" to recover a boot sector even
64 if an exFAT filesystem is not found.
65  * fsck.exfat: Introduce the option "s" to create files in
66 "/LOST+FOUND", which have clusters allocated but was not belonged to
67 any files.
68  * fsck.exfat: Rename '.' and '..' entry name to the one user want.
69
70 NEW FEATURES :
71  * fsck.exfat: Repair corruptions of an exFAT filesystem. Please refer
72 to fsck.exfat manpage to see what kind of corruptions can be repaired.
73  * exfat2img: Dump metadata of an exFAT filesystem. Please refer to
74 exfat2img manpage to see how to use it.
75
76 BUG FIXES:
77  * fsck.exfat: Fix an infinite loop while traveling files.
78  * tune.exfat: Fix bitmap entry corruption when adding new volume lablel.
79
80 exfatprogs 1.1.3 - released 2021-11-11
81 ======================================
82
83 CHANGES :
84  * mkfs.exfat: ensure that the cluster size is greater than or
85    equal than the sector size.
86  * mkfs.exfat: replace lseek() + write() with pwrite().
87
88 BUG FIXES :
89  * mkfs.exfat: prevent an integer overflow when computing the FAT
90    length.
91  * fsck.exfat: fix a double free memory error.
92
93 exfatprogs 1.1.2 - released 2021-05-20
94 ======================================
95
96 CHANGES :
97  * mkfs.exfat: set 0x80 to DriveSelect of the boot sector
98
99 BUG FIXES :
100  * Fix issues on 4KB logical sector devices
101  * Fix issues when the sector size of of a file system is different from
102    that of a block device.
103
104 exfatprogs 1.1.1 - released 2021-04-21
105 ======================================
106
107 CHANGES :
108  * mkfs.exfat: adjust the boundary alignment calculations to compensate
109    for the volume offset.
110
111 NEW FEATURES :
112  * mkfs.exfat: add the "--pack-bitmap" option to relocate the allocation
113    bitmap to allow the FAT and the bitmap to share the same allocation
114    unit on flash media.
115
116 BUG FIXES :
117  * Fix wrong bit operations on 64-bit big.
118  * Fix memory leaks in error paths.
119
120 exfatprogs 1.1.0 - released 2021-02-09
121 ======================================
122
123 CHANGES :
124  * fsck.exfat: recover corrupted boot region.
125
126 NEW FEATURES :
127  * exfatlabel: Print or Set volume label and serial.
128  * dump.exfat: Show the on-disk metadata information and the statistics.
129
130 BUG FIXES :
131  * set _FILE_OFFSET_BITS=64 for Android build.
132
133 exfatprogs 1.0.4 - released 2020-07-31
134 ======================================
135
136 CHANGES :
137  * fsck.exfat: display sector, cluster, and volume sizes in the human
138    readable format.
139  * fsck.exfat: reduce the elapsed time using read-ahead.
140
141 NEW FEATURES :
142  * mkfs.exfat: generate pseudo unique serials while creating filesystems.
143  * mkfs.exfat: add the "-b" option to align the start offset of FAT and
144    data clusters.
145  * fsck.exfat: repair zero-byte files which have the NoFatChain attribute.
146
147 BUG FIXES :
148  * Fix memory leaks on error handling paths.
149  * fsck.exfat: fix the bug that cannot access space beyond 2TB.
150
151 exfatprogs 1.0.3 - released 2020-05-12
152 ======================================
153
154 CHANGES :
155  * Rename label.exfat to tune.exfat.
156  * tune.exfat: change argument style(-l option for print level,
157    -L option for setting label)
158  * mkfs.exfat: harmonize set volume label option with tune.exfat.
159
160 NEW FEATURES :
161  * Add man page.
162
163 BUG FIXES :
164  * Fix the reported build warnings/errors.
165  * Add memset to clean garbage in allocation.
166  * Fix wrong volume label array size.
167  * Open a device using O_EXCL to avoid formatting it while it is mounted.
168  * Fix incomplete "make dist" generated tarball.
169
170
171 exfatprogs 1.0.2 - released 2020-04-23
172 ======================================
173
174 CHANGES :
175  * Rename project name to exfatprogs.
176  * Replace iconv library by standard C functions mbstowcs() and wcrtomb().
177
178 NEW FEATURES :
179  * Add support for Android build system.
180  * label.exfat: Add support for label.exfat to set/get exfat volume label.
181
182 BUG FIXES :
183  * Fix the build warnings/errors and add warning options.
184  * Fix several bugs(memory leak, wrong endian conversion, zero out beyond
185    end of file) and cleanup codes
186  * Fix issues on big endian system and on 32bit system.
187
188
189 exfatprogs 1.0.1 - released 2020-04-09
190 ======================================
191
192 NEW FEATURES :
193  * mkfs.exfat: quick/full format support
194  * mkfs.exfat: specify cluster size
195  * mkfs.exfat: set volume label
196  * fsck.exfat: consistency check support