Accepting request 1009099 from KDE:Frameworks5
Plasma 5.26.0 OBS-URL: https://build.opensuse.org/request/show/1009099 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kcm_sddm?expand=0&rev=131
This commit is contained in:
commit
166b27b590
@ -10,24 +10,24 @@ a normal session. Use it as default when the combobox is disabled.
|
|||||||
src/sessionmodel.cpp | 6 ++++++
|
src/sessionmodel.cpp | 6 ++++++
|
||||||
2 files changed, 7 insertions(+), 1 deletion(-)
|
2 files changed, 7 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/src/package/contents/ui/Advanced.qml b/src/package/contents/ui/Advanced.qml
|
Index: sddm-kcm-5.17.80git.20220809T233316~d5dcd87/src/package/contents/ui/Advanced.qml
|
||||||
index 88bd73e..0b10c6c 100644
|
===================================================================
|
||||||
--- a/src/package/contents/ui/Advanced.qml
|
--- sddm-kcm-5.17.80git.20220809T233316~d5dcd87.orig/src/package/contents/ui/Advanced.qml
|
||||||
+++ b/src/package/contents/ui/Advanced.qml
|
+++ sddm-kcm-5.17.80git.20220809T233316~d5dcd87/src/package/contents/ui/Advanced.qml
|
||||||
@@ -70,7 +70,7 @@ Kirigami.Page {
|
@@ -76,7 +76,7 @@ Kirigami.Page {
|
||||||
textRole: "name"
|
textRole: "name"
|
||||||
valueRole: "file"
|
valueRole: "file"
|
||||||
onActivated: kcm.sddmSettings.session = currentValue
|
onActivated: kcm.sddmSettings.session = currentValue
|
||||||
- onEnabledChanged: enabled ? kcm.sddmSettings.session = currentValue : kcm.sddmSettings.session = ""
|
- onEnabledChanged: enabled ? kcm.sddmSettings.session = currentValue : kcm.sddmSettings.session = ""
|
||||||
+ onEnabledChanged: enabled ? kcm.sddmSettings.session = currentValue : kcm.sddmSettings.session = "default.desktop"
|
+ onEnabledChanged: enabled ? kcm.sddmSettings.session = currentValue : kcm.sddmSettings.session = "default.desktop"
|
||||||
Component.onCompleted: currentIndex = Math.max(indexOfValue(kcm.sddmSettings.session), 0)
|
|
||||||
KCM.SettingStateBinding {
|
KCM.SettingStateBinding {
|
||||||
visible: autologinBox.checked
|
visible: autologinBox.checked
|
||||||
diff --git a/src/sessionmodel.cpp b/src/sessionmodel.cpp
|
configObject: kcm.sddmSettings
|
||||||
index 16999dd..50e22d4 100644
|
Index: sddm-kcm-5.17.80git.20220809T233316~d5dcd87/src/sessionmodel.cpp
|
||||||
--- a/src/sessionmodel.cpp
|
===================================================================
|
||||||
+++ b/src/sessionmodel.cpp
|
--- sddm-kcm-5.17.80git.20220809T233316~d5dcd87.orig/src/sessionmodel.cpp
|
||||||
@@ -109,6 +109,12 @@ void SessionModel::loadDir(const QString &path, SessionType type)
|
+++ sddm-kcm-5.17.80git.20220809T233316~d5dcd87/src/sessionmodel.cpp
|
||||||
|
@@ -95,6 +95,12 @@ void SessionModel::loadDir(const QString
|
||||||
isHidden = line.mid(7).toLower() == QLatin1String("true");
|
isHidden = line.mid(7).toLower() == QLatin1String("true");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -40,6 +40,3 @@ index 16999dd..50e22d4 100644
|
|||||||
if (!isHidden) {
|
if (!isHidden) {
|
||||||
// add to sessions list
|
// add to sessions list
|
||||||
d->sessions.push_back(si);
|
d->sessions.push_back(si);
|
||||||
--
|
|
||||||
2.25.1
|
|
||||||
|
|
||||||
|
@ -1,3 +1,44 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 6 14:48:40 UTC 2022 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||||
|
|
||||||
|
- Update to 5.26.0
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/plasma/5/5.26.0
|
||||||
|
- Changes since 5.25.90:
|
||||||
|
* Install po folder
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 15 20:46:21 UTC 2022 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||||
|
|
||||||
|
- Update to 5.25.90
|
||||||
|
* New feature release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/plasma/5/5.25.90
|
||||||
|
- Changes since 5.25.5:
|
||||||
|
* Remove unnecessary property that's now only used once
|
||||||
|
* Cache the DropShadow for better responsiveness
|
||||||
|
* Move preview image's DropShadow into a layer effect
|
||||||
|
* Fix preview image sizing
|
||||||
|
* Add FreeBSD Qt6 CI support
|
||||||
|
* Remove no longer needed ifdefs
|
||||||
|
* Fix currentIndex for auto-login user and session comboboxes (kde#454528)
|
||||||
|
* Remove unneeded KAboutData
|
||||||
|
* Clarify enable or disable Apply button on save (kde#437423)
|
||||||
|
* Avoid install prefix in config path lookup (kde#440564)
|
||||||
|
* Mark error messages for translation
|
||||||
|
* Fix translating error messages from helper (kde#441726)
|
||||||
|
* Remove obsolete PKGBUILD file
|
||||||
|
* KMessageBox::sorry is deprecated in kf5.97
|
||||||
|
* Port to KCM desktop file generation method from kcmutils
|
||||||
|
* Request passing unit tests on Linux and BSD
|
||||||
|
* Only show delete button for themes that were manually or through KNS installed (kde#454874)
|
||||||
|
* Fix broken connect in NewStuff.Action QML component usage (kde#454884)
|
||||||
|
* Clear cache when syncing (kde#440957)
|
||||||
|
* Re-enable apply button on save failure (kde#429348)
|
||||||
|
* Avoid empty error box (kde#413032)
|
||||||
|
- Refresh 0001-Support-default.session-symlink.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 6 16:55:34 UTC 2022 - Fabian Vogt <fabian@ritter-vogt.de>
|
Tue Sep 6 16:55:34 UTC 2022 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||||
|
|
||||||
|
@ -21,22 +21,22 @@
|
|||||||
|
|
||||||
%bcond_without released
|
%bcond_without released
|
||||||
Name: kcm_sddm
|
Name: kcm_sddm
|
||||||
Version: 5.25.5
|
Version: 5.26.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A sddm control module for KDE
|
Summary: A sddm control module for KDE
|
||||||
License: GPL-2.0-only
|
License: GPL-2.0-only
|
||||||
Group: System/GUI/KDE
|
Group: System/GUI/KDE
|
||||||
URL: https://projects.kde.org/projects/kdereview/sddm-kcm/repository
|
URL: https://projects.kde.org/projects/kdereview/sddm-kcm/repository
|
||||||
Source: https://download.kde.org/stable/plasma/%{version}/sddm-kcm-%{version}.tar.xz
|
Source: sddm-kcm-%{version}.tar.xz
|
||||||
%if %{with released}
|
%if %{with released}
|
||||||
Source1: https://download.kde.org/stable/plasma/%{version}/sddm-kcm-%{version}.tar.xz.sig
|
Source1: sddm-kcm-%{version}.tar.xz.sig
|
||||||
Source2: plasma.keyring
|
Source2: plasma.keyring
|
||||||
%endif
|
%endif
|
||||||
# PATCH-FIX-OPENSUSE
|
# PATCH-FIX-OPENSUSE
|
||||||
Patch1: 0001-Support-default.session-symlink.patch
|
Patch1: 0001-Support-default.session-symlink.patch
|
||||||
Patch2: 0002-Read-and-write-autologin-user-to-etc-sysconfig-displ.patch
|
Patch2: 0002-Read-and-write-autologin-user-to-etc-sysconfig-displ.patch
|
||||||
Patch3: 0003-Don-t-add-a-Wayland-suffix-to-Wayland-sessions.patch
|
Patch3: 0003-Don-t-add-a-Wayland-suffix-to-Wayland-sessions.patch
|
||||||
BuildRequires: extra-cmake-modules
|
BuildRequires: extra-cmake-modules >= 5.98.0
|
||||||
BuildRequires: kf5-filesystem
|
BuildRequires: kf5-filesystem
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: cmake(KF5Archive)
|
BuildRequires: cmake(KF5Archive)
|
||||||
@ -49,7 +49,7 @@ BuildRequires: cmake(KF5KCMUtils)
|
|||||||
BuildRequires: cmake(KF5KIO)
|
BuildRequires: cmake(KF5KIO)
|
||||||
BuildRequires: cmake(KF5NewStuff)
|
BuildRequires: cmake(KF5NewStuff)
|
||||||
BuildRequires: cmake(KF5XmlGui)
|
BuildRequires: cmake(KF5XmlGui)
|
||||||
BuildRequires: cmake(Qt5Core) >= 5.12.0
|
BuildRequires: cmake(Qt5Core) >= 5.15.0
|
||||||
BuildRequires: cmake(Qt5Gui)
|
BuildRequires: cmake(Qt5Gui)
|
||||||
BuildRequires: cmake(Qt5Quick)
|
BuildRequires: cmake(Qt5Quick)
|
||||||
BuildRequires: cmake(Qt5QuickWidgets)
|
BuildRequires: cmake(Qt5QuickWidgets)
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a69c4cb9f0a4073e4b2be916e828709d2281420865aaec72308f6ea91f937cc3
|
|
||||||
size 83376
|
|
@ -1,16 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQIzBAABCgAdFiEE4KPrIC+OV1KOE+cv11dEg7tXsY0FAmMXQCYACgkQ11dEg7tX
|
|
||||||
sY2n8w//SCZVBhAvUoKrZNZ3tAmCNcIZUBpQWqU2zfwLAGgnPM/FBxk3LhB8ZCva
|
|
||||||
gUQqbPd/fH1h+r3hLSOTo2v/CB43aLID+BvXX7XnEJh2Ag4oEKWX3pNYBORiaA2M
|
|
||||||
a4wNplsf75+NRESO+fRkY8A7qVv+nPXnH63QzeWpdJJlhfsjo5YcLsq6jZwy5oZD
|
|
||||||
4hGO33wfPUTydMBgiWNW7DG5ZzylO3T+m5tqjTlX2aJJcOtowMcQGEtZcLmvfSSd
|
|
||||||
Mhh2JNredojO56Maj6h4yiMvlvkRSYfLbkaiNsUHkc76smJp9pdbHUwWjI9cHL+G
|
|
||||||
M4HMqRzPQnt4HocB+RrK5CG/CmC9mY5GJ8wWgZwZlSQQnFS8Nn2+mbpDqUjOo68L
|
|
||||||
Nwzs1tMd2FAzhbson3ErSFpsiLR0VR1KkpOxjeiOS3WHMGPXlYuF3sN6pt/u+NcT
|
|
||||||
mhToom3geviyc0g40Oz9WpmujooxiJWa/GUtZZ9JHokRuBu9x2njYVSiFUqRbtKg
|
|
||||||
HthhVvJ5AZgB2Sk+75It88dVvs7OXJH94AgfoBlIaUti7MAM2Uy/SVNPEyrg6efG
|
|
||||||
LnGCvtvWCo8lX5zVUEIrn4nK2P6oxQG178eK99eriSeFHaoZROeUQ1ioNOFyt4ZD
|
|
||||||
XNA3IGBou0Yrm7L/BqBZp5GCP9L2EVCfVhS1wSR9DJnCn+JngmQ=
|
|
||||||
=WwVj
|
|
||||||
-----END PGP SIGNATURE-----
|
|
3
sddm-kcm-5.26.0.tar.xz
Normal file
3
sddm-kcm-5.26.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:271eaf95f73daa46f6517e385611196dfe5cf951959aab2d6ca7e9b058c6a6c3
|
||||||
|
size 82860
|
16
sddm-kcm-5.26.0.tar.xz.sig
Normal file
16
sddm-kcm-5.26.0.tar.xz.sig
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIzBAABCgAdFiEE4KPrIC+OV1KOE+cv11dEg7tXsY0FAmM+zfIACgkQ11dEg7tX
|
||||||
|
sY32txAAjDS1VZT+bM7LYEXA9XgV3clEV2lgCbvTwaLlep8CHLeiFgYK+VZCxv2H
|
||||||
|
eJXSs/h8xcmqIMktCR8e4Z6a99ZQXhYOGlCI8i+DGupCq+O/cgGhrJWoFOR5biU8
|
||||||
|
zXO7hPkn3RKG9UFJwrcsbFM8dLTgG0m2zD8AzleaROL+OR6RZSrPXq9Pu2cs05aA
|
||||||
|
XXxZI6IEK6JkXP/qHT3xz614o4eBaFp+BEHGrXQgOk9F+WRbmq7ZnR1d70PqCWDb
|
||||||
|
TO23yh5AnroezpwX81HQ5+Sjeek3Ko66k7QujXFgR+JGXCSWPIzZgWAUU4mbcm7C
|
||||||
|
hIVnvFN0txdqQWjZrk94/woRqUmULtgYoqayOClWxGpmkKFekgt83fpi4Os2p/IY
|
||||||
|
2BA+MlHBM8BQrU6/kpkVqMliRDIsVZ3FaX7RsXdQw4gcQM42yE+m63PnxMOQzCtm
|
||||||
|
hP9LXIVjO8oL1i/0JBY/ESl4ntI5u+2bHGdehvbh2Owv3Fb5h4CXB9x6hkA6KH1I
|
||||||
|
A8UJVmhM3MvMHhozbPBQgZ1DWTvXUOqP9EKm/NmTxIie/A486vS3/KhiCjAFvtZL
|
||||||
|
t4MoB48sU/4Lt+gw2jOHRYjL6WUlS4LjQTolxpuiVAGcrLjvNIo234FsQh6MiPJr
|
||||||
|
clhD7U59JTwcjHDlt7NjsoSdz4WWSgYjgpHEIdprjWSSDH0mf+I=
|
||||||
|
=M7xE
|
||||||
|
-----END PGP SIGNATURE-----
|
Loading…
Reference in New Issue
Block a user