Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix config and new 0.9.2 tag #536

Merged
merged 1 commit into from
Oct 9, 2024
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
9 changes: 8 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
dde-cooperation (0.9.2) unstable; urgency=medium

* v0.9.2 version update.
* fix some issues.

-- re2zero <yangwu@uniontech.com> Tue, 08 Oct 2024 15:08:16 +0800

dde-cooperation (0.9.1) unstable; urgency=medium

* v0.9.1 version update.
Expand All @@ -10,7 +17,7 @@ dde-cooperation (0.9.0) unstable; urgency=medium
* v0.9.0 version update.
* added a new communication method that is compatible with previous versions.

-- liujinchang <liujinchang@uniontech.com> Aug, 28 Wed 2024 09:51:44 +0800
-- liujinchang <liujinchang@uniontech.com> Wed, 28 Aug 2024 09:51:44 +0800

dde-cooperation (0.8.0) unstable; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion src/configs/settings/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ bool Settings::setValueNoNotify(const QString &group, const QString &key, const

changed = true;
} else {
changed = this->value(group, key, value) != value;
changed = this->value(group, key) != value;
}

d->writableData.setValue(group, key, value);
Expand Down
Loading