diff --git a/debian/changelog b/debian/changelog index 4d6841e..2671086 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Thu, 30 Oct 2025 20:00:44 +0800 + deepin-diskmanager (6.0.20) unstable; urgency=medium * fix: Fix fail to verify bad sectors diff --git a/service/diskoperation/filesystems/exfat.cpp b/service/diskoperation/filesystems/exfat.cpp index f25cf4a..f015b16 100644 --- a/service/diskoperation/filesystems/exfat.cpp +++ b/service/diskoperation/filesystems/exfat.cpp @@ -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()) {