Skip to content

Commit 89e955b

Browse files
committed
chore: bump version to 6.5.135
6.5.135 Log:
1 parent 05cd916 commit 89e955b

2 files changed

Lines changed: 19 additions & 3 deletions

File tree

debian/changelog

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
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+
117
dde-file-manager (6.5.134) unstable; urgency=medium
218

319
* fix: handle file paths correctly in terminal open operation

src/services/tpmcontrol/core/tpmwork.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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());

0 commit comments

Comments
 (0)