Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package deskflow for openSUSE:Factory checked in at 2025-11-24 14:09:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/deskflow (Old) and /work/SRC/openSUSE:Factory/.deskflow.new.14147 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "deskflow" Mon Nov 24 14:09:14 2025 rev:6 rq:1319169 version:1.25.0 Changes: -------- --- /work/SRC/openSUSE:Factory/deskflow/deskflow.changes 2025-09-16 18:20:21.588050297 +0200 +++ /work/SRC/openSUSE:Factory/.deskflow.new.14147/deskflow.changes 2025-11-24 14:10:37.088873433 +0100 @@ -1,0 +2,14 @@ +Fri Nov 21 18:46:29 UTC 2025 - Richard Rahl <[email protected]> + +- Update to version 1.25.0: + * REMOVED FEATURES: + - CLI11 options + - old deskflow-core cli options + - TOMLPLUSPLUS and ENV files to set the configuration + * Support symbolic icon deployment and recoloring linux + * Support dynamic panel icon coloring + * Show milliseconds in time values + * Expose GuiDebug settings + * Save geometry into into a state file + +------------------------------------------------------------------- Old: ---- deskflow-1.24.0.tar.gz New: ---- deskflow-1.25.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ deskflow.spec ++++++ --- /var/tmp/diff_new_pack.tvEize/_old 2025-11-24 14:10:38.332925711 +0100 +++ /var/tmp/diff_new_pack.tvEize/_new 2025-11-24 14:10:38.340926047 +0100 @@ -1,7 +1,7 @@ # # spec file for package deskflow # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %define qt6ver 6.7.0 %define appid org.deskflow.deskflow Name: deskflow -Version: 1.24.0 +Version: 1.25.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 @@ -35,6 +35,7 @@ BuildRequires: pkgconfig(CLI11) BuildRequires: pkgconfig(Qt6Core) >= %{qt6ver} BuildRequires: pkgconfig(Qt6DBus) >= %{qt6ver} +BuildRequires: pkgconfig(Qt6Linguist) >= %{qt6ver} BuildRequires: pkgconfig(Qt6Network) >= %{qt6ver} BuildRequires: pkgconfig(Qt6Test) >= %{qt6ver} BuildRequires: pkgconfig(Qt6Widgets) >= %{qt6ver} @@ -74,6 +75,7 @@ %description doc %{summary}. + %prep %autosetup -p1 @@ -90,7 +92,7 @@ %cmake_install install -Dm0644 ./deploy/linux/%{appid}.desktop %{buildroot}%{_datadir}/applications/%{appid}.desktop install -Dm0644 ./deploy/linux/%{appid}.metainfo.xml %{buildroot}%{_datadir}/metainfo/%{appid}.metainfo.xml -install -Dm0644 ./deploy/linux/%{name}.png %{buildroot}%{_datadir}/icons/hicolor/512x512/apps/%{appid}.png +install -Dm0644 ./deploy/linux/%{appid}.png %{buildroot}%{_datadir}/icons/hicolor/512x512/apps/%{appid}.png %fdupes %{buildroot}%{_docdir} %check @@ -101,6 +103,7 @@ %doc README.md %{_bindir}/%{name} %{_bindir}/%{name}-core +%{_datadir}/%{name} %{_datadir}/applications/%{appid}.desktop %{_datadir}/icons/hicolor/512x512/apps/%{appid}.png %{_datadir}/metainfo/%{appid}.metainfo.xml ++++++ deskflow-1.24.0.tar.gz -> deskflow-1.25.0.tar.gz ++++++ ++++ 27126 lines of diff (skipped) ++++++ disable-updater.patch ++++++ --- /var/tmp/diff_new_pack.tvEize/_old 2025-11-24 14:10:43.009122438 +0100 +++ /var/tmp/diff_new_pack.tvEize/_new 2025-11-24 14:10:43.053124290 +0100 @@ -1,7 +1,7 @@ -diff -rubN deskflow-1.24.0/src/lib/gui/dialogs/SettingsDialog.cpp deskflow-1.24.0-patched/src/lib/gui/dialogs/SettingsDialog.cpp ---- deskflow-1.24.0/src/lib/gui/dialogs/SettingsDialog.cpp 2025-09-11 16:59:52.000000000 +0200 -+++ deskflow-1.24.0-patched/src/lib/gui/dialogs/SettingsDialog.cpp 2025-09-16 13:39:21.246020745 +0200 -@@ -144,7 +144,6 @@ +diff -rubN deskflow-1.25.0/src/lib/gui/dialogs/SettingsDialog.cpp deskflow-1.25.0-patched/src/lib/gui/dialogs/SettingsDialog.cpp +--- deskflow-1.25.0/src/lib/gui/dialogs/SettingsDialog.cpp 2025-11-21 15:09:53.000000000 +0000 ++++ deskflow-1.25.0-patched/src/lib/gui/dialogs/SettingsDialog.cpp 2025-11-21 18:33:54.237928288 +0000 +@@ -165,7 +165,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,15 +9,15 @@ 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()); -@@ -178,7 +177,6 @@ +@@ -203,7 +202,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); -@@ -262,7 +260,6 @@ + ui->sbScrollSpeed->setValue(Settings::value(Settings::Client::ScrollSpeed).toInt()); + ui->cbGuiDebug->setChecked(Settings::value(Settings::Log::GuiDebug).toBool()); + ui->cbUseWlClipboard->setChecked(Settings::value(Settings::Core::UseWlClipboard).toBool()); +@@ -295,7 +293,6 @@ ui->comboLogLevel->setEnabled(writable); ui->cbLogToFile->setEnabled(writable); ui->cbAutoHide->setEnabled(writable); @@ -25,16 +25,16 @@ ui->cbPreventSleep->setEnabled(writable); ui->lineTlsCertPath->setEnabled(writable); ui->comboTlsKeyLength->setEnabled(writable); -diff -rubN deskflow-1.24.0/src/lib/gui/dialogs/SettingsDialog.ui deskflow-1.24.0-patched/src/lib/gui/dialogs/SettingsDialog.ui ---- deskflow-1.24.0/src/lib/gui/dialogs/SettingsDialog.ui 2025-09-11 16:59:52.000000000 +0200 -+++ deskflow-1.24.0-patched/src/lib/gui/dialogs/SettingsDialog.ui 2025-09-16 13:39:50.689917303 +0200 -@@ -78,13 +78,6 @@ +diff -rubN deskflow-1.25.0/src/lib/gui/dialogs/SettingsDialog.ui deskflow-1.25.0-patched/src/lib/gui/dialogs/SettingsDialog.ui +--- deskflow-1.25.0/src/lib/gui/dialogs/SettingsDialog.ui 2025-11-21 15:09:53.000000000 +0000 ++++ deskflow-1.25.0-patched/src/lib/gui/dialogs/SettingsDialog.ui 2025-11-21 18:35:19.472529908 +0000 +@@ -105,13 +105,6 @@ </property> - <layout class="QVBoxLayout" name="_9"> + <layout class="QVBoxLayout" name="verticalLayout_2"> <item> - <widget class="QCheckBox" name="cbAutoUpdate"> - <property name="text"> -- <string>Check for updates on startup </string> +- <string>Check for updates on startup</string> - </property> - </widget> - </item> @@ -42,10 +42,10 @@ <widget class="QCheckBox" name="cbAutoHide"> <property name="text"> <string>Hide the window when the app starts</string> -diff -rubN deskflow-1.24.0/src/lib/gui/MainWindow.cpp deskflow-1.24.0-patched/src/lib/gui/MainWindow.cpp ---- deskflow-1.24.0/src/lib/gui/MainWindow.cpp 2025-09-11 16:59:52.000000000 +0200 -+++ deskflow-1.24.0-patched/src/lib/gui/MainWindow.cpp 2025-09-16 13:40:34.865744851 +0200 -@@ -672,6 +672,7 @@ +diff -rubN deskflow-1.25.0/src/lib/gui/MainWindow.cpp deskflow-1.25.0-patched/src/lib/gui/MainWindow.cpp +--- deskflow-1.25.0/src/lib/gui/MainWindow.cpp 2025-11-21 15:09:53.000000000 +0000 ++++ deskflow-1.25.0-patched/src/lib/gui/MainWindow.cpp 2025-11-21 18:37:12.053894888 +0000 +@@ -660,6 +660,7 @@ const auto kCriticalDialogDelay = 100; QTimer::singleShot(kCriticalDialogDelay, this, &messages::raiseCriticalDialog);
