File tree Expand file tree Collapse file tree
src/services/tpmcontrol/core Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ dde-file-manager (6.5.135) unstable; urgency=medium
2+
3+ * fix: handle network disconnection during search and remote file operations
4+ * refactor: consolidate signal handling logic
5+ * feat: add checksum verification for disc burning
6+ * chore: update translations
7+ * feat: add touch gesture support for sidebar scrolling
8+ * fix: improve dock area calculation accuracy
9+ * refactor: replace system calls with QProcess for security
10+ * feat: add property dialog update mechanism for file rename
11+ * fix: prevent auth dialog when auto-mounting hot-plugged devices
12+ * refactor: improve headless process startup implementation
13+ * feat: pass launch_type when launching apps via DBus
14+
15+ -- Zhang Sheng <zhangsheng@uniontech.com> Fri, 08 May 2026 13:46:49 +0800
16+
117dde-file-manager (6.5.134) unstable; urgency=medium
218
319 * fix: handle file paths correctly in terminal open operation
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ int TPMWork::checkTPMLockout()
101101 fmCritical () << " Failed to start tpm2_getcap" ;
102102 return -1 ;
103103 }
104- if (!proc.waitForFinished (30000 )) {
104+ if (!proc.waitForFinished ()) {
105105 fmCritical () << " tpm2_getcap timed out after 30s" ;
106106 proc.kill ();
107107 proc.waitForFinished ();
@@ -114,7 +114,7 @@ int TPMWork::checkTPMLockout()
114114
115115 QByteArray output = proc.readAllStandardOutput ();
116116 QList<QByteArray> lines = output.split (' \n ' );
117- int lockoutStatus = -2 ; // not find "inLockout:"
117+ int lockoutStatus = -2 ; // not find "inLockout:"
118118 fmDebug () << " Parsing TPM properties from tpm2_getcap output" ;
119119 for (const QByteArray &line : lines) {
120120 if (line.contains (" inLockout:" )) {
@@ -158,7 +158,7 @@ int TPMWork::getRandom(int size, QString *output)
158158 }
159159
160160 // Dynamically allocate buffer matching the requested size
161- QByteArray buffer (size + 1 , 0 ); // +1 for null terminator
161+ QByteArray buffer (size + 1 , 0 ); // +1 for null terminator
162162 int ret = func (size, buffer.data ());
163163 if (ret == 0 ) {
164164 *output = QString::fromLatin1 (buffer.constData ());
You can’t perform that action at this time.
0 commit comments