12 Commits

Author SHA256 Message Date
ac73936bd4 Accepting request 1322475 from KDE:Applications
KDE release gear 25.12 (forwarded request 1321386 from krop)

OBS-URL: https://build.opensuse.org/request/show/1322475
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kwalletmanager?expand=0&rev=21
2025-12-15 10:49:42 +00:00
Christophe Marin
91451886ad KDE release gear 25.12
OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/kwalletmanager?expand=0&rev=49
2025-12-11 22:47:12 +00:00
Christophe Marin
0d6743cdea KDE Release gear 25.12 beta
OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/kwalletmanager?expand=0&rev=48
2025-11-22 12:44:27 +00:00
681adb200c Accepting request 1316300 from KDE:Applications
KDE release gear 25.08.3

OBS-URL: https://build.opensuse.org/request/show/1316300
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kwalletmanager?expand=0&rev=20
2025-11-08 15:28:24 +00:00
Christophe Marin
8f7adeabba KDE release gear 25.08.3
OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/kwalletmanager?expand=0&rev=46
2025-11-07 00:14:59 +00:00
abefb036fd Accepting request 1310230 from KDE:Applications
KDE release gear 25.08.2 (forwarded request 1309696 from krop)

OBS-URL: https://build.opensuse.org/request/show/1310230
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kwalletmanager?expand=0&rev=19
2025-10-13 15:22:53 +00:00
Christophe Marin
6d1101477a KDE release gear 25.08.2
OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/kwalletmanager?expand=0&rev=44
2025-10-09 15:37:38 +00:00
881b4be309 Accepting request 1303959 from KDE:Applications
KDE release gear 25.08.1

OBS-URL: https://build.opensuse.org/request/show/1303959
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kwalletmanager?expand=0&rev=18
2025-09-11 12:39:02 +00:00
Christophe Marin
88f23840d9 KDE Release gear 25.08.1
OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/kwalletmanager?expand=0&rev=42
2025-09-11 07:37:30 +00:00
2121593611 Accepting request 1299703 from KDE:Applications
KDE release gear 25.08.0 (forwarded request 1299260 from krop)

OBS-URL: https://build.opensuse.org/request/show/1299703
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kwalletmanager?expand=0&rev=17
2025-08-16 18:36:35 +00:00
Christophe Marin
69e66cc9bb KDE release gear 25.08.0
OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/kwalletmanager?expand=0&rev=40
2025-08-15 06:50:00 +00:00
Christophe Marin
bb3d4e0939 KDE release gear 25.08 beta
OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/kwalletmanager?expand=0&rev=39
2025-07-22 18:25:39 +00:00
7 changed files with 256 additions and 75 deletions

View File

@@ -1,24 +1,23 @@
From cadbae12c08d7031c83a7af04bed4b8f8a517382 Mon Sep 17 00:00:00 2001
From fd06cccb9ff5b8e4099a78a795503eb052d506d6 Mon Sep 17 00:00:00 2001
From: Christophe Marin <christophe@krop.fr>
Date: Thu, 15 Feb 2024 19:16:54 +0100
Subject: [PATCH] Don't require password when changing settings
See https://bugzilla.suse.com/show_bug.cgi?id=1217190
The kauth helper is useless and doesn't improve security.
---
CMakeLists.txt | 8 ++++----
src/CMakeLists.txt | 4 ++--
src/konfigurator/CMakeLists.txt | 32 ++++++++++++++++---------------
src/konfigurator/konfigurator.cpp | 29 ----------------------------
src/konfigurator/konfigurator.h | 1 -
5 files changed, 23 insertions(+), 51 deletions(-)
CMakeLists.txt | 5 ---
src/CMakeLists.txt | 4 +--
src/konfigurator/CMakeLists.txt | 32 ++++++++++---------
src/konfigurator/konfigurator.cpp | 53 ++++++++-----------------------
src/konfigurator/konfigurator.h | 15 ++++-----
5 files changed, 37 insertions(+), 72 deletions(-)
Index: kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/CMakeLists.txt
===================================================================
--- kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965.orig/CMakeLists.txt
+++ kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/CMakeLists.txt
@@ -35,10 +35,10 @@ ecm_setup_version(${RELEASE_SERVICE_VERS
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 059b0f1c..3d3eafae 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -37,11 +37,6 @@ ecm_setup_version(${RELEASE_SERVICE_VERSION} VARIABLE_PREFIX KWALLETMANAGER
VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/src/kwalletmanager_version.h"
)
@@ -26,29 +25,25 @@ Index: kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/CMakeLists.tx
-if (ENABLE_KAUTH)
- find_package(KF6 ${KF_MIN_VERSION} REQUIRED Auth)
-endif()
+# option(ENABLE_KAUTH "Enable KAuth support (Disabled for Flatpak builds)" ON)
+# if (ENABLE_KAUTH)
+# find_package(KF6 ${KF_MIN_VERSION} REQUIRED Auth)
+# endif()
-
find_package(KF6 ${KF_MIN_VERSION} REQUIRED
Archive
Index: kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/CMakeLists.txt
===================================================================
--- kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965.orig/src/CMakeLists.txt
+++ kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/CMakeLists.txt
@@ -1,4 +1,4 @@
Config
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 69ff4807..bc9fa218 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -1,4 +1,2 @@
-if (ENABLE_KAUTH)
+# if (ENABLE_KAUTH)
add_subdirectory(konfigurator)
- add_subdirectory(konfigurator)
-endif()
+# endif()
+add_subdirectory(konfigurator)
add_subdirectory(manager)
Index: kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/konfigurator/CMakeLists.txt
===================================================================
--- kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965.orig/src/konfigurator/CMakeLists.txt
+++ kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/konfigurator/CMakeLists.txt
@@ -10,7 +10,6 @@ ki18n_wrap_ui(kcm_kwallet5 walletconfigw
diff --git a/src/konfigurator/CMakeLists.txt b/src/konfigurator/CMakeLists.txt
index cba75123..778ebcd9 100644
--- a/src/konfigurator/CMakeLists.txt
+++ b/src/konfigurator/CMakeLists.txt
@@ -10,7 +10,6 @@ ki18n_wrap_ui(kcm_kwallet5 walletconfigwidget.ui )
target_link_libraries(kcm_kwallet5
Qt6::Core
@@ -63,15 +58,20 @@ Index: kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/konfigura
-########### kauth helper ################
-add_executable(kcm_kwallet_helper5)
-target_sources(kcm_kwallet_helper5 PRIVATE savehelper.cpp savehelper.h)
+# The helper is not improving security and was disabled.
+# See https://bugzilla.suse.com/show_bug.cgi?id=1217190
-
-target_link_libraries(kcm_kwallet_helper5
- Qt6::Core
- KF6::AuthCore
- KF6::Wallet
- KF6::CoreAddons
-)
+# The helper is not improving security and was disabled.
+# See https://bugzilla.suse.com/show_bug.cgi?id=1217190
-install(TARGETS kcm_kwallet_helper5 DESTINATION ${KAUTH_HELPER_INSTALL_DIR})
-
-kauth_install_helper_files(kcm_kwallet_helper5 org.kde.kcontrol.kcmkwallet5 root)
-kauth_install_actions(org.kde.kcontrol.kcmkwallet5 kwallet.actions)
+########### kauth helper ################
+# add_executable(kcm_kwallet_helper5)
+# target_sources(kcm_kwallet_helper5 PRIVATE savehelper.cpp savehelper.h)
@@ -82,30 +82,32 @@ Index: kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/konfigura
+# KF6::Wallet
+# KF6::CoreAddons
+# )
-install(TARGETS kcm_kwallet_helper5 DESTINATION ${KAUTH_HELPER_INSTALL_DIR})
+
+# install(TARGETS kcm_kwallet_helper5 DESTINATION ${KAUTH_HELPER_INSTALL_DIR})
-kauth_install_helper_files(kcm_kwallet_helper5 org.kde.kcontrol.kcmkwallet5 root)
-kauth_install_actions(org.kde.kcontrol.kcmkwallet5 kwallet.actions)
+
+# kauth_install_helper_files(kcm_kwallet_helper5 org.kde.kcontrol.kcmkwallet5 root)
+# kauth_install_actions(org.kde.kcontrol.kcmkwallet5 kwallet.actions)
Index: kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/konfigurator/konfigurator.cpp
===================================================================
--- kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965.orig/src/konfigurator/konfigurator.cpp
+++ kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/konfigurator/konfigurator.cpp
@@ -7,9 +7,6 @@
diff --git a/src/konfigurator/konfigurator.cpp b/src/konfigurator/konfigurator.cpp
index 36ad4b9a..c7bdccb4 100644
--- a/src/konfigurator/konfigurator.cpp
+++ b/src/konfigurator/konfigurator.cpp
@@ -7,8 +7,6 @@
#include "konfigurator.h"
#include "../kwalletmanager_version.h"
-#include <KAuth/Action>
-#include <KAuth/ActionReply>
-#include <KAuth/ExecuteJob>
#include <KConfigGroup>
#include <KMessageBox>
#include <KPluginFactory>
@@ -38,7 +35,6 @@ KWalletConfig::KWalletConfig(QObject *pa
@@ -32,12 +30,11 @@
K_PLUGIN_CLASS_WITH_JSON(KWalletConfig, "kwalletconfig.json")
-KWalletConfig::KWalletConfig(QObject *parent, const KPluginMetaData &data)
+KWalletConfig::KWalletConfig(QObject* parent, const KPluginMetaData& data)
: KCModule(parent, data)
, _wcw(new WalletConfigWidget(widget()))
, _cfg(KSharedConfig::openConfig(QStringLiteral("kwalletrc"), KConfig::NoGlobals))
{
@@ -113,7 +115,32 @@ Index: kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/konfigura
auto vbox = new QVBoxLayout(widget());
vbox->setContentsMargins(0, 0, 0, 0);
vbox->addWidget(_wcw);
@@ -233,30 +229,6 @@ void KWalletConfig::load()
@@ -59,11 +56,11 @@ KWalletConfig::KWalletConfig(QObject *parent, const KPluginMetaData &data)
connect(_wcw->_accessList, &QTreeWidget::customContextMenuRequested, this, &KWalletConfig::customContextMenuRequested);
connect(_wcw->_secretServiceAPI, &QCheckBox::clicked, this, &KWalletConfig::configChanged);
- QStyle *style = widget()->style();
+ QStyle* style = widget()->style();
_wcw->launchButtonBar->setContentsMargins(style->pixelMetric(QStyle::PM_LayoutLeftMargin),
- 0,
- style->pixelMetric(QStyle::PM_LayoutRightMargin),
- style->pixelMetric(QStyle::PM_LayoutBottomMargin));
+ 0,
+ style->pixelMetric(QStyle::PM_LayoutRightMargin),
+ style->pixelMetric(QStyle::PM_LayoutBottomMargin));
_wcw->_accessList->setAllColumnsShowFocus(true);
_wcw->_accessList->setContextMenuPolicy(Qt::CustomContextMenu);
@@ -107,7 +104,7 @@ QString KWalletConfig::newWallet()
if (!ok) {
return {};
}
- KWallet::Wallet *w = KWallet::Wallet::openWallet(n, widget()->topLevelWidget()->winId());
+ KWallet::Wallet* w = KWallet::Wallet::openWallet(n, widget()->topLevelWidget()->winId());
if (!w) {
return {};
}
@@ -239,30 +236,6 @@ void KWalletConfig::load()
void KWalletConfig::save()
{
@@ -144,11 +171,58 @@ Index: kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/konfigura
KConfigGroup config(_cfg, QStringLiteral("Wallet"));
config.writeEntry("Enabled", _wcw->_enabled->isChecked());
config.writeEntry("Launch Manager", _wcw->_launchManager->isChecked());
Index: kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/konfigurator/konfigurator.h
===================================================================
--- kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965.orig/src/konfigurator/konfigurator.h
+++ kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/konfigurator/konfigurator.h
@@ -7,7 +7,6 @@
@@ -291,10 +264,10 @@ void KWalletConfig::save()
_cfg->deleteGroup(QStringLiteral("Auto Deny"));
config = _cfg->group(QStringLiteral("Auto Allow"));
for (int i = 0; i < _wcw->_accessList->topLevelItemCount(); ++i) {
- QTreeWidgetItem *parentItem = _wcw->_accessList->topLevelItem(i);
+ QTreeWidgetItem* parentItem = _wcw->_accessList->topLevelItem(i);
QStringList al;
for (int j = 0; j < parentItem->childCount(); ++j) {
- QTreeWidgetItem *childItem = parentItem->child(j);
+ QTreeWidgetItem* childItem = parentItem->child(j);
if (childItem->text(2) == i18n("Always Allow")) {
al << childItem->text(1);
}
@@ -304,10 +277,10 @@ void KWalletConfig::save()
config = _cfg->group(QStringLiteral("Auto Deny"));
for (int i = 0; i < _wcw->_accessList->topLevelItemCount(); ++i) {
- QTreeWidgetItem *parentItem = _wcw->_accessList->topLevelItem(i);
+ QTreeWidgetItem* parentItem = _wcw->_accessList->topLevelItem(i);
QStringList al;
for (int j = 0; j < parentItem->childCount(); ++j) {
- QTreeWidgetItem *childItem = parentItem->child(j);
+ QTreeWidgetItem* childItem = parentItem->child(j);
if (childItem->text(2) == i18n("Always Deny")) {
al << childItem->text(1);
}
@@ -349,9 +322,9 @@ void KWalletConfig::defaults()
setNeedsSave(true);
}
-void KWalletConfig::customContextMenuRequested(const QPoint &pos)
+void KWalletConfig::customContextMenuRequested(const QPoint& pos)
{
- QTreeWidgetItem *item = _wcw->_accessList->itemAt(pos);
+ QTreeWidgetItem* item = _wcw->_accessList->itemAt(pos);
if (item && item->parent()) {
auto m = new QMenu(widget());
m->setTitle(item->parent()->text(0));
@@ -363,7 +336,7 @@ void KWalletConfig::customContextMenuRequested(const QPoint &pos)
void KWalletConfig::deleteEntry()
{
- QList<QTreeWidgetItem *> items = _wcw->_accessList->selectedItems();
+ QList<QTreeWidgetItem*> items = _wcw->_accessList->selectedItems();
if (items.count() == 1 && items[0]) {
delete items[0];
setNeedsSave(true);
diff --git a/src/konfigurator/konfigurator.h b/src/konfigurator/konfigurator.h
index fa508c1b..461a79bd 100644
--- a/src/konfigurator/konfigurator.h
+++ b/src/konfigurator/konfigurator.h
@@ -7,25 +7,22 @@
#ifndef _KWALLETKONFIGURATOR_H
#define _KWALLETKONFIGURATOR_H
#include "ui_walletconfigwidget.h"
@@ -156,3 +230,42 @@ Index: kwalletmanager-%{_kapp6_version}git.20240513T064813~17ce965/src/konfigura
#include <KCModule>
#include <KSharedConfig>
-class WalletConfigWidget : public QWidget, public Ui::WalletConfigWidget
-{
+class WalletConfigWidget : public QWidget, public Ui::WalletConfigWidget {
public:
- WalletConfigWidget(QWidget *parent)
+ WalletConfigWidget(QWidget* parent)
: QWidget(parent)
{
setupUi(this);
}
};
-class KWalletConfig : public KCModule
-{
+class KWalletConfig : public KCModule {
Q_OBJECT
public:
- explicit KWalletConfig(QObject *parent, const KPluginMetaData &data);
+ explicit KWalletConfig(QObject* parent, const KPluginMetaData& data);
~KWalletConfig() override;
void load() override;
@@ -39,11 +36,11 @@ public Q_SLOTS:
void newNetworkWallet();
void updateWalletLists();
void deleteEntry();
- void customContextMenuRequested(const QPoint &pos);
+ void customContextMenuRequested(const QPoint& pos);
private:
QString newWallet();
- WalletConfigWidget *const _wcw;
+ WalletConfigWidget* const _wcw;
KSharedConfig::Ptr _cfg;
};
--
2.51.0

View File

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

View File

@@ -1,16 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmhjb6YACgkQu0YzUNbv
Me/fiA/+PswuIfyQAQIXc4Cp4MKFKJqxKtY0VHqouX9msxufnLA57RXa1k+jegVW
hpCSAAvlorpea7ZNO/iBiq5Z4rGTl7DBr6cXHciqxKwo5OtRoDWGp8oCZlqVdeSf
n0cTAtPJN4rpb9X3poMWSYclMxevowbk7o0NinVHTaPRjYnGxOee9JkcGBL8z1r/
QsHniJN/3aoIgfGKHERMIgWhMDNfRTZmMRdEHDNo64HekMng+SmlMPXvB2jKhmBK
0OT7uGxtdwlRjXOJWckM9OCztrMruOJfgn/Of9A5DKIG0Aeceu+KHW6EQ/Olh5+7
P4p7Tyx3BsGMZx6pDox6qVEGfrkEb4ydg2xfIRXGzXtDpypK4QpA1EJ7xOxVxSc9
makPlwWE3DmnNOgf9mcNnWctkNYppQLQk2M6PzhxTJmB3erW/VU/U4KKmxWvmeNt
6XGbJKG1pjKQvbF1MLnKIrqm+O2w5UbBlag9CPUAqar/rr6W1pE2o4fzidH0Jn1z
E4s0Tvv9Uwl8iCGlkk8F2NzS5j/NDl0wSZ6Px09dwjTA/KhZdzz8+97eyA9HhsZh
sS63k2xltmnSdJ6YFf3k8jeN8yotQiZA4cKVUZvXxzDv+2Z/9ZrP3xVxGDz3NvzI
DaZOc/H64n/rzcvr15TCz8FQIbyfunVcNav2fDjxVJZRZFZZtkk=
=oLTk
-----END PGP SIGNATURE-----

View File

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

View File

@@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmkyJO0ACgkQu0YzUNbv
Me+oSQ/+Pc9tgtT70POg2/4E9cohXGrgjoNHrHGlTkC0fPRLIZQHkVdhK/Z3Wsvf
RAzvCgkZXIuFMci8rOeRVZo0UD6Q96zkdOpnoRAqJCYwMCZFciqsQk/TuOl5iYqb
9OMZ6RRJqEgkpTgGtYTWVqGtAzCkBwefXBZ4FKZYmGVFOj1Uj8pvNY0ysKJ6oE53
WllQvro2U5IKA1pTx6MMtaIALn/6ahJ//ep9brAU8y6/AtsisajOQ/9ePDvIo1OB
VrvVtY09YT7n0iHqskfXwgIYSm5z27nFF/N5kWoiEbRwNkLwr4zyXW0xld4TZ3qm
sWJE0PFVZnZmKMmDChW9hKHjJ9FownO8DTph/teASb6HM66KpjrFHWA3WQfW4kAE
KHaIV0Wss7px2cttFQ98Y/saH97BOfhUEb9R3Yqag1Kq/JcUIhmeYAd94/g+HpVj
xEowUNw/bmT/nYKwrhEG37NI+sAAWkJbX6CJCWQhBMnxCEJzbS31VbDvhWEbqUcP
V0kH27d3/YAGHazFZBEF+jATF1TSkKAwXuoEgrYoLYP6/BNUd/mOXabhTu9ZT627
2oKf6VFRus7y18jTgP+CVKZxSxngbS/1agzRmvATxkNVATpgagVAgua6fFLIQOVK
4lb1I7ZjqxKPl80gbj+Mu/fqbTCl22/c57L4hjFVanDi5YfB2g0=
=v06d
-----END PGP SIGNATURE-----

View File

@@ -1,3 +1,71 @@
-------------------------------------------------------------------
Sat Dec 6 11:41:04 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.12.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/25.12.0/
- No code change since 25.11.80
-------------------------------------------------------------------
Sat Nov 15 19:57:08 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.11.80
* New feature release
- Changes since 25.08.3:
* kwalleteditor: fix crash due to nullptr in updateFolderList() and updateEntries()
* Make sure entrylist context menu is created for empty list (kde#510780)
* Convert the two missing old style connects
* Bump kf ecm_set_disabled_deprecation_versions
-------------------------------------------------------------------
Thu Nov 6 18:38:05 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.08.3
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/25.08.3/
- Changes since 25.08.2:
* Make sure entrylist context menu is created for empty list (kde#510780)
-------------------------------------------------------------------
Tue Oct 7 18:49:29 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.08.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/25.08.2/
- No code change since 25.08.1
-------------------------------------------------------------------
Wed Sep 10 09:24:12 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.08.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/25.08.1/
- No code change since 25.08.0
-------------------------------------------------------------------
Fri Aug 8 07:47:59 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.08.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/25.08.0/
- No code change since 25.07.80
-------------------------------------------------------------------
Mon Jul 14 14:25:46 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.07.80
* New feature release
- Changes since 25.04.3:
* Align kwalletmanager5-kwalletd.desktop keys with org.kde.kwalletmanager.desktop
* Improve GenericName and Comment (kde#504408)
* konfigurator: Use correct kwalletd DBus interface name
* It compiles fine without deprecated methods
-------------------------------------------------------------------
Tue Jul 1 15:27:24 UTC 2025 - Christophe Marin <christophe@krop.fr>

View File

@@ -1,7 +1,7 @@
#
# spec file for package kwalletmanager
#
# 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
@@ -16,12 +16,12 @@
#
%define kf6_version 6.6.0
%define qt6_version 6.6.0
%define kf6_version 6.19.0
%define qt6_version 6.9.0
%bcond_without released
Name: kwalletmanager
Version: 25.04.3
Version: 25.12.0
Release: 0
Summary: Wallet Management Tool
License: GPL-2.0-or-later