* add restart action fixes * remove defunct --no-xinitThreads option * improve connections status bar info * Enforce a minimum TLS size of 2048bit * Wayland, only set a side to a border if if has a neighboring screen * core not starting if gui started minimized * Error text is not shown for Qt CLI parser * save geometry not frameGeometry on exit * adjust windows installer images and their sizes, remove synergy background image from install * setWindowIcon explicitly OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/deskflow?expand=0&rev=5
56 lines
3.3 KiB
Diff
56 lines
3.3 KiB
Diff
diff -rub deskflow-1.23.0/src/lib/gui/dialogs/SettingsDialog.cpp deskflow-1.23.0-patched/src/lib/gui/dialogs/SettingsDialog.cpp
|
|
--- deskflow-1.23.0/src/lib/gui/dialogs/SettingsDialog.cpp 2025-07-23 15:27:06.000000000 +0200
|
|
+++ deskflow-1.23.0-patched/src/lib/gui/dialogs/SettingsDialog.cpp 2025-07-23 16:10:11.418491973 +0200
|
|
@@ -133,7 +133,6 @@
|
|
Settings::setValue(Settings::Log::File, ui->lineLogFilename->text());
|
|
Settings::setValue(Settings::Daemon::Elevate, ui->cbElevateDaemon->isChecked());
|
|
Settings::setValue(Settings::Gui::Autohide, ui->cbAutoHide->isChecked());
|
|
- Settings::setValue(Settings::Gui::AutoUpdateCheck, ui->cbAutoUpdate->isChecked());
|
|
Settings::setValue(Settings::Core::PreventSleep, ui->cbPreventSleep->isChecked());
|
|
Settings::setValue(Settings::Security::Certificate, ui->lineTlsCertPath->text());
|
|
Settings::setValue(Settings::Security::KeySize, ui->comboTlsKeyLength->currentText().toInt());
|
|
@@ -167,7 +166,6 @@
|
|
ui->cbScrollDirection->setChecked(Settings::value(Settings::Client::InvertScrollDirection).toBool());
|
|
ui->cbCloseToTray->setChecked(Settings::value(Settings::Gui::CloseToTray).toBool());
|
|
ui->cbElevateDaemon->setChecked(Settings::value(Settings::Daemon::Elevate).toBool());
|
|
- ui->cbAutoUpdate->setChecked(Settings::value(Settings::Gui::AutoUpdateCheck).toBool());
|
|
|
|
const auto processMode = Settings::value(Settings::Core::ProcessMode).value<Settings::ProcessMode>();
|
|
ui->groupService->setChecked(processMode == Settings::ProcessMode::Service);
|
|
@@ -258,7 +256,6 @@
|
|
ui->comboLogLevel->setEnabled(writable);
|
|
ui->cbLogToFile->setEnabled(writable);
|
|
ui->cbAutoHide->setEnabled(writable);
|
|
- ui->cbAutoUpdate->setEnabled(writable);
|
|
ui->cbPreventSleep->setEnabled(writable);
|
|
ui->lineTlsCertPath->setEnabled(writable);
|
|
ui->comboTlsKeyLength->setEnabled(writable);
|
|
diff -rub deskflow-1.23.0/src/lib/gui/dialogs/SettingsDialog.ui deskflow-1.23.0-patched/src/lib/gui/dialogs/SettingsDialog.ui
|
|
--- deskflow-1.23.0/src/lib/gui/dialogs/SettingsDialog.ui 2025-07-23 15:27:06.000000000 +0200
|
|
+++ deskflow-1.23.0-patched/src/lib/gui/dialogs/SettingsDialog.ui 2025-07-23 16:10:40.154771473 +0200
|
|
@@ -85,13 +85,6 @@
|
|
</property>
|
|
<layout class="QVBoxLayout" name="_9">
|
|
<item>
|
|
- <widget class="QCheckBox" name="cbAutoUpdate">
|
|
- <property name="text">
|
|
- <string>Check for updates on startup </string>
|
|
- </property>
|
|
- </widget>
|
|
- </item>
|
|
- <item>
|
|
<widget class="QCheckBox" name="cbCloseToTray">
|
|
<property name="text">
|
|
<string>Leave app running in notification area when the window is closed</string>
|
|
diff -rub deskflow-1.23.0/src/lib/gui/MainWindow.cpp deskflow-1.23.0-patched/src/lib/gui/MainWindow.cpp
|
|
--- deskflow-1.23.0/src/lib/gui/MainWindow.cpp 2025-07-23 15:27:06.000000000 +0200
|
|
+++ deskflow-1.23.0-patched/src/lib/gui/MainWindow.cpp 2025-07-23 16:11:37.707331245 +0200
|
|
@@ -634,6 +634,7 @@
|
|
const auto kCriticalDialogDelay = 100;
|
|
QTimer::singleShot(kCriticalDialogDelay, this, &messages::raiseCriticalDialog);
|
|
|
|
+ Settings::setValue(Settings::Gui::AutoUpdateCheck, false);
|
|
if (!Settings::value(Settings::Gui::AutoUpdateCheck).isValid()) {
|
|
Settings::setValue(Settings::Gui::AutoUpdateCheck, messages::showUpdateCheckOption(this));
|
|
}
|