Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kate for openSUSE:Factory checked in at 2023-01-11 14:32:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kate (Old) and /work/SRC/openSUSE:Factory/.kate.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kate" Wed Jan 11 14:32:54 2023 rev:153 rq:1057166 version:22.12.1 Changes: -------- --- /work/SRC/openSUSE:Factory/kate/kate.changes 2023-01-07 17:17:37.625408814 +0100 +++ /work/SRC/openSUSE:Factory/.kate.new.32243/kate.changes 2023-01-11 14:32:55.492509986 +0100 @@ -1,0 +2,7 @@ +Mon Jan 9 21:05:14 UTC 2023 - Fabian Vogt <fab...@ritter-vogt.de> + +- Add patch to fix the save button in the ctags configuration + (kde#463993, boo#1206984): + * 0001-Fix-settings-saving-regression-in-CTags-plugin.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-settings-saving-regression-in-CTags-plugin.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kate.spec ++++++ --- /var/tmp/diff_new_pack.ypI83J/_old 2023-01-11 14:32:56.128513516 +0100 +++ /var/tmp/diff_new_pack.ypI83J/_new 2023-01-11 14:32:56.132513539 +0100 @@ -33,6 +33,8 @@ %endif # PATCH-FIX-OPENSUSE Patch0: 0001-Defuse-root-block.patch +# PATCH-FIX-UPSTREAM +Patch1: 0001-Fix-settings-saving-regression-in-CTags-plugin.patch BuildRequires: libgit2-devel BuildRequires: cmake(KF5Activities) BuildRequires: cmake(KF5Config) ++++++ 0001-Fix-settings-saving-regression-in-CTags-plugin.patch ++++++ >From 526d04db82d4b65c61b4b0f607c4b2ffa8a02f3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A5re=20S=C3=A4rs?= <kare.s...@iki.fi> Date: Sun, 8 Jan 2023 22:11:24 +0200 Subject: [PATCH] Fix settings saving regression in CTags plugin. BUG: 463993 FIXED-IN: 22.12.2 --- addons/kate-ctags/kate_ctags_plugin.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/addons/kate-ctags/kate_ctags_plugin.cpp b/addons/kate-ctags/kate_ctags_plugin.cpp index c878f5515..fc655bd01 100644 --- a/addons/kate-ctags/kate_ctags_plugin.cpp +++ b/addons/kate-ctags/kate_ctags_plugin.cpp @@ -73,6 +73,7 @@ KateCTagsConfigPage::KateCTagsConfigPage(QWidget *parent, KateCTagsPlugin *plugi { m_confUi.setupUi(this); m_confUi.cmdEdit->setText(DEFAULT_CTAGS_CMD); + connect(m_confUi.cmdEdit, &QLineEdit::textEdited, this, &KateCTagsConfigPage::changed); m_confUi.addButton->setToolTip(i18n("Add a directory to index.")); m_confUi.addButton->setIcon(QIcon::fromTheme(QStringLiteral("list-add"))); @@ -173,6 +174,7 @@ void KateCTagsConfigPage::addGlobalTagTarget() for (int i = 0; i < urls.size(); i++) { if (!listContains(urls[i])) { new QListWidgetItem(urls[i], m_confUi.targetList); + Q_EMIT changed(); } } } @@ -181,6 +183,7 @@ void KateCTagsConfigPage::addGlobalTagTarget() void KateCTagsConfigPage::delGlobalTagTarget() { delete m_confUi.targetList->currentItem(); + Q_EMIT changed(); } /******************************************************************/ -- 2.39.0