2 Commits

Author SHA256 Message Date
8b3eaab0cb Accepting request 1295355 from X11:Utilities
- update to version 1.23.0:
  * 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/request/show/1295355
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deskflow?expand=0&rev=4
2025-07-24 16:44:05 +00:00
Richard Rahl
025f0ff912 - update to version 1.23.0:
* 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
2025-07-23 14:25:21 +00:00
5 changed files with 34 additions and 18 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5ff6df6ba743b9a12b1fee408640916ef6940295115d58db10dd5aa013a0c1f3
size 1855676

3
deskflow-1.23.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c1f045174859642775bdff70e8732edc3b2bd815bdd16a2e9cd5ce9f420e1289
size 1825112

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Wed Jul 23 14:06:39 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>
- update to version 1.23.0:
* 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
-------------------------------------------------------------------
Mon Jun 30 07:54:40 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>

View File

@@ -19,7 +19,7 @@
%define qt6ver 6.7.0
%define appid org.deskflow.deskflow
Name: deskflow
Version: 1.22.0
Version: 1.23.0
Release: 0
Summary: Share a single keyboard and mouse between multiple computers
License: GPL-2.0-only AND MIT AND SUSE-GPL-2.0-with-openssl-exception AND LGPL-2.1-only

View File

@@ -1,7 +1,7 @@
diff -rub deskflow-1.22.0.orig/src/lib/gui/dialogs/SettingsDialog.cpp deskflow-1.22.0/src/lib/gui/dialogs/SettingsDialog.cpp
--- deskflow-1.22.0.orig/src/lib/gui/dialogs/SettingsDialog.cpp 2025-06-29 21:48:28.699626407 +0200
+++ deskflow-1.22.0/src/lib/gui/dialogs/SettingsDialog.cpp 2025-06-30 09:48:59.119608144 +0200
@@ -134,7 +134,6 @@
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());
@@ -9,7 +9,7 @@ diff -rub deskflow-1.22.0.orig/src/lib/gui/dialogs/SettingsDialog.cpp deskflow-1
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());
@@ -168,7 +167,6 @@
@@ -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());
@@ -17,7 +17,7 @@ diff -rub deskflow-1.22.0.orig/src/lib/gui/dialogs/SettingsDialog.cpp deskflow-1
const auto processMode = Settings::value(Settings::Core::ProcessMode).value<Settings::ProcessMode>();
ui->groupService->setChecked(processMode == Settings::ProcessMode::Service);
@@ -259,7 +257,6 @@
@@ -258,7 +256,6 @@
ui->comboLogLevel->setEnabled(writable);
ui->cbLogToFile->setEnabled(writable);
ui->cbAutoHide->setEnabled(writable);
@@ -25,9 +25,9 @@ diff -rub deskflow-1.22.0.orig/src/lib/gui/dialogs/SettingsDialog.cpp deskflow-1
ui->cbPreventSleep->setEnabled(writable);
ui->lineTlsCertPath->setEnabled(writable);
ui->comboTlsKeyLength->setEnabled(writable);
diff -rub deskflow-1.22.0.orig/src/lib/gui/dialogs/SettingsDialog.ui deskflow-1.22.0/src/lib/gui/dialogs/SettingsDialog.ui
--- deskflow-1.22.0.orig/src/lib/gui/dialogs/SettingsDialog.ui 2025-06-29 21:48:28.700626413 +0200
+++ deskflow-1.22.0/src/lib/gui/dialogs/SettingsDialog.ui 2025-06-30 09:42:29.698300043 +0200
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">
@@ -42,14 +42,14 @@ diff -rub deskflow-1.22.0.orig/src/lib/gui/dialogs/SettingsDialog.ui deskflow-1.
<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.22.0.orig/src/lib/gui/MainWindow.cpp deskflow-1.22.0/src/lib/gui/MainWindow.cpp
--- deskflow-1.22.0.orig/src/lib/gui/MainWindow.cpp 2025-06-29 21:48:28.691626355 +0200
+++ deskflow-1.22.0/src/lib/gui/MainWindow.cpp 2025-06-30 09:42:29.700300055 +0200
@@ -372,6 +372,7 @@
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()) {
showAndActivate();
Settings::setValue(Settings::Gui::AutoUpdateCheck, messages::showUpdateCheckOption(this));
}