Compare commits
11 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 06363e5544 | |||
| 924298c221 | |||
| 2e1ef9bcb9 | |||
| 6f6e6f646b | |||
| 46cced8e8f | |||
| f11e9e22b9 | |||
| 047909d17f | |||
| c9852f3f26 | |||
| e439c8a5ff | |||
| 65262e0e3d | |||
| c86c087bcb |
BIN
1.2.5.tar.gz
LFS
BIN
1.2.5.tar.gz
LFS
Binary file not shown.
3
1.3.0.tar.gz
Normal file
3
1.3.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4f9707d8af3479d661a4a3c095c219d417c20785d9dc4d048b61c6023288f7d2
|
||||
size 188241
|
||||
@@ -1,3 +1,72 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 30 07:40:01 UTC 2025 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
- Update to 1.3.0:
|
||||
Features:
|
||||
* defrag.exfat: add a tool to defragment an exFAT filesystem or assess
|
||||
its fragmentation status. See a man page.
|
||||
Changes:
|
||||
* mkfs.exfat: minimize zero-out initialization work in quick format mode
|
||||
to reduce I/O time. * fsck.exfat: set the entry after an unused entry as unused.
|
||||
Bug fixes:
|
||||
* mkfs.exfat: fix incorrect FAT byte length calculation.
|
||||
* mkfs.exfat: avoid setting physical sector size into sector_size field.
|
||||
* fsck.exfat: fix a memory leaks in an error path.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 14 07:13:13 UTC 2025 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
- Update to 1.2.9:
|
||||
* dump.exfat: support dumping directory entry sets,
|
||||
which prints all fields of directory entries and
|
||||
cluster chains. See a man page.
|
||||
* exfatprogs: update the Github action for build test
|
||||
with Debain + clang + lld.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 4 13:31:22 UTC 2025 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
- Update to 1.2.8:
|
||||
* dump.exfat: fix an incorrect output of an entry
|
||||
position in 32-bit system.
|
||||
* mkfs.exfat: fill an oem sector with zero instead
|
||||
of one.
|
||||
* exfatprogs: fix compilation on musl based systems
|
||||
due to loff_t type. And update the Github action
|
||||
to validate builds on the system.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 5 08:22:57 UTC 2025 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
- Update to 1.2.7:
|
||||
NEW FEATURES :
|
||||
* fsck.exfat: support repairing the upcase table.
|
||||
CHANGES :
|
||||
* exfatprogs: make sure to load the tbl preprocessor
|
||||
for man pages.
|
||||
BUG FIXES :
|
||||
* exfatprogs: fix a double free memory error.
|
||||
* dump.exfat: fix a constraint that volume label, bitmap,
|
||||
upcase table must be located at the beginning of a root
|
||||
directory.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 27 08:01:54 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
- Update to 1.2.6:
|
||||
CHANGES :
|
||||
* exfatprogs: replace obsolete autoconf and libtool
|
||||
macros.
|
||||
* mkfs.exfat: prefer the physical block size over
|
||||
the logical block size for the exFAT sector size.
|
||||
* mkfs.exfat: add notes about the format of the volume
|
||||
GUID to the man page.
|
||||
* mkfs.exfat: fix an incorrect calculation of the number
|
||||
of used clusters.
|
||||
BUG FIXES :
|
||||
* exfatlabel: fix an user input error when setting
|
||||
a volume serial or label.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 7 05:39:31 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package exfatprogs
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: exfatprogs
|
||||
Version: 1.2.5
|
||||
Version: 1.3.0
|
||||
Release: 0
|
||||
Summary: Utilities for exFAT file system maintenance
|
||||
License: GPL-2.0-or-later
|
||||
@@ -61,12 +61,14 @@ autoreconf -fi
|
||||
%license COPYING
|
||||
%doc README.md
|
||||
%{_mandir}/man8/dump.exfat.8%{?ext_man}
|
||||
%{_mandir}/man8/defrag.exfat.8%{?ext_man}
|
||||
%{_mandir}/man8/exfatlabel.8%{?ext_man}
|
||||
%{_mandir}/man8/fsck.exfat.8%{?ext_man}
|
||||
%{_mandir}/man8/mkfs.exfat.8%{?ext_man}
|
||||
%{_mandir}/man8/tune.exfat.8%{?ext_man}
|
||||
%{_mandir}/man8/exfat2img.8%{?ext_man}
|
||||
%{_sbindir}/dump.exfat
|
||||
%{_sbindir}/defrag.exfat
|
||||
%{_sbindir}/exfatlabel
|
||||
%{_sbindir}/fsck.exfat
|
||||
%{_sbindir}/mkfs.exfat
|
||||
|
||||
Reference in New Issue
Block a user