• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1exfatprogs 1.1.3 - released 2021-11-11
2======================================
3
4CHANGES :
5 * mkfs.exfat: ensure that the cluster size is greater than or
6   equal than the sector size.
7 * mkfs.exfat: replace lseek() + write() with pwrite().
8
9BUG FIXES :
10 * mkfs.exfat: prevent an integer overflow when computing the FAT
11   length.
12 * fsck.exfat: fix a double free memory error.
13
14exfatprogs 1.1.2 - released 2021-05-20
15======================================
16
17CHANGES :
18 * mkfs.exfat: set 0x80 to DriveSelect of the boot sector
19
20BUG FIXES :
21 * Fix issues on 4KB logical sector devices
22 * Fix issues when the sector size of of a file system is different from
23   that of a block device.
24
25exfatprogs 1.1.1 - released 2021-04-21
26======================================
27
28CHANGES :
29 * mkfs.exfat: adjust the boundary alignment calculations to compensate
30   for the volume offset.
31
32NEW FEATURES :
33 * mkfs.exfat: add the "--pack-bitmap" option to relocate the allocation
34   bitmap to allow the FAT and the bitmap to share the same allocation
35   unit on flash media.
36
37BUG FIXES :
38 * Fix wrong bit operations on 64-bit big.
39 * Fix memory leaks in error paths.
40
41exfatprogs 1.1.0 - released 2021-02-09
42======================================
43
44CHANGES :
45 * fsck.exfat: recover corrupted boot region.
46
47NEW FEATURES :
48 * exfatlabel: Print or Set volume label and serial.
49 * dump.exfat: Show the on-disk metadata information and the statistics.
50
51BUG FIXES :
52 * set _FILE_OFFSET_BITS=64 for Android build.
53
54exfatprogs 1.0.4 - released 2020-07-31
55======================================
56
57CHANGES :
58 * fsck.exfat: display sector, cluster, and volume sizes in the human
59   readable format.
60 * fsck.exfat: reduce the elapsed time using read-ahead.
61
62NEW FEATURES :
63 * mkfs.exfat: generate pseudo unique serials while creating filesystems.
64 * mkfs.exfat: add the "-b" option to align the start offset of FAT and
65   data clusters.
66 * fsck.exfat: repair zero-byte files which have the NoFatChain attribute.
67
68BUG FIXES :
69 * Fix memory leaks on error handling paths.
70 * fsck.exfat: fix the bug that cannot access space beyond 2TB.
71
72exfatprogs 1.0.3 - released 2020-05-12
73======================================
74
75CHANGES :
76 * Rename label.exfat to tune.exfat.
77 * tune.exfat: change argument style(-l option for print level,
78   -L option for setting label)
79 * mkfs.exfat: harmonize set volume label option with tune.exfat.
80
81NEW FEATURES :
82 * Add man page.
83
84BUG FIXES :
85 * Fix the reported build warnings/errors.
86 * Add memset to clean garbage in allocation.
87 * Fix wrong volume label array size.
88 * Open a device using O_EXCL to avoid formatting it while it is mounted.
89 * Fix incomplete "make dist" generated tarball.
90
91
92exfatprogs 1.0.2 - released 2020-04-23
93======================================
94
95CHANGES :
96 * Rename project name to exfatprogs.
97 * Replace iconv library by standard C functions mbstowcs() and wcrtomb().
98
99NEW FEATURES :
100 * Add support for Android build system.
101 * label.exfat: Add support for label.exfat to set/get exfat volume label.
102
103BUG FIXES :
104 * Fix the build warnings/errors and add warning options.
105 * Fix several bugs(memory leak, wrong endian conversion, zero out beyond
106   end of file) and cleanup codes
107 * Fix issues on big endian system and on 32bit system.
108
109
110exfatprogs 1.0.1 - released 2020-04-09
111======================================
112
113NEW FEATURES :
114 * mkfs.exfat: quick/full format support
115 * mkfs.exfat: specify cluster size
116 * mkfs.exfat: set volume label
117 * fsck.exfat: consistency check support
118