Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package deskflow for openSUSE:Factory checked in at 2026-02-20 17:42:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/deskflow (Old) and /work/SRC/openSUSE:Factory/.deskflow.new.1977 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "deskflow" Fri Feb 20 17:42:54 2026 rev:8 rq:1334066 version:1.26.0 Changes: -------- --- /work/SRC/openSUSE:Factory/deskflow/deskflow.changes 2025-12-26 14:37:36.810705688 +0100 +++ /work/SRC/openSUSE:Factory/.deskflow.new.1977/deskflow.changes 2026-02-20 17:51:06.976748482 +0100 @@ -1,0 +2,61 @@ +Thu Feb 19 11:43:53 UTC 2026 - Antonio Larrosa <[email protected]> + +- Update to version 1.26.0: + * Known Issues + - X11 Clients can have extra scroll added + - The fingerprint dialog button is not always show when it + should be + * Features + - Korean(ko) translation + - Option to start in the "locked to computer" state + - Option to show the version in the windows title + - Clients can now use a list hostnames or ips for the server + address + - Client options are in a new client configuration dialog + - Provide a more accurate suggested IP, Update as network info + changes if needed. + - Add a simple search to the log + - Lookup host name with IP4 or IP6 + - Replace broken scroll speed with a scroll scaling options + * Fixes + - deskflow-core crashes if hotkeys are not sent to all + machines. + - Horizontal scrolling is working again on all platforms + - Key repeat events are now sent as repeat not press and + release + - Deskflow-core correctly blocks new instances when run + without the --new-instance option + - Server Mode, Only use the external config path if the + option is enabled + - Allow comma and semicolon in hotkey config + - Gui can crash when clearing settings in debug mode + - Mouse Back and Forward buttons are now working (again) on + all platforms + - macOS, crash when the log is opened and the gui minimized + - macOS, restore Preferences menu entry when the application is + using non english language + - macOS, try icon was not showing when in Colorful mode + - macOS, do not allow the os to kill deskflow for memory + reasons + - macOS, possible server crash when a client disconnects + abruptly + - macOS, possible crash on screen wake / screen saver + activation + - macOS, Wrong keys send when using "RIME" input method + - Windows, possible crash when the daemon is started for the + first time + * General + - Use Computer in place of Screen to indicate we work with + Computers display layout and not individual screens attached + - Clean and update the settings when starting up. + - Do not show client connection error messages dialogs if the + gui is hidden + - Use Qt 6.9.3 for Intel Mac builds. + - Windows: Use ICU dlls from the host system + - Code continues to be cleaned of unused methods and updated to + modern C++ + - Consolidate Debug levels to remove DEBUG3-5 levels +- Rebase patch: + * disable-updater.patch + +------------------------------------------------------------------- Old: ---- deskflow-1.25.0.tar.gz New: ---- deskflow-1.26.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ deskflow.spec ++++++ --- /var/tmp/diff_new_pack.htSWrT/_old 2026-02-20 17:51:09.852868722 +0100 +++ /var/tmp/diff_new_pack.htSWrT/_new 2026-02-20 17:51:09.856868889 +0100 @@ -19,7 +19,7 @@ %define qt6ver 6.7.0 %define appid org.deskflow.deskflow Name: deskflow -Version: 1.25.0 +Version: 1.26.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 ++++++ deskflow-1.25.0.tar.gz -> deskflow-1.26.0.tar.gz ++++++ ++++ 18108 lines of diff (skipped) ++++++ disable-updater.patch ++++++ --- /var/tmp/diff_new_pack.htSWrT/_old 2026-02-20 17:51:12.084962038 +0100 +++ /var/tmp/diff_new_pack.htSWrT/_new 2026-02-20 17:51:12.088962205 +0100 @@ -10,13 +10,13 @@ Settings::setValue(Settings::Security::Certificate, ui->lineTlsCertPath->text()); Settings::setValue(Settings::Security::KeySize, ui->comboTlsKeyLength->currentText().toInt()); @@ -203,7 +202,6 @@ - ui->cbScrollDirection->setChecked(Settings::value(Settings::Client::InvertScrollDirection).toBool()); + ui->cbPreventSleep->setChecked(Settings::value(Settings::Core::PreventSleep).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()); - 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()); + ui->cbShowVersion->setChecked(Settings::value(Settings::Gui::ShowVersionInTitle).toBool()); @@ -295,7 +293,6 @@ ui->comboLogLevel->setEnabled(writable); ui->cbLogToFile->setEnabled(writable); @@ -39,9 +39,9 @@ - </widget> - </item> - <item> - <widget class="QCheckBox" name="cbAutoHide"> + <widget class="QCheckBox" name="cbShowVersion"> <property name="text"> - <string>Hide the window when the app starts</string> + <string>Include version in the window title</string> 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
