Compare commits
No commits in common. "factory" and "factory" have entirely different histories.
@ -1,57 +1,34 @@
|
|||||||
From c6ff8dcf4ea993bc95aa00ae6f7e499d457a32bc Mon Sep 17 00:00:00 2001
|
From fb7b5af1ef98643e84d40e58174d48ba22723253 Mon Sep 17 00:00:00 2001
|
||||||
From: Fabian Vogt <fabian@ritter-vogt.de>
|
From: Luca Beltrame <lbeltrame@kde.org>
|
||||||
Date: Sat, 11 Jan 2025 19:21:42 +0100
|
Date: Fri, 12 Apr 2024 07:51:45 +0200
|
||||||
Subject: [PATCH] Use the openSUSE wallpaper
|
Subject: [PATCH] Use the openSUSE wallpaper
|
||||||
|
|
||||||
This is unfortunately hardcoded. Use our default to more likely match what
|
This is unfortunately hardcoded. Use our default to more likely match what
|
||||||
the user sees.
|
the user sees.
|
||||||
|
|
||||||
sed -i "s#wallpapers/Next/contents/images/1920x1080.png#wallpapers/openSUSEdefault/contents/images/1920x1200.png#g" src/qml/mock/*.qml
|
|
||||||
---
|
---
|
||||||
src/qml/mock/MockActivities.qml | 2 +-
|
src/qml/mock/MockDesktop.qml | 6 +++---
|
||||||
src/qml/mock/MockCard.qml | 2 +-
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||||
src/qml/mock/MockOverview.qml | 2 +-
|
|
||||||
3 files changed, 3 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/qml/mock/MockActivities.qml b/src/qml/mock/MockActivities.qml
|
diff --git a/src/qml/mock/MockDesktop.qml b/src/qml/mock/MockDesktop.qml
|
||||||
index 0b9a00b..284fed9 100644
|
index d9c906c..19c7b26 100644
|
||||||
--- a/src/qml/mock/MockActivities.qml
|
--- a/src/qml/mock/MockDesktop.qml
|
||||||
+++ b/src/qml/mock/MockActivities.qml
|
+++ b/src/qml/mock/MockDesktop.qml
|
||||||
@@ -107,7 +107,7 @@ Item {
|
@@ -14,12 +14,12 @@ Item {
|
||||||
// We're intentionally ignoring our 16:10 desktop wallpaper (MockDesktop) - whilst that fits the square
|
|
||||||
// window, we want to maximise what we can fit in our limited height and be more representative of what
|
|
||||||
// a user will see - most use a 16:9 display.
|
|
||||||
- source: "file:" + Controller.installPrefix() + "/share/wallpapers/Next/contents/images/1920x1080.png"
|
|
||||||
+ source: "file:" + Controller.installPrefix() + "/share/wallpapers/openSUSEdefault/contents/images/1920x1200.png"
|
|
||||||
mipmap: true
|
|
||||||
}
|
|
||||||
|
|
||||||
diff --git a/src/qml/mock/MockCard.qml b/src/qml/mock/MockCard.qml
|
property int backgroundAlignment: Qt.AlignRight | Qt.AlignBottom
|
||||||
index c2c9754..c7dbf7d 100644
|
|
||||||
--- a/src/qml/mock/MockCard.qml
|
|
||||||
+++ b/src/qml/mock/MockCard.qml
|
|
||||||
@@ -22,7 +22,7 @@ Kirigami.AbstractCard {
|
|
||||||
property double backgroundScale: 1
|
|
||||||
property int blurRadius: 32
|
|
||||||
|
|
||||||
- readonly property string wallpaper: "file:" + Controller.installPrefix() + "/share/wallpapers/Next/contents/images/1920x1080.png"
|
- readonly property string wallpaper: "file:" + Controller.installPrefix() + "/share/wallpapers/Next/contents/images/1280x800.png"
|
||||||
+ readonly property string wallpaper: "file:" + Controller.installPrefix() + "/share/wallpapers/openSUSEdefault/contents/images/1920x1200.png"
|
+ readonly property string wallpaper: "file:" + Controller.installPrefix() + "/share/wallpapers/openSUSEdefault/contents/images/1280x1024.png"
|
||||||
readonly property int desktopWidth: 1024 * backgroundScale
|
readonly property int desktopWidth: 1280
|
||||||
readonly property int desktopHeight: 576 * backgroundScale
|
- readonly property int desktopHeight: 800
|
||||||
|
+ readonly property int desktopHeight: 1024
|
||||||
|
|
||||||
diff --git a/src/qml/mock/MockOverview.qml b/src/qml/mock/MockOverview.qml
|
/*
|
||||||
index 37e3156..9aca7c4 100644
|
- * 1280x800 is chosen to look good at normal window sizes: The aspect closely
|
||||||
--- a/src/qml/mock/MockOverview.qml
|
+ * 1280x1024 is chosen to look good at normal window sizes: The aspect closely
|
||||||
+++ b/src/qml/mock/MockOverview.qml
|
* matches that of the mock as shown in the application and is not too large.
|
||||||
@@ -21,7 +21,7 @@ Item {
|
*
|
||||||
|
* The background be positioned according to the alignment, and expand to fit
|
||||||
// We're intentionally ignoring our 16:10 desktop wallpaper (MockDesktop) - whilst that fits the square
|
|
||||||
// window, we want to be more representative of what a user will see - most use a 16:9 display.
|
|
||||||
- readonly property string wallpaper: "file:" + Controller.installPrefix() + "/share/wallpapers/Next/contents/images/1920x1080.png"
|
|
||||||
+ readonly property string wallpaper: "file:" + Controller.installPrefix() + "/share/wallpapers/openSUSEdefault/contents/images/1920x1200.png"
|
|
||||||
readonly property double scale: layout.scale
|
|
||||||
|
|
||||||
// Underlay
|
|
||||||
--
|
--
|
||||||
2.47.0
|
2.44.0
|
||||||
|
|
||||||
|
3
plasma-welcome-6.1.5.tar.xz
Normal file
3
plasma-welcome-6.1.5.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:12ece9e7d61c3ec6a23fe9357667416e26802abafdc69f245cc3d96a05ef9d96
|
||||||
|
size 672448
|
16
plasma-welcome-6.1.5.tar.xz.sig
Normal file
16
plasma-welcome-6.1.5.tar.xz.sig
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIzBAABCgAdFiEE4KPrIC+OV1KOE+cv11dEg7tXsY0FAmbgCLkACgkQ11dEg7tX
|
||||||
|
sY0TQg/8CypPoVASd3sSFBfx2rG9Os7hSLKCQDSSQ468QVV8UkUqEvYzWsKCmh+U
|
||||||
|
9wdcP+cVVRV9kAsBW6aX9a2sA3shjn9kzrP2StvQWKQ+cKB5rx4gd1nMD8c1Mdjb
|
||||||
|
cIA2ICbBskElnjwFRpupR9mqWvlSLwoGvXcu/VlivDxfBDlctceE+VRQdV4x+Kwn
|
||||||
|
XvajNOqP5pHLt4I7lLLcFbL7Sh98somLYLXlTyfa8/tQY3WbheSbW1NctMKv8DEW
|
||||||
|
I8NIwarVfj+eQ1xaZAgJTXv10nqK6lwR5p6gV1MwC4XKEKTmGRW5UyJxk8qbC4C7
|
||||||
|
NaMB0C9pQk+u5E3aa0yWLuf5szMJUv0ZldEI3PPLJ6cl4Qx6aLjkdJMnxlu57ghH
|
||||||
|
2n7uS9V0KA5I9hj117RXBY4aP9JtiNliTWeA9j7bHCPXSoGodUY3ABw2ViFTipqi
|
||||||
|
eKDUuj7Nhodmhb/WFTpCocspe2IKKNtJdkvD7amDup3tCmWvJR82k3bFX2FXbKgw
|
||||||
|
fBQPLERiiXooMqvfsgmyICsXByQ63Rotby17oz7FJSOI3mJQaDAIvVVHXV0Xc3i5
|
||||||
|
/LBbNcD4xivheGImnYfKswNCCseP+EezOy1Ex7sYRRcJNxWTbPGT6XFss7CyYSDG
|
||||||
|
ik5tplckeCUj/Ki86ivy36fY+Ii0Uz68gijhIWDAEpjgVSnQ6DM=
|
||||||
|
=nu5Y
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:280f97f47b970a3762f1686377e3273279a0d1423290bbe3913d06cd010c8a5a
|
|
||||||
size 703100
|
|
@ -1,16 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQIzBAABCgAdFiEE4KPrIC+OV1KOE+cv11dEg7tXsY0FAme96vgACgkQ11dEg7tX
|
|
||||||
sY1hww/9EExLKE4c6hCNIruZbaBcfMjEpWK07jIYId5Cl0bEU1r0Xd3BnMMPETDk
|
|
||||||
HN+KQmoNjfM9QIwXxgdfpMOwoW4njRSLnOGoNdEPMPTGh1wy9j3kLfHurOXHbQCq
|
|
||||||
MMQxT1PxGASepz72duJu7t+uhZr7j6SQIl4mZco2wwNovSoQLSeNCHv0a2bFaCXP
|
|
||||||
3H/OLsNzhUjWBfnIzU/3VIjaiDjnxXCwcGgPjEvn0wo9G8WaoEIGTHajFeUBSn+s
|
|
||||||
zUWghU/ntCMt57RjXVRYQ43zdKBRsjOrJdz3sEgRDvH70/Uqn+nC58iIM2p5cnQC
|
|
||||||
05QVU1Einj8oOH7r+Q+DE9fLvO55fqpr4sexjfe2IdPXItaOHK8Vz/TwEtjUpltY
|
|
||||||
5gZf3F+x13XG61JDr7JuUR6+Z77fTSQ4oFUtSCEZgZSCb0Fl1Hr9/xKjVAAXNLli
|
|
||||||
wO4AiLQ8nES7is1EIi2vOo93kFuMLtZokL8EzRy0nTcdY+OAEhuQLVNhJ9+UapcD
|
|
||||||
eYyCxhcp2eLeI3YbNTsE9QfzdH0Vt+whd9r5nfx+RdjI2h4VdGfs/+vRyGSo/s9w
|
|
||||||
7uXZ2fv1HPgOQcz+5Zs5Ba9v512K6S7/+B3D4iBWSnsxqECQe/SlR+VV6r4h+/l7
|
|
||||||
jJ84KS0Ttw0N1GTRErgOqx7ERC1o4nmgNrNehLbq+aS78OxWrU4=
|
|
||||||
=cqO7
|
|
||||||
-----END PGP SIGNATURE-----
|
|
@ -1,116 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Tue Feb 25 19:38:56 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.3.2:
|
|
||||||
* New bugfix release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.3.2
|
|
||||||
- Changes since 6.3.1:
|
|
||||||
* update version for new release
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Feb 18 14:45:59 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.3.1:
|
|
||||||
* New bugfix release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.3.1
|
|
||||||
- Changes since 6.3.0:
|
|
||||||
* update version for new release
|
|
||||||
* Fixes for the software renderer
|
|
||||||
* Setup single-instance earlier
|
|
||||||
* Remember window geometry (kde#499653)
|
|
||||||
* update version for new release
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Thu Feb 6 13:47:13 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.3.0:
|
|
||||||
* New bugfix release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.3.0
|
|
||||||
- Changes since 6.2.91:
|
|
||||||
* update version for new release
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Thu Jan 23 13:46:58 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.2.91:
|
|
||||||
* New bugfix release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.2.91
|
|
||||||
- Changes since 6.2.90:
|
|
||||||
* update version for new release
|
|
||||||
* enjoy/Supporters: Update supporters
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sat Jan 11 18:29:04 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.2.90:
|
|
||||||
* New feature release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.2.90
|
|
||||||
- Too many changes to list here
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Dec 31 20:50:29 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.2.5:
|
|
||||||
* New bugfix release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.2.5
|
|
||||||
- Changes since 6.2.4:
|
|
||||||
* update version for new release
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Nov 26 15:47:37 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.2.4:
|
|
||||||
* New bugfix release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.2.4
|
|
||||||
- Changes since 6.2.3:
|
|
||||||
* update version for new release
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Nov 5 13:30:39 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.2.3:
|
|
||||||
* New bugfix release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.2.3
|
|
||||||
- Changes since 6.2.2:
|
|
||||||
* update version for new release
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 22 14:08:39 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.2.2:
|
|
||||||
* New bugfix release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.2.2
|
|
||||||
- Changes since 6.2.1:
|
|
||||||
* update version for new release
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 15 16:53:49 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.2.1:
|
|
||||||
* New bugfix release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.2.1
|
|
||||||
- Changes since 6.2.0:
|
|
||||||
* update version for new release
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sat Oct 5 10:44:34 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.2.0:
|
|
||||||
* New bugfix release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.2.0
|
|
||||||
- Changes since 6.1.90:
|
|
||||||
* update version for new release
|
|
||||||
* enjoy/Supporters: Update supporters
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Sep 17 14:54:33 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
|
||||||
|
|
||||||
- Update to 6.1.90:
|
|
||||||
* New feature release
|
|
||||||
* For more details see https://kde.org/announcements/plasma/6/6.1.90
|
|
||||||
- Too many changes to list here
|
|
||||||
- Rebase 0001-Use-the-openSUSE-wallpaper.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 10 14:55:03 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
Tue Sep 10 14:55:03 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package plasma6-welcome
|
# spec file for package plasma6-welcome
|
||||||
#
|
#
|
||||||
# Copyright (c) 2025 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,8 +16,8 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define kf6_version 6.10.0
|
%define kf6_version 6.2.0
|
||||||
%define qt6_version 6.7.0
|
%define qt6_version 6.6.0
|
||||||
|
|
||||||
%define rname plasma-welcome
|
%define rname plasma-welcome
|
||||||
# Full Plasma 6 version (e.g. 6.0.0)
|
# Full Plasma 6 version (e.g. 6.0.0)
|
||||||
@ -26,7 +26,7 @@
|
|||||||
%{!?_plasma6_version: %define _plasma6_version %(echo %{_plasma6_bugfix} | awk -F. '{print $1"."$2}')}
|
%{!?_plasma6_version: %define _plasma6_version %(echo %{_plasma6_bugfix} | awk -F. '{print $1"."$2}')}
|
||||||
%bcond_without released
|
%bcond_without released
|
||||||
Name: plasma6-welcome
|
Name: plasma6-welcome
|
||||||
Version: 6.3.2
|
Version: 6.1.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Onboarding wizard for Plasma
|
Summary: Onboarding wizard for Plasma
|
||||||
License: GPL-2.0-only OR GPL-3.0-only
|
License: GPL-2.0-only OR GPL-3.0-only
|
||||||
|
Loading…
x
Reference in New Issue
Block a user