Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
deepin-diskmanager (6.0.21) unstable; urgency=medium

* fix: Fix non-reproducible builds
* refactor: Service safety rectification
* fix: Fix exfat formatting failure

-- wangrong <wangrong@uniontech.com> Thu, 30 Oct 2025 20:00:44 +0800

deepin-diskmanager (6.0.20) unstable; urgency=medium

* fix: Fix fail to verify bad sectors
Expand Down
7 changes: 2 additions & 5 deletions service/diskoperation/filesystems/exfat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,8 @@ FS ExFat::getFilesystemSupport()

QString output, error;
if (!Utils::findProgramInPath("mkfs.exfat").isEmpty()) {
qDebug() << "mkfs.exfat found, checking version for create support";
if (Utils::executCmd("mkfs.exfat -V", output, error) == 0) {
qDebug() << "mkfs.exfat version check successful, enabling create support";
fs.create = FS::EXTERNAL;
}
qDebug() << "mkfs.exfat found, enabling create support";
fs.create = FS::EXTERNAL;
}

if (!Utils::findProgramInPath("tune.exfat").isEmpty()) {
Expand Down
Loading