forked from pool/plasma6-welcome
Compare commits
44 Commits
Author | SHA256 | Date | |
---|---|---|---|
28349cbef8 | |||
|
9657075dee | ||
99747be9be | |||
|
05accd5fff | ||
c2bed66ecf | |||
|
13b1322bc3 | ||
96f7c5b064 | |||
|
8c27fad283 | ||
49bc78d00b | |||
|
5f55abbd89 | ||
|
ca91d8bc7c | ||
54cc406f8e | |||
|
e45f96c325 | ||
ef541ac8e5 | |||
f03bf12e34 | |||
|
ebc8bc998d | ||
|
011cd9cc1a | ||
daae18aba1 | |||
|
6806e8aa7d | ||
19dff781d3 | |||
|
23f4b846c8 | ||
e63a1bf0c7 | |||
|
2f2643bc36 | ||
eb6fc4f132 | |||
|
079b21afef | ||
0b9275802d | |||
|
5813bffa39 | ||
2f4d3fd524 | |||
|
22d2d7b7c1 | ||
|
d347115671 | ||
|
a98454c197 | ||
0339381406 | |||
|
9f2e680667 | ||
501a6ec005 | |||
|
6c315033c4 | ||
070f3bd1c5 | |||
|
8b9b664fbc | ||
14e92326a3 | |||
|
8fd35804f1 | ||
6a1f0d3361 | |||
|
673dbccb94 | ||
9ce9678f9a | |||
|
409f742556 | ||
|
a4c169cbd2 |
@@ -1,34 +1,54 @@
|
||||
From fb7b5af1ef98643e84d40e58174d48ba22723253 Mon Sep 17 00:00:00 2001
|
||||
From: Luca Beltrame <lbeltrame@kde.org>
|
||||
Date: Fri, 12 Apr 2024 07:51:45 +0200
|
||||
From c6ff8dcf4ea993bc95aa00ae6f7e499d457a32bc Mon Sep 17 00:00:00 2001
|
||||
From: Fabian Vogt <fabian@ritter-vogt.de>
|
||||
Date: Sat, 11 Jan 2025 19:21:42 +0100
|
||||
Subject: [PATCH] Use the openSUSE wallpaper
|
||||
|
||||
This is unfortunately hardcoded. Use our default to more likely match what
|
||||
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/MockDesktop.qml | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
src/qml/mock/MockActivities.qml | 2 +-
|
||||
src/qml/mock/MockCard.qml | 2 +-
|
||||
src/qml/mock/MockOverview.qml | 2 +-
|
||||
3 files changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/src/qml/mock/MockDesktop.qml b/src/qml/mock/MockDesktop.qml
|
||||
index d9c906c..19c7b26 100644
|
||||
--- a/src/qml/mock/MockDesktop.qml
|
||||
+++ b/src/qml/mock/MockDesktop.qml
|
||||
@@ -14,12 +14,12 @@ Item {
|
||||
Index: plasma-welcome-6.3.80git.20250401T013956~eef0830/src/qml/mock/MockActivities.qml
|
||||
===================================================================
|
||||
--- plasma-welcome-6.3.80git.20250401T013956~eef0830.orig/src/qml/mock/MockActivities.qml 2025-04-01 03:39:56.000000000 +0200
|
||||
+++ plasma-welcome-6.3.80git.20250401T013956~eef0830/src/qml/mock/MockActivities.qml 2025-04-01 08:46:00.810327705 +0200
|
||||
@@ -107,7 +107,7 @@
|
||||
// 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:" + Private.App.installPrefix + "/share/wallpapers/Next/contents/images/5120x2880.png"
|
||||
+ source: "file:" + Private.App.installPrefix + "/share/wallpapers/openSUSEdefault/contents/images/1920x1200.png"
|
||||
mipmap: true
|
||||
}
|
||||
|
||||
property int backgroundAlignment: Qt.AlignRight | Qt.AlignBottom
|
||||
Index: plasma-welcome-6.3.80git.20250401T013956~eef0830/src/qml/mock/MockCard.qml
|
||||
===================================================================
|
||||
--- plasma-welcome-6.3.80git.20250401T013956~eef0830.orig/src/qml/mock/MockCard.qml 2025-04-01 03:39:56.000000000 +0200
|
||||
+++ plasma-welcome-6.3.80git.20250401T013956~eef0830/src/qml/mock/MockCard.qml 2025-04-01 08:46:34.753303169 +0200
|
||||
@@ -23,7 +23,7 @@
|
||||
property double backgroundScale: 1
|
||||
property int blurRadius: 32
|
||||
|
||||
- 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/1280x1024.png"
|
||||
readonly property int desktopWidth: 1280
|
||||
- readonly property int desktopHeight: 800
|
||||
+ readonly property int desktopHeight: 1024
|
||||
- readonly property string wallpaper: "file:" + Private.App.installPrefix + "/share/wallpapers/Next/contents/images/5120x2880.png"
|
||||
+ readonly property string wallpaper: "file:" + Private.App.installPrefix + "/share/wallpapers/openSUSEdefault/contents/images/1920x1200.png"
|
||||
readonly property int desktopWidth: 1024 * backgroundScale
|
||||
readonly property int desktopHeight: 576 * backgroundScale
|
||||
|
||||
/*
|
||||
- * 1280x800 is chosen to look good at normal window sizes: The aspect closely
|
||||
+ * 1280x1024 is chosen to look good at normal window sizes: The aspect closely
|
||||
* matches that of the mock as shown in the application and is not too large.
|
||||
*
|
||||
* The background be positioned according to the alignment, and expand to fit
|
||||
--
|
||||
2.44.0
|
||||
Index: plasma-welcome-6.3.80git.20250401T013956~eef0830/src/qml/mock/MockOverview.qml
|
||||
===================================================================
|
||||
--- plasma-welcome-6.3.80git.20250401T013956~eef0830.orig/src/qml/mock/MockOverview.qml 2025-04-01 03:39:56.000000000 +0200
|
||||
+++ plasma-welcome-6.3.80git.20250401T013956~eef0830/src/qml/mock/MockOverview.qml 2025-04-01 08:46:52.706234697 +0200
|
||||
@@ -20,7 +20,7 @@
|
||||
|
||||
// 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:" + Private.App.installPrefix + "/share/wallpapers/Next/contents/images/5120x2880.png"
|
||||
+ readonly property string wallpaper: "file:" + Private.App.installPrefix + "/share/wallpapers/openSUSEdefault/contents/images/1920x1200.png"
|
||||
readonly property double scale: layout.scale
|
||||
|
||||
// Underlay
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:12ece9e7d61c3ec6a23fe9357667416e26802abafdc69f245cc3d96a05ef9d96
|
||||
size 672448
|
@@ -1,16 +0,0 @@
|
||||
-----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-----
|
3
plasma-welcome-6.4.4.tar.xz
Normal file
3
plasma-welcome-6.4.4.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:309e1b0d8d16491276b00657c24197c6200c2a3242c3f530a22307689b5d23b1
|
||||
size 717372
|
11
plasma-welcome-6.4.4.tar.xz.sig
Normal file
11
plasma-welcome-6.4.4.tar.xz.sig
Normal file
@@ -0,0 +1,11 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQEzBAABCgAdFiEE0HvYZixWyykbMW6y9WdWBcdOAs8FAmiR4u0ACgkQ9WdWBcdO
|
||||
As+1vgf+KagkdeOElXmS5hMPGh6DSgxTLgnz/6kvd+2xBW5ZcE7VEHb26ErF6Y54
|
||||
tQdq0q7oDd0iKDZAzZmTK/VKLnaVjP4wgpQLjlcRKzaQhD7SRmU0eZl7vyizvpQc
|
||||
EQVr3zyKINjFxlVAGPKdX07C1zz+kLl/ruQLYpVXnqAQFYiujnFUUW6oseOxoCDU
|
||||
OJdOeel3zhBbXOK8vGC8ztKjel8fWrwGZHtgMe5yqlqVZKNNaqgeh6fBf7aV2o3S
|
||||
n2n8fmd1Rgjez39qaIs3grvr5OjL84spE+LsR7AMFlnkAF583iCkTCfDqo/ImhBs
|
||||
9wxeML5O0ySZiUIFU4xxvLtcubSs8Q==
|
||||
=1t3x
|
||||
-----END PGP SIGNATURE-----
|
@@ -1,3 +1,212 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 6 13:31:29 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||
|
||||
- Update to 6.4.4:
|
||||
* New bugfix release
|
||||
* For more details see https://kde.org/announcements/plasma/6/6.4.4
|
||||
- Changes since 6.4.3:
|
||||
* Update version for new release 6.4.4
|
||||
* PowerfulWhenNeeded: Fix multi-line translated text (kde#506225)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 15 10:58:28 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||
|
||||
- Update to 6.4.3:
|
||||
* New bugfix release
|
||||
* For more details see https://kde.org/announcements/plasma/6/6.4.3
|
||||
- Changes since 6.4.2:
|
||||
* Update version for new release 6.4.3
|
||||
* Give tab focus to page content label
|
||||
* Make PlasmaFeatureCard accessible
|
||||
* Make pseudo-buttons based on AbstractButton
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 1 13:11:35 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||
|
||||
- Update to 6.4.2:
|
||||
* New bugfix release
|
||||
* For more details see https://kde.org/announcements/plasma/6/6.4.2
|
||||
- Changes since 6.4.1:
|
||||
* Update version for new release 6.4.2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 24 11:56:03 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||
|
||||
- Update to 6.4.1:
|
||||
* New bugfix release
|
||||
* For more details see https://kde.org/announcements/plasma/6/6.4.1
|
||||
- Changes since 6.4.0:
|
||||
* Update version for new release 6.4.1
|
||||
* kde-ci: Fix CI Missing kcmutils dependency breaks CI.
|
||||
* Don't break announcement URL on C locale (with e.g. musl libc)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 12 10:37:56 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||
|
||||
- Update to 6.4.0:
|
||||
* New bugfix release
|
||||
* For more details see https://kde.org/announcements/plasma/6/6.4.0
|
||||
- Changes since 6.3.91:
|
||||
* Update version for new release 6.4.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 29 21:23:14 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||
|
||||
- Update to 6.3.91:
|
||||
* New bugfix release
|
||||
* For more details see https://kde.org/announcements/plasma/6/6.3.91
|
||||
- Changes since 6.3.90:
|
||||
* Update version for new release 6.3.91
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 19 19:38:44 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||
|
||||
- Update to 6.3.90:
|
||||
* New feature release
|
||||
* For more details see https://kde.org/announcements/plasma/6/6.3.90
|
||||
- Too many changes to list here
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 6 20:13:00 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||
|
||||
- Update to 6.3.5:
|
||||
* New bugfix release
|
||||
* For more details see https://kde.org/announcements/plasma/6/6.3.5
|
||||
- Changes since 6.3.4:
|
||||
* update version for new release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 2 10:06:01 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||
|
||||
- Update to 6.3.4
|
||||
* New bugfix release
|
||||
* For more details please see:
|
||||
* https://kde.org/announcements/plasma/6/6.3.4
|
||||
- Changes since 6.3.3:
|
||||
* update version for new release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 11 14:44:50 UTC 2025 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||
|
||||
- Update to 6.3.3:
|
||||
* New bugfix release
|
||||
* For more details see https://kde.org/announcements/plasma/6/6.3.3
|
||||
- Changes since 6.3.2:
|
||||
* update version for new release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package plasma6-welcome
|
||||
#
|
||||
# Copyright (c) 2024 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,8 +16,8 @@
|
||||
#
|
||||
|
||||
|
||||
%define kf6_version 6.2.0
|
||||
%define qt6_version 6.6.0
|
||||
%define kf6_version 6.14.0
|
||||
%define qt6_version 6.8.0
|
||||
|
||||
%define rname plasma-welcome
|
||||
# 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}')}
|
||||
%bcond_without released
|
||||
Name: plasma6-welcome
|
||||
Version: 6.1.5
|
||||
Version: 6.4.4
|
||||
Release: 0
|
||||
Summary: Onboarding wizard for Plasma
|
||||
License: GPL-2.0-only OR GPL-3.0-only
|
||||
@@ -84,6 +84,8 @@ how to connect to the internet, install apps, customize the system, and more!
|
||||
%install
|
||||
%kf6_install
|
||||
|
||||
rm %{buildroot}%{_kf6_libdir}/libplasma-welcome-publicplugin.a
|
||||
|
||||
%find_lang plasma-welcome
|
||||
|
||||
%files
|
||||
@@ -91,6 +93,8 @@ how to connect to the internet, install apps, customize the system, and more!
|
||||
%{_kf6_applicationsdir}/org.kde.plasma-welcome.desktop
|
||||
%{_kf6_appstreamdir}/org.kde.plasma-welcome.appdata.xml
|
||||
%{_kf6_bindir}/plasma-welcome
|
||||
%dir %{_kf6_qmldir}/org/kde/plasma
|
||||
%{_kf6_qmldir}/org/kde/plasma/welcome/
|
||||
%{_kf6_plugindir}/kf6/kded/kded_plasma-welcome.so
|
||||
|
||||
%files lang -f plasma-welcome.lang
|
||||
|
Reference in New Issue
Block a user