plasma-workspace.git
4 months agoMerge version 4:6.3.5-1+rpi1 and 4:6.3.6-2 to produce 4:6.3.6-2+rpi1 trixie-staging archive/raspbian/4%6.3.6-2+rpi1 raspbian/4%6.3.6-2+rpi1
Raspbian automatic forward porter [Wed, 30 Jul 2025 13:04:23 +0000 (14:04 +0100)]
Merge version 4:6.3.5-1+rpi1 and 4:6.3.6-2 to produce 4:6.3.6-2+rpi1

4 months agoMerge plasma-workspace (4:6.3.6-2) import into refs/heads/workingbranch
Aurélien COUDERC [Mon, 21 Jul 2025 16:21:10 +0000 (18:21 +0200)]
Merge plasma-workspace (4:6.3.6-2) import into refs/heads/workingbranch

4 months ago[PATCH] Do not emit OOM notifications on systemd services reload
Antonio Rojas [Sat, 5 Jul 2025 19:52:31 +0000 (19:52 +0000)]
[PATCH] Do not emit OOM notifications on systemd services reload

When systemd services are reloaded, systemd emits all PropertiesChanged signals for all units.

Comparing with the original signals these have a null MainPID, so we can use that to identify them and not emit a notification.

BUG: 502279

(cherry picked from commit ce33b24d4f1b5711f7585b33822ab87f2f43af0b)

ce33b24d Do not emit OOM notifications on systemd services reload

Co-authored-by: Antonio Rojas <arojas@archlinux.org>
Gbp-Pq: Name upstream_ec837446_Do-not-emit-OOM-notifications-on-systemd-services-reload.patch

4 months ago[PATCH] Only resize width to fit date elements if they are visible
Niccolò Venerandi [Tue, 17 Jun 2025 07:39:05 +0000 (09:39 +0200)]
[PATCH] Only resize width to fit date elements if they are visible

BUG:505614

Gbp-Pq: Name upstream_b2e80af5_Only-resize-width-to-fit-date-elements-if-they-are-visible.patch

4 months ago[PATCH] applets/kicker: resolve non-existing files to their url
Christoph Wolk [Mon, 23 Jun 2025 20:03:27 +0000 (20:03 +0000)]
[PATCH] applets/kicker: resolve non-existing files to their url

Kicker's PAStats-based favorites do some normalization to, among others,
resolve symlinked files to their resolved path to reduce duplicates.
However, if the file doesn't exist, it essentially just gives up. This
is a problem when trying to remove favorites that were deleted: while
the un-favoriting in PAStats succeeds, kicker can't remove it from its
own model because it can't identify the file by its url if it doesn't
exist. So removed favorites confusingly stick around until the next
plasmashell restart.

Instead, we take the base url in that case - as the entries already have
gone through the process, the url is their real url anyway.

BUG: 402820
FIXED-IN: 6.4.1

(cherry picked from commit da244b8764cde5509598965f24804bbaa5e0939f)

Co-authored-by: Christoph Wolk <cwo.kde@posteo.net>
Gbp-Pq: Name upstream_d1896f5a_applets-kicker-resolve-non-existing-files-to-their-url.patch

4 months ago[PATCH] kcms/feedback: remove little hover icons
Nate Graham [Fri, 20 Jun 2025 14:38:03 +0000 (08:38 -0600)]
[PATCH] kcms/feedback: remove little hover icons

These icons have an unclear purpose since they have no text, and the
same icons are not repeated elsewhere in the KCM's UI to provide some
clue as to their meaning or purpose. They only appear on hover and
can't be accessed on touch at all; let's just remove them to prevent
user confusion.

The backend code providing icons in the model is preserved in case we
ever want to do something else with icons in the future.

BUG: 505761
FIXED-IN: 6.4.1

(cherry picked from commit 3c277146c4ec44cde54988dcd6c70b17442ad5e9)

Co-authored-by: Nate Graham <nate@kde.org>
Gbp-Pq: Name upstream_a4e153b3_kcms-feedback-remove-little-hover-icons.patch

4 months ago[PATCH] Klipper: Remove local Configure Klipper action
Akseli Lahtinen [Thu, 19 Jun 2025 17:46:12 +0000 (20:46 +0300)]
[PATCH] Klipper: Remove local Configure Klipper action

This action would cause the shortcuts configuration menu to show
both local and global shortcuts, which makes no sense due to
Klipper being a globally accessed application.

This action is only used in cases where Klipper will be it's own
application with a normal window, similar to applications like Dolphin,
Kate, etc.. But Klipper is never used this way.

Currently only place where you can use this action is the configuration
menu itself, where it does nothing, since the menu is already open.

So let's just remove it. This also makes sure users do not accidentally
select "Shortcut/Alternate" instead of "Global Shortcut/Alternate"
for their shortcuts. See the related bug for context.

BUG: 501632
FIXED-IN: 6.4.1

(cherry picked from commit 1d3fe2ac0c0e640f0b66ec1e1d34f0e0196bbd7d)

Co-authored-by: Akseli Lahtinen <akselmo@akselmo.dev>
Gbp-Pq: Name upstream_d286dce3_Klipper-Remove-local-Configure-Klipper-action.patch

4 months ago[PATCH] applets/kicker: fix filenames containing # in history
Christoph Wolk [Thu, 5 Jun 2025 18:33:29 +0000 (18:33 +0000)]
[PATCH] applets/kicker: fix filenames containing # in history

Kicker takes the resource name as provided by PlasmaActivities.Stats and
interprets it as an URL, setting the 'file' url scheme if necessary.
This fails when the filenames contain a '#' character, as QUrl will
interpret them as url fragments if not percent-encoded (which they are
not for local files, but are for remote urls). This makes display and
opening of such files fail in both Kicker and Kickoff.

Instead, we test whether it's an absolute path (the local history
entries are) and if so, use QUrl.fromLocalFile to get the correct url.
This is also what PlasmaActivities.Stats does in ResultSet (which is
what the Task Manager uses, so everything works there already, but we
want a real model here).

BUG: 419449
BUG: 437960
FIXED-IN: 6.4.0

(cherry picked from commit c6c0a68416b5042032853a6f673bddbe475567b7)

Co-authored-by: Christoph Wolk <cwo.kde@posteo.net>
Gbp-Pq: Name upstream_ab55c53e_applets-kicker-fix-filenames-containing-in-history.patch

4 months ago[PATCH] libtaskmanager: fix "move to activity" when on almost all activities
Christoph Wolk [Thu, 5 Jun 2025 15:18:08 +0000 (15:18 +0000)]
[PATCH] libtaskmanager: fix "move to activity" when on almost all activities

Using the task manager to move windows to other activities works in
most circumstances, but fails under one condition: when a window is
already on all activities except the one that is being moved to, the
window instead ends up on all activities, and has to be moved to that
activity again to be only on that workspace. This is usually a rare edge
case, but very commonly happens when using exactly two activities,
namely always when moving a window from one activity to the other.

This is the result of some unusual api implementation details of
activities: a window being on all activities is represented by having
the activity list for that window empty. Moving a window to a different
activity in  libtaskmanager is done by first adding the window to the
activity list using the plasma wayland protocol. If the list on the kwin
side is now  full, it'll flip it over into the empty list (i.e. all
activities). Next libtaskmanager tries to remove the other activities
from the list, this fails because the list is already empty (and kwin
doesn't handle this because "this use case is not important enough to
handle here").

Luckily enough, this use case is trivially easy to handle here, all we
need to do is remove existing activities first, then add the new one.
This will also briefly put it on all activities, but adding new
activities works (and puts it only on that activity), it's only
removing them that fails.

BUG: 483148
FIXED-IN: 6.4.0

(cherry picked from commit 99f9dc95226719c2be53fd86a4a0a3bae88d0aa2)

Co-authored-by: Christoph Wolk <cwo.kde@posteo.net>
Gbp-Pq: Name upstream_e2ae8f54_libtaskmanager-fix-move-to-activity-when-on-almost-all-activities.patch

4 months ago[PATCH] containmentlayoutmanager: don't enter edit mode without activefocus
Christoph Wolk [Tue, 3 Jun 2025 21:04:21 +0000 (21:04 +0000)]
[PATCH] containmentlayoutmanager: don't enter edit mode without activefocus

ItemContainer enters edit mode on pressAndHold for desktop widgets not
set to immutable. This causes a problem with menus that open on press -
the container will not receive further mouse events that now go to the
menu, so it still considers itself pressed and unmoved the whole time,
and goes into edit mode after a while, exiting the menu. This makes
on-press menus in desktop widgets borderline unusable, and even if the
user manages to be quick enough to activate the desired entry during the
pressAndHold duration, it'll still enter edit mode unless the user also
does a full click on the applet afterward.

We can circumvent this particular case relatively easily by listening to
the container's activefocus changes - the popup opening does not cause
a focusOut event, but it does take activeFocus away from the container,
so if we stop the timer in that case, it works out as it should.

CCBUG: 416909

(cherry picked from commit 3d9dd7fe1a664b6b4f20523d6c4425eb57dc6b4c)

Co-authored-by: Christoph Wolk <cwo.kde@posteo.net>
Gbp-Pq: Name upstream_8e6b79da_containmentlayoutmanager-don-t-enter-edit-mode-without-activefocus.patch

4 months ago[PATCH] Do not show logout screen when in lockscreen / screensaver
Niccolò Venerandi [Mon, 2 Jun 2025 11:35:03 +0000 (11:35 +0000)]
[PATCH] Do not show logout screen when in lockscreen / screensaver

BUG:504575

(cherry picked from commit ba7a8c16b7934fa23d3a44bb38667554e39996b7)

Co-authored-by: Niccolò Venerandi <niccolo@venerandi.com>
Gbp-Pq: Name upstream_f1605df4_Do-not-show-logout-screen-when-in-lockscreen-screensaver.patch

4 months ago[PATCH] Do not track cache partitions with freespacenotifier
Niccolò Venerandi [Thu, 29 May 2025 07:25:03 +0000 (07:25 +0000)]
[PATCH] Do not track cache partitions with freespacenotifier

BUG:504423

(cherry picked from commit f4a08099d0aae466f06f0094498cc593c8ce4532)

e033ef89 Do not track cache partitions with freespacenotifier
5203019a Apply 1 suggestion(s) to 1 file(s)

Co-authored-by: Niccolò Venerandi <niccolo@venerandi.com>
Gbp-Pq: Name upstream_01978f58_Do-not-track-cache-partitions-with-freespacenotifier.patch

4 months ago[PATCH] shell: Rearrange the teardown order
Vlad Zahorodnii [Wed, 28 May 2025 13:36:20 +0000 (13:36 +0000)]
[PATCH] shell: Rearrange the teardown order

At the moment, the ShellCorona is destroyed after the QApplication object.
Destroying something after the application object can lead to
unexpected results because most of the code is written with an assumption
that the app object and the associated objects, e.g. the qpa, are still
valid when the cleanup code runs.

This change puts the ShellCorona on the stack so the destruction order
looks as follows:

- destroy ShellCorona
- destroy QApplication

CCBUG: 487660

(cherry picked from commit e2326d7f9e752eb18411ef4c0bcd53b8f34e02c6)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
Gbp-Pq: Name upstream_88911e82_shell-Rearrange-the-teardown-order.patch

4 months ago[PATCH] wallpapers/image: don't crash when removing /usr/share
Marco Martin [Wed, 28 May 2025 08:56:49 +0000 (10:56 +0200)]
[PATCH] wallpapers/image: don't crash when removing /usr/share

we delay addSourceModel when the source model is fully loaded,
but it might take a long time (ie adding /usr/share)

if then we remove it before it's done, we will have either an assert or a crash
in qconcatenatetablesmodel (depending if Qt asserts are turned on)

we can safely call addsourceModel immediately, so rowsInserted will be
forwarded as they come in

BUG:503593

(cherry picked from commit f584f1beb3aaafe36c328a761b8eea02b46f20c4)

f584f1be wallpapers/image: don't crash when removing /usr/share

Co-authored-by: Marco Martin <notmart@gmail.com>
Gbp-Pq: Name upstream_e9fd71d9_wallpapers-image-don-t-crash-when-removing-usr-share.patch

4 months ago[PATCH] libtaskmanager: show Comment for launcher icons when appropriate
Nate Graham [Thu, 22 May 2025 15:06:52 +0000 (09:06 -0600)]
[PATCH] libtaskmanager: show Comment for launcher icons when appropriate

Right now, launcher icons get a caption equal to the app's GenericName,
if one is set in the metadata. If not, it gets no caption.

This differs from what Kicker and Kickoff Manager do: a more complex
behavior to show the Comment if the app has no GenericName or if its
GenericName is equal to its Name. Let's replicate the same logic here.

BUG: 504431
FIXED-IN: 6.4.0

(cherry picked from commit ae39f3219d6fc849fe8de0d1c165a572598082fe)

Co-authored-by: Nate Graham <nate@kde.org>
Gbp-Pq: Name upstream_45784326_libtaskmanager-show-Comment-for-launcher-icons-when-appropriate.patch

4 months ago[PATCH] applets/systemmonitor: skip configure button on sensorless faces
Christoph Wolk [Sat, 17 May 2025 07:38:00 +0000 (07:38 +0000)]
[PATCH] applets/systemmonitor: skip configure button on sensorless faces

Some faces don't need sensors as they have their data included already,
namely Process Table and Application Table. The applet does not take
this into account and keeps showing the "Configure" button.

Instead, don't show that button if one of these faces is the current
face.

BUG: 504335
FIXED-IN: 6.4.0

(cherry picked from commit 184e883786520d6a7494b4db69dad29d69ff63a6)

Co-authored-by: Christoph Wolk <cwo.kde@posteo.net>
Gbp-Pq: Name upstream_b9bc83c6_applets-systemmonitor-skip-configure-button-on-sensorless-faces.patch

4 months ago[PATCH] applets/systemmonitor: handle null faceController
Christoph Wolk [Tue, 25 Mar 2025 09:46:10 +0000 (10:46 +0100)]
[PATCH] applets/systemmonitor: handle null faceController

When initially adding a systemmonitor widget to a panel, faceController
can still be null, causing several TypeErrors.

Instead, use optional chaining and default values to prevent these
errors until the faceController is loaded.

Gbp-Pq: Name upstream_d4df9b5f_applets-systemmonitor-handle-null-faceController.patch

4 months ago[PATCH] applets/notification: fix fullRepresentation-only widgets
Christoph Wolk [Sat, 10 May 2025 17:10:30 +0000 (19:10 +0200)]
[PATCH] applets/notification: fix fullRepresentation-only widgets

The fullRepresentation has a little efficiency trick: it unloads the
model while it is not expanded, so the ListView does not need to be
updated while it is not visible. In general this is fine, but it
interacts very badly with attempts to put the fullRepresentation
directly on the desktop (or in a very large panel) and the auto-closing
functionality of the notification applet. When the notification history
ever becomes empty, it tries to close the fullRepresentation by setting
expanded to false, which by itself does not do any harm either (the
fullRepresentation stays a fullRepresentation), but it does unload the
model, so the history never updates again (unless the user manually
resizes it to become too small for the fullRepresentation then back
again, which resets it to its proper expanded state).

Instead, we modify closePlasmoid() to only set expanded to false if the
widget is below either switchWidth or switchHeight.

BUG: 503815
FIXED-IN: 6.4.0

Gbp-Pq: Name upstream_142caad0_applets-notification-fix-fullRepresentation-only-widgets.patch

4 months ago[PATCH] shell/Osd: Fix missing RTL PlasmaCore.Dialog does not set LayoutMirroring...
Oliver Beard [Fri, 9 May 2025 14:38:00 +0000 (15:38 +0100)]
[PATCH] shell/Osd: Fix missing RTL PlasmaCore.Dialog does not set LayoutMirroring for us, so we need to do it ourselves.

BUG: 503255

Gbp-Pq: Name upstream_8845c001_shell-Osd-Fix-missing-RTL.patch

4 months ago[PATCH] wallpapers/image: Fix thumbnails not matching output size
Vlad Zahorodnii [Fri, 16 May 2025 15:19:32 +0000 (15:19 +0000)]
[PATCH] wallpapers/image: Fix thumbnails not matching output size

The `Screen` is an attached property and it never changes, we need to
monitor screen size changes instead.

BUG: 483097

(cherry picked from commit d6436e077c05abd100d905aaa73222a48ca1695f)

7678dfa9 wallpapers/image: Fix thumbnails not matching output size
5f4d8bc8 Apply 1 suggestion(s) to 1 file(s)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
Gbp-Pq: Name upstream_6d12cde3_wallpapers-image-Fix-thumbnails-not-matching-output-size.patch

4 months ago[PATCH] Warn user about full storage in any device/partition
Niccolò Venerandi [Mon, 24 Mar 2025 17:57:07 +0000 (18:57 +0100)]
[PATCH] Warn user about full storage in any device/partition

Currently, we only check for home and / partitions to be full
when warning user. With this commit we instead check for all
partitions / devices that are mounted and not read only.

Co-authored-by: David Edmundson <kde@davidedmundson.co.uk>
Gbp-Pq: Name upstream_9e0939c1_Warn-user-about-full-storage-in-any-device-partition.patch

4 months ago[PATCH] applets/notifications: don't allow horizontal scrolling
Christoph Wolk [Thu, 8 May 2025 13:27:47 +0000 (15:27 +0200)]
[PATCH] applets/notifications: don't allow horizontal scrolling

Notification bodies have their width constrained by the notification and
the horizontal scrollbar forced off, but they can still be scrolled with
a horizontal wheel, touchpad, or similiar. This is surprising and
pointless.

Instead explicitly set the contentWidth, which is otherwise ultimately
based on the underlying TextEdit (and that's the width it would have on
a single line without wrapping).

Gbp-Pq: Name upstream_2c27c9db_applets-notifications-don-t-allow-horizontal-scrolling.patch

4 months ago[PATCH] applets/devicenotifier: check if device has been added before
Bohdan Onofriichuk [Mon, 5 May 2025 19:13:54 +0000 (19:13 +0000)]
[PATCH] applets/devicenotifier: check if device has been added before

BUG: 495140

Skip device if applet already has device with similar udi

Gbp-Pq: Name upstream_a83c4e5f_applets-devicenotifier-check-if-device-has-been-added-before.patch

4 months ago[PATCH] kcm_regionandlang: add locale C to mapping and always set LANG and LC_*
Han Young [Sat, 22 Feb 2025 15:13:19 +0000 (23:13 +0800)]
[PATCH] kcm_regionandlang: add locale C to mapping and always set LANG and LC_*

BUG: 500432

Add locale C to glibc mappings so that locale C is actually saved to config file

Also set LC_* whenever LANG is set, this ensure LC_* are always up to date. In previous logic, LC_* can become out of sync if user change LANG to something else than changed it back.

Gbp-Pq: Name upstream_c9ee2931_kcm-regionandlang-add-locale-C-to-mapping-and-always-set-LANG-and-LC-.patch

4 months ago[PATCH] kcm/users: refine "deleting logged-in user" UX
Nate Graham [Fri, 14 Mar 2025 22:23:58 +0000 (16:23 -0600)]
[PATCH] kcm/users: refine "deleting logged-in user" UX

Right now there are two problems:
1. Deleting a logged-in user shows no warning about this.
2. Asking to delete the files of a logged-in user fails silently
   (AccountsService simply won't do it).

This commit solves both problems: now the user sees a warning dialog
when they try to delete another logged-in user, and it also prevents
them from trying to delete a logged-in user's files, instead redirecting
them to just delete the account but not the files.

To achieve this, I needed to change what the `loggedIn` property does,
because previously it was inaccurate, returning whether the queried user
is the currently logged-in user. Now it returns whether the quaried user
is logged in, and I added a new `isMe` property to hold whether the
queried user is the currently logged-in user.

BUG: 495494
FIXED-IN: 6.4.0

Gbp-Pq: Name upstream_9abfdd26_kcm-users-refine-deleting-logged-in-user-UX.patch

4 months ago[PATCH] users kcm: Fix issue in sorting user list
Sune Vuorela [Thu, 13 Feb 2025 19:28:40 +0000 (19:28 +0000)]
[PATCH] users kcm: Fix issue in sorting user list

If two users are logged in, the sorting order is not stable, both should be sorted before the other

Use partition instead of sorting, since we only care about having moved logged in users up front.

Found by: Kamil Kaznowski

Gbp-Pq: Name upstream_fbb2e6d3_users-kcm-Fix-issue-in-sorting-user-list.patch

4 months ago[PATCH] applets/appmenu: Store dbus menu importer in a std::unique_ptr
Vlad Zahorodnii [Wed, 23 Apr 2025 11:34:28 +0000 (14:34 +0300)]
[PATCH] applets/appmenu: Store dbus menu importer in a std::unique_ptr

The code is simpler this way.

Gbp-Pq: Name upstream_5d008e00_applets-appmenu-Store-dbus-menu-importer-in-a-std-unique-ptr.patch

4 months ago[PATCH] applets/appmenu: Fix displaying menu of the previous active window
Vlad Zahorodnii [Fri, 18 Apr 2025 19:39:46 +0000 (22:39 +0300)]
[PATCH] applets/appmenu: Fix displaying menu of the previous active window

We need to break the DBusMenuImporter::menuUpdated() signal connection
when the active window changes. Otherwise, it's possible that the
menuUpdated signal will be emitted and the menu will be marked as
available.

BUG: 473714

Gbp-Pq: Name upstream_73875471_applets-appmenu-Fix-displaying-menu-of-the-previous-active-window.patch

4 months ago[PATCH] applets/notifications: never use scientific notation for large numbers
Nate Graham [Sat, 29 Mar 2025 21:35:36 +0000 (15:35 -0600)]
[PATCH] applets/notifications: never use scientific notation for large numbers

Normal people don't know how to read it.

BUG: 422166
FIXED-IN: 6.4.0

Gbp-Pq: Name upstream_cf206f9d_applets-notifications-never-use-scientific-notation-for-large-numbers.patch

4 months ago[PATCH] applets/systemtray: Open context menu on click when ItemIsMenu
Kai Uwe Broulik [Sat, 22 Mar 2025 17:22:35 +0000 (18:22 +0100)]
[PATCH] applets/systemtray: Open context menu on click when ItemIsMenu

As per StatusNotifierItem spec:

> The item only support the context menu, the visualization should
prefer showing the menu or sending ContextMenu() instead of Activate()

Gbp-Pq: Name upstream_f17c2546_applets-systemtray-Open-context-menu-on-click-when-ItemIsMenu.patch

4 months ago[PATCH] Fix Scroll Wheel issue in AllApps submenu of Application Dashboard
Tomislav Pap [Mon, 24 Mar 2025 23:23:07 +0000 (23:23 +0000)]
[PATCH] Fix Scroll Wheel issue in AllApps submenu of Application Dashboard

Scroll with mouse wheel was problematic in AllApps subsection. It worked
partially, abruptly stopping when hovering over app icons, or just
during mouse wheel scrolling.

The problem is that QQuick WheelInterceptor::findwheelArea() never entered
into its if statement because there are 3 children elements of QML parent,
and their z axis values are 1, 0, 0 respectfully.

BUG: 486481
FIXED-IN: 6.4.0

Gbp-Pq: Name upstream_4f9b1a69_Fix-Scroll-Wheel-issue-in-AllApps-submenu-of-Application-Dashboard.patch

4 months ago[PATCH] libkmpris: allow MultiplexerModel to show actual player name
Fushan Wen [Mon, 24 Mar 2025 12:33:47 +0000 (20:33 +0800)]
[PATCH] libkmpris: allow MultiplexerModel to show actual player name

The lock screen needs it to show the actual player name instead of
"Choose player automatically"

Gbp-Pq: Name upstream_e4e0dee5_libkmpris-allow-MultiplexerModel-to-show-actual-player-name.patch

4 months agorelax-interplasma-versioned-deps
Debian Qt/KDE Maintainers [Mon, 21 Jul 2025 16:21:10 +0000 (18:21 +0200)]
relax-interplasma-versioned-deps

Gbp-Pq: Name relax-interplasma-versioned-deps.patch

4 months agofix-incorrect-libplasma-dependency-version
Debian Qt/KDE Maintainers [Mon, 21 Jul 2025 16:21:10 +0000 (18:21 +0200)]
fix-incorrect-libplasma-dependency-version

Gbp-Pq: Name fix-incorrect-libplasma-dependency-version.patch

4 months agoplasma-workspace (4:6.3.6-2) unstable; urgency=medium
Aurélien COUDERC [Mon, 21 Jul 2025 16:21:10 +0000 (18:21 +0200)]
plasma-workspace (4:6.3.6-2) unstable; urgency=medium

  [ Aurélien COUDERC ]
  * Fix incorrectly encoded libplasma dependency version that breaks
    builds with our mixed 6.3.x packages in trixie.

[dgit import unpatched plasma-workspace 4:6.3.6-2]

4 months agoImport plasma-workspace_6.3.6-2.debian.tar.xz
Aurélien COUDERC [Mon, 21 Jul 2025 16:21:10 +0000 (18:21 +0200)]
Import plasma-workspace_6.3.6-2.debian.tar.xz

[dgit import tarball plasma-workspace 4:6.3.6-2 plasma-workspace_6.3.6-2.debian.tar.xz]

4 months agoImport plasma-workspace_6.3.6.orig.tar.xz
Aurélien COUDERC [Sat, 19 Jul 2025 10:11:47 +0000 (12:11 +0200)]
Import plasma-workspace_6.3.6.orig.tar.xz

[dgit import orig plasma-workspace_6.3.6.orig.tar.xz]

5 months agoMerge version 4:6.3.4-1+rpi1 and 4:6.3.5-1 to produce 4:6.3.5-1+rpi1 archive/raspbian/4%6.3.5-1+rpi1 raspbian/4%6.3.5-1+rpi1
Raspbian automatic forward porter [Thu, 19 Jun 2025 13:32:48 +0000 (14:32 +0100)]
Merge version 4:6.3.4-1+rpi1 and 4:6.3.5-1 to produce 4:6.3.5-1+rpi1

6 months agoMerge plasma-workspace (4:6.3.5-1) import into refs/heads/workingbranch
Aurélien COUDERC [Tue, 20 May 2025 06:31:26 +0000 (08:31 +0200)]
Merge plasma-workspace (4:6.3.5-1) import into refs/heads/workingbranch

6 months ago[PATCH] applets/systemmonitor: skip configure button on sensorless faces
Christoph Wolk [Sat, 17 May 2025 07:38:00 +0000 (07:38 +0000)]
[PATCH] applets/systemmonitor: skip configure button on sensorless faces

Some faces don't need sensors as they have their data included already,
namely Process Table and Application Table. The applet does not take
this into account and keeps showing the "Configure" button.

Instead, don't show that button if one of these faces is the current
face.

BUG: 504335
FIXED-IN: 6.4.0

(cherry picked from commit 184e883786520d6a7494b4db69dad29d69ff63a6)

Co-authored-by: Christoph Wolk <cwo.kde@posteo.net>
Gbp-Pq: Name upstream_b9bc83c6_applets-systemmonitor-skip-configure-button-on-sensorless-faces.patch

6 months ago[PATCH] applets/systemmonitor: handle null faceController
Christoph Wolk [Tue, 25 Mar 2025 09:46:10 +0000 (10:46 +0100)]
[PATCH] applets/systemmonitor: handle null faceController

When initially adding a systemmonitor widget to a panel, faceController
can still be null, causing several TypeErrors.

Instead, use optional chaining and default values to prevent these
errors until the faceController is loaded.

Gbp-Pq: Name upstream_d4df9b5f_applets-systemmonitor-handle-null-faceController.patch

6 months ago[PATCH] klipper: make "Add Actions" dialog only window-modal
Nate Graham [Thu, 22 May 2025 20:58:27 +0000 (14:58 -0600)]
[PATCH] klipper: make "Add Actions" dialog only window-modal

Otherwise it blocks all of plasmashell while it's open.

BUG: 501938
FIXED-IN: 6.3.6

(cherry picked from commit 30c0703860e8e943999152e141bb44c62ee1c038)

Co-authored-by: Nate Graham <nate@kde.org>
Gbp-Pq: Name upstream_bf67f256_klipper-make-Add-Actions-dialog-only-window-modal.patch

6 months ago[PATCH] Fix cell height calc in resize handle
Nate Graham [Thu, 22 May 2025 14:25:05 +0000 (08:25 -0600)]
[PATCH] Fix cell height calc in resize handle

Correct typo using cellWidth() instead of cellHeight() for
minimum height calculation during vertical resizing. Ensures
proper cell-aligned sizing behavior.

(cherry picked from commit 4b1dfd560433ef89f80b5916d2ac15739c5f91fb)

Co-authored-by: Wang Yu <wangyu@uniontech.com>
Gbp-Pq: Name upstream_2c855c2f_Fix-cell-height-calc-in-resize-handle.patch

6 months ago[PATCH] applets/notifications: Don't set a parent for WidgetsAskUserActionHandler
Kai Uwe Broulik [Tue, 20 May 2025 16:00:15 +0000 (16:00 +0000)]
[PATCH] applets/notifications: Don't set a parent for WidgetsAskUserActionHandler

The notification popup gets destroyed as soon as the user clicked the menu item,
so the handler is destroyed (curiously still leaving the KMessageDialog up) and
askUserDeleteResult is never emitted.

BUG: 504385

(cherry picked from commit f81dd70a3501f1011d73128277c4aba87014c481)

Co-authored-by: Kai Uwe Broulik <kde@privat.broulik.de>
(cherry picked from commit 7dff2f025da66873911eb1a66fbdded080c7b473)

Co-authored-by: Kai Uwe Broulik <kde@privat.broulik.de>
Gbp-Pq: Name upstream_41a554e6_applets-notifications-Don-t-set-a-parent-for-WidgetsAskUserActionHandler.patch

6 months ago[PATCH] components/sessionprivate: fix a potential crash in SessionsModel
Fushan Wen [Mon, 19 May 2025 11:56:15 +0000 (19:56 +0800)]
[PATCH] components/sessionprivate: fix a potential crash in SessionsModel

The problem is that std::function is passed by reference instead of
copy, which might become dangling in the finished slot.

(cherry picked from commit 3ed6ee211bbad1f5d76afa1f30844bebad17bed4)

Co-authored-by: Fushan Wen <qydwhotmail@gmail.com>
(cherry picked from commit 995b597b24ca96aaea81f71781de8ddf60adf5e1)

Co-authored-by: Fushan Wen <qydwhotmail@gmail.com>
Gbp-Pq: Name upstream_72719edd_components-sessionprivate-fix-a-potential-crash-in-SessionsModel.patch

6 months ago[PATCH] libnotificationmanager: fix critical notifications not showing when Do not...
Fushan Wen [Fri, 16 May 2025 02:03:13 +0000 (10:03 +0800)]
[PATCH] libnotificationmanager: fix critical notifications not showing when Do not disturb is active

The filter only checks if `WasAddedDuringInhibitionRole` is true but
ignores the urgency flag, which is used to show critical notifications
when Do not disturb is active.

(cherry picked from commit 49214ae107a4a13338876488b2bc28cf018d02c4)

Co-authored-by: Fushan Wen <qydwhotmail@gmail.com>
(cherry picked from commit 8642df804d1e59db9233c44943483348328b4982)

Co-authored-by: Fushan Wen <qydwhotmail@gmail.com>
Gbp-Pq: Name upstream_7635c551_libnotificationmanager-fix-critical-notifications-not-showing-when-Do-not-disturb-is-active.patch

6 months ago[PATCH] applets/devicenotifier: fix pointless mount action
Nate Graham [Thu, 15 May 2025 21:30:30 +0000 (15:30 -0600)]
[PATCH] applets/devicenotifier: fix pointless mount action

BUG: 503999

Audio CD and blank CD/DVD/BD does not have storage access.
So check this before add mount action for them.

(cherry picked from commit 683b8c3d71781c4e821cd2f9ac93eb4f157bb6ea)

Co-authored-by: Bohdan Onofriichuk <bogdan.onofriuchuk@gmail.com>
Gbp-Pq: Name upstream_60859fa9_applets-devicenotifier-fix-pointless-mount-action.patch

6 months ago[PATCH] colorsapplicator: Don't allow extended RGB from OKLabToLinearSRGB
Akseli Lahtinen [Mon, 5 May 2025 18:14:08 +0000 (21:14 +0300)]
[PATCH] colorsapplicator: Don't allow extended RGB from OKLabToLinearSRGB

When reading the rgb values in OKLabToLinearSRGB, there is a chance,
when colors are tinted, for QColor::fromRgbF to return Extended RGB
colors, which can invert.
Read more at
https://doc.qt.io/qt-6/qcolor.html#the-extended-rgb-color-model

Instead, just make sure we always return regular RGB values.

BUG: 503394
FIXED-IN: 6.3

(cherry picked from commit 4329b16a96a47c310e2d2a5da6f7543f94b6d3ec)

Co-authored-by: Akseli Lahtinen <akselmo@akselmo.dev>
Gbp-Pq: Name upstream_32a7cf2a_colorsapplicator-Don-t-allow-extended-RGB-from-OKLabToLinearSRGB.patch

6 months ago[PATCH] applets/notification: fix fullRepresentation-only widgets
Christoph Wolk [Sat, 10 May 2025 17:10:30 +0000 (19:10 +0200)]
[PATCH] applets/notification: fix fullRepresentation-only widgets

The fullRepresentation has a little efficiency trick: it unloads the
model while it is not expanded, so the ListView does not need to be
updated while it is not visible. In general this is fine, but it
interacts very badly with attempts to put the fullRepresentation
directly on the desktop (or in a very large panel) and the auto-closing
functionality of the notification applet. When the notification history
ever becomes empty, it tries to close the fullRepresentation by setting
expanded to false, which by itself does not do any harm either (the
fullRepresentation stays a fullRepresentation), but it does unload the
model, so the history never updates again (unless the user manually
resizes it to become too small for the fullRepresentation then back
again, which resets it to its proper expanded state).

Instead, we modify closePlasmoid() to only set expanded to false if the
widget is below either switchWidth or switchHeight.

BUG: 503815
FIXED-IN: 6.4.0

Gbp-Pq: Name upstream_142caad0_applets-notification-fix-fullRepresentation-only-widgets.patch

6 months ago[PATCH] shell/Osd: Fix missing RTL PlasmaCore.Dialog does not set LayoutMirroring...
Oliver Beard [Fri, 9 May 2025 14:38:00 +0000 (15:38 +0100)]
[PATCH] shell/Osd: Fix missing RTL PlasmaCore.Dialog does not set LayoutMirroring for us, so we need to do it ourselves.

BUG: 503255

Gbp-Pq: Name upstream_8845c001_shell-Osd-Fix-missing-RTL.patch

6 months ago[PATCH] wallpapers/image: Fix thumbnails not matching output size
Vlad Zahorodnii [Fri, 16 May 2025 15:19:32 +0000 (15:19 +0000)]
[PATCH] wallpapers/image: Fix thumbnails not matching output size

The `Screen` is an attached property and it never changes, we need to
monitor screen size changes instead.

BUG: 483097

(cherry picked from commit d6436e077c05abd100d905aaa73222a48ca1695f)

7678dfa9 wallpapers/image: Fix thumbnails not matching output size
5f4d8bc8 Apply 1 suggestion(s) to 1 file(s)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
Gbp-Pq: Name upstream_6d12cde3_wallpapers-image-Fix-thumbnails-not-matching-output-size.patch

6 months ago[PATCH] Warn user about full storage in any device/partition
Niccolò Venerandi [Mon, 24 Mar 2025 17:57:07 +0000 (18:57 +0100)]
[PATCH] Warn user about full storage in any device/partition

Currently, we only check for home and / partitions to be full
when warning user. With this commit we instead check for all
partitions / devices that are mounted and not read only.

Co-authored-by: David Edmundson <kde@davidedmundson.co.uk>
Gbp-Pq: Name upstream_9e0939c1_Warn-user-about-full-storage-in-any-device-partition.patch

6 months ago[PATCH] applets/notifications: don't allow horizontal scrolling
Christoph Wolk [Thu, 8 May 2025 13:27:47 +0000 (15:27 +0200)]
[PATCH] applets/notifications: don't allow horizontal scrolling

Notification bodies have their width constrained by the notification and
the horizontal scrollbar forced off, but they can still be scrolled with
a horizontal wheel, touchpad, or similiar. This is surprising and
pointless.

Instead explicitly set the contentWidth, which is otherwise ultimately
based on the underlying TextEdit (and that's the width it would have on
a single line without wrapping).

Gbp-Pq: Name upstream_2c27c9db_applets-notifications-don-t-allow-horizontal-scrolling.patch

6 months ago[PATCH] applets/devicenotifier: check if device has been added before
Bohdan Onofriichuk [Mon, 5 May 2025 19:13:54 +0000 (19:13 +0000)]
[PATCH] applets/devicenotifier: check if device has been added before

BUG: 495140

Skip device if applet already has device with similar udi

Gbp-Pq: Name upstream_a83c4e5f_applets-devicenotifier-check-if-device-has-been-added-before.patch

6 months ago[PATCH] kcm_regionandlang: add locale C to mapping and always set LANG and LC_*
Han Young [Sat, 22 Feb 2025 15:13:19 +0000 (23:13 +0800)]
[PATCH] kcm_regionandlang: add locale C to mapping and always set LANG and LC_*

BUG: 500432

Add locale C to glibc mappings so that locale C is actually saved to config file

Also set LC_* whenever LANG is set, this ensure LC_* are always up to date. In previous logic, LC_* can become out of sync if user change LANG to something else than changed it back.

Gbp-Pq: Name upstream_c9ee2931_kcm-regionandlang-add-locale-C-to-mapping-and-always-set-LANG-and-LC-.patch

6 months ago[PATCH] kcm/users: refine "deleting logged-in user" UX
Nate Graham [Fri, 14 Mar 2025 22:23:58 +0000 (16:23 -0600)]
[PATCH] kcm/users: refine "deleting logged-in user" UX

Right now there are two problems:
1. Deleting a logged-in user shows no warning about this.
2. Asking to delete the files of a logged-in user fails silently
   (AccountsService simply won't do it).

This commit solves both problems: now the user sees a warning dialog
when they try to delete another logged-in user, and it also prevents
them from trying to delete a logged-in user's files, instead redirecting
them to just delete the account but not the files.

To achieve this, I needed to change what the `loggedIn` property does,
because previously it was inaccurate, returning whether the queried user
is the currently logged-in user. Now it returns whether the quaried user
is logged in, and I added a new `isMe` property to hold whether the
queried user is the currently logged-in user.

BUG: 495494
FIXED-IN: 6.4.0

Gbp-Pq: Name upstream_9abfdd26_kcm-users-refine-deleting-logged-in-user-UX.patch

6 months ago[PATCH] users kcm: Fix issue in sorting user list
Sune Vuorela [Thu, 13 Feb 2025 19:28:40 +0000 (19:28 +0000)]
[PATCH] users kcm: Fix issue in sorting user list

If two users are logged in, the sorting order is not stable, both should be sorted before the other

Use partition instead of sorting, since we only care about having moved logged in users up front.

Found by: Kamil Kaznowski

Gbp-Pq: Name upstream_fbb2e6d3_users-kcm-Fix-issue-in-sorting-user-list.patch

6 months ago[PATCH] applets/appmenu: Store dbus menu importer in a std::unique_ptr
Vlad Zahorodnii [Wed, 23 Apr 2025 11:34:28 +0000 (14:34 +0300)]
[PATCH] applets/appmenu: Store dbus menu importer in a std::unique_ptr

The code is simpler this way.

Gbp-Pq: Name upstream_5d008e00_applets-appmenu-Store-dbus-menu-importer-in-a-std-unique-ptr.patch

6 months ago[PATCH] applets/appmenu: Fix displaying menu of the previous active window
Vlad Zahorodnii [Fri, 18 Apr 2025 19:39:46 +0000 (22:39 +0300)]
[PATCH] applets/appmenu: Fix displaying menu of the previous active window

We need to break the DBusMenuImporter::menuUpdated() signal connection
when the active window changes. Otherwise, it's possible that the
menuUpdated signal will be emitted and the menu will be marked as
available.

BUG: 473714

Gbp-Pq: Name upstream_73875471_applets-appmenu-Fix-displaying-menu-of-the-previous-active-window.patch

6 months ago[PATCH] applets/notifications: never use scientific notation for large numbers
Nate Graham [Sat, 29 Mar 2025 21:35:36 +0000 (15:35 -0600)]
[PATCH] applets/notifications: never use scientific notation for large numbers

Normal people don't know how to read it.

BUG: 422166
FIXED-IN: 6.4.0

Gbp-Pq: Name upstream_cf206f9d_applets-notifications-never-use-scientific-notation-for-large-numbers.patch

6 months ago[PATCH] applets/systemtray: Open context menu on click when ItemIsMenu
Kai Uwe Broulik [Sat, 22 Mar 2025 17:22:35 +0000 (18:22 +0100)]
[PATCH] applets/systemtray: Open context menu on click when ItemIsMenu

As per StatusNotifierItem spec:

> The item only support the context menu, the visualization should
prefer showing the menu or sending ContextMenu() instead of Activate()

Gbp-Pq: Name upstream_f17c2546_applets-systemtray-Open-context-menu-on-click-when-ItemIsMenu.patch

6 months ago[PATCH] Fix Scroll Wheel issue in AllApps submenu of Application Dashboard
Tomislav Pap [Mon, 24 Mar 2025 23:23:07 +0000 (23:23 +0000)]
[PATCH] Fix Scroll Wheel issue in AllApps submenu of Application Dashboard

Scroll with mouse wheel was problematic in AllApps subsection. It worked
partially, abruptly stopping when hovering over app icons, or just
during mouse wheel scrolling.

The problem is that QQuick WheelInterceptor::findwheelArea() never entered
into its if statement because there are 3 children elements of QML parent,
and their z axis values are 1, 0, 0 respectfully.

BUG: 486481
FIXED-IN: 6.4.0

Gbp-Pq: Name upstream_4f9b1a69_Fix-Scroll-Wheel-issue-in-AllApps-submenu-of-Application-Dashboard.patch

6 months ago[PATCH] libkmpris: allow MultiplexerModel to show actual player name
Fushan Wen [Mon, 24 Mar 2025 12:33:47 +0000 (20:33 +0800)]
[PATCH] libkmpris: allow MultiplexerModel to show actual player name

The lock screen needs it to show the actual player name instead of
"Choose player automatically"

Gbp-Pq: Name upstream_e4e0dee5_libkmpris-allow-MultiplexerModel-to-show-actual-player-name.patch

6 months agorelax-interplasma-versioned-deps
Debian Qt/KDE Maintainers [Tue, 20 May 2025 06:31:26 +0000 (08:31 +0200)]
relax-interplasma-versioned-deps

Gbp-Pq: Name relax-interplasma-versioned-deps.patch

6 months agoplasma-workspace (4:6.3.5-1) unstable; urgency=medium
Aurélien COUDERC [Tue, 20 May 2025 06:31:26 +0000 (08:31 +0200)]
plasma-workspace (4:6.3.5-1) unstable; urgency=medium

  [ Aurélien COUDERC ]
  * New upstream release (6.3.5).
    - Notification: Escape lonely < and > symbols. (kde#502106)
    - Calendar: Move event indicator above main label.
    - Appelts/notifications: Fix Notifications positions. (kde#500192,
    kde#498599, kde#491217, kde#502160)
    - Applets/notifications: improve paddings again.
    - Multiscreen: fix an incorrect assert in screenInvariants. (kde#494616)
  * Relax inter-plasma versioned dependency constraint so we can upload
    only 6.3.5 packages that have actual code changes.
  * Drop backported patch now part of the upstream release.
  * Backport upstream commits scheduled for 6.3.6:
    - Fix entirely wrong colours when enabling "Tint all colours with accent
    colour". (kde#503394)
    - Remove pointless "mount" action for audio CDs and blank optical media.
    (kde#503999)
    - libnotificationmanager: fix critical notifications not showing when Do
    not disturb is active.
    - components/sessionprivate: fix a potential crash in SessionsModel.
    - Fix deleting downloaded files from the notifications. (kde#504385)
    - Fix cell height calculation during vertical resizing.
    - klipper: make "Add Actions" dialog only window-modal to avoid blocking
    plasmashell completely. (kde#501938)
  * Backport other upstream commits:
    - Fix lockscreen showing a placeholder instead of the real multimedia
    player name in some multi-player setups.
    - Fix Scroll Wheel issue in the All Applications section of the launcher.
    (kde#486481)
    - Fix implementation of the StatusNotifierItem spec to support context
    menu on left click in the system tray.
    - Never use scientific notation even for big numbers in notifications.
    (kde#422166)
    - Fix global menu sometimes showing menu items from non-active app.
    (kde#473714)
    - Fix issue in sorting users list to put the logged in user first.
    - Prevent trying to delete the logged in user and failing. (kde#495494)
    - Make selecting the C locale in regional options actually work.
    (kde#500432)
    - Fix duplicate optical devices in disks and devices applet. (kde#495140)
    - Disable pointless and surprising horizontal scrolling of notifications
    contents.
    - Warn users about full storage not just on / and /home.
    - Fix incorrect wallpaper preview when using screens with widely different
    aspect ratios. (kde#483097)
    - Fix OSD not properly displaying RTL languages. (kde#503255)
    - Fix Notifications widget added to the desktop not showing new
    notifications. (kde#503815)
    - Fix “Process Table” visualization for blank System Monitor sensor
    widgets to no longer incorrectly makes them think they’re in need of
    configuration the next time you restart Plasma or the system. (kde#504335)

[dgit import unpatched plasma-workspace 4:6.3.5-1]

6 months agoImport plasma-workspace_6.3.5.orig.tar.xz
Aurélien COUDERC [Tue, 20 May 2025 06:31:26 +0000 (08:31 +0200)]
Import plasma-workspace_6.3.5.orig.tar.xz

[dgit import orig plasma-workspace_6.3.5.orig.tar.xz]

6 months agoImport plasma-workspace_6.3.5-1.debian.tar.xz
Aurélien COUDERC [Tue, 20 May 2025 06:31:26 +0000 (08:31 +0200)]
Import plasma-workspace_6.3.5-1.debian.tar.xz

[dgit import tarball plasma-workspace 4:6.3.5-1 plasma-workspace_6.3.5-1.debian.tar.xz]

7 months agoMerge version 4:6.2.5-1+rpi1 and 4:6.3.4-1 to produce 4:6.3.4-1+rpi1 archive/raspbian/4%6.3.4-1+rpi1 raspbian/4%6.3.4-1+rpi1
Raspbian automatic forward porter [Tue, 22 Apr 2025 23:18:28 +0000 (00:18 +0100)]
Merge version 4:6.2.5-1+rpi1 and 4:6.3.4-1 to produce 4:6.3.4-1+rpi1

8 months agoMerge plasma-workspace (4:6.3.4-1) import into refs/heads/workingbranch
Patrick Franz [Wed, 2 Apr 2025 23:02:59 +0000 (01:02 +0200)]
Merge plasma-workspace (4:6.3.4-1) import into refs/heads/workingbranch

8 months ago[PATCH] applets/notifications: improve paddings again
Nate Graham [Wed, 2 Apr 2025 20:57:09 +0000 (20:57 +0000)]
[PATCH] applets/notifications: improve paddings again

Zero top padding is fine when there's only a summary label, but looks
bad when there's body text, an icon, or both. Correct that.

(cherry picked from commit 53b6289f84094d91745b79c3bc902e7f80f235ef)

Co-authored-by: Nate Graham <nate@kde.org>
Gbp-Pq: Name improve_paddings.patch

8 months agoplasma-workspace (4:6.3.4-1) unstable; urgency=medium
Patrick Franz [Wed, 2 Apr 2025 23:02:59 +0000 (01:02 +0200)]
plasma-workspace (4:6.3.4-1) unstable; urgency=medium

  [ Patrick Franz ]
  * New upstream release (6.3.4).
  * Update build-deps and deps with the info from cmake.
  * Backport patch to fix padding issue.

[dgit import unpatched plasma-workspace 4:6.3.4-1]

8 months agoImport plasma-workspace_6.3.4.orig.tar.xz
Patrick Franz [Wed, 2 Apr 2025 23:02:59 +0000 (01:02 +0200)]
Import plasma-workspace_6.3.4.orig.tar.xz

[dgit import orig plasma-workspace_6.3.4.orig.tar.xz]

8 months agoImport plasma-workspace_6.3.4-1.debian.tar.xz
Patrick Franz [Wed, 2 Apr 2025 23:02:59 +0000 (01:02 +0200)]
Import plasma-workspace_6.3.4-1.debian.tar.xz

[dgit import tarball plasma-workspace 4:6.3.4-1 plasma-workspace_6.3.4-1.debian.tar.xz]

9 months agoMerge plasma-workspace (4:6.3.2-2) import into refs/heads/workingbranch
Pino Toscano [Mon, 3 Mar 2025 20:36:21 +0000 (21:36 +0100)]
Merge plasma-workspace (4:6.3.2-2) import into refs/heads/workingbranch

9 months agoplasma-workspace (4:6.3.2-2) unstable; urgency=medium
Pino Toscano [Mon, 3 Mar 2025 20:36:21 +0000 (21:36 +0100)]
plasma-workspace (4:6.3.2-2) unstable; urgency=medium

  * Team upload.
  * Bump Standards-Version to 4.7.2, no changes required.
  * CI: simplify/improve config.
  * Drop the private symbols of Wayland interfaces, which are hidden when
    generated using Qt 6.8. (Closes: #1099454)
  * Update/simplify lintian overrides.

[dgit import unpatched plasma-workspace 4:6.3.2-2]

9 months agoImport plasma-workspace_6.3.2-2.debian.tar.xz
Pino Toscano [Mon, 3 Mar 2025 20:36:21 +0000 (21:36 +0100)]
Import plasma-workspace_6.3.2-2.debian.tar.xz

[dgit import tarball plasma-workspace 4:6.3.2-2 plasma-workspace_6.3.2-2.debian.tar.xz]

9 months agoImport plasma-workspace_6.3.2.orig.tar.xz
Aurélien COUDERC [Fri, 28 Feb 2025 00:01:45 +0000 (01:01 +0100)]
Import plasma-workspace_6.3.2.orig.tar.xz

[dgit import orig plasma-workspace_6.3.2.orig.tar.xz]

10 months agoMerge plasma-workspace (4:6.3.0-1) import into refs/heads/workingbranch
Aurélien COUDERC [Mon, 10 Feb 2025 14:07:48 +0000 (15:07 +0100)]
Merge plasma-workspace (4:6.3.0-1) import into refs/heads/workingbranch

10 months agoplasma-workspace (4:6.3.0-1) unstable; urgency=medium
Aurélien COUDERC [Mon, 10 Feb 2025 14:07:48 +0000 (15:07 +0100)]
plasma-workspace (4:6.3.0-1) unstable; urgency=medium

  [ Aurélien COUDERC ]
  * New upstream release (6.3.0).
  * Update build-deps and deps with the info from cmake.
  * Update symbols from build for 6.3.0.
  * Release to unstable.

[dgit import unpatched plasma-workspace 4:6.3.0-1]

10 months agoImport plasma-workspace_6.3.0.orig.tar.xz
Aurélien COUDERC [Mon, 10 Feb 2025 14:07:48 +0000 (15:07 +0100)]
Import plasma-workspace_6.3.0.orig.tar.xz

[dgit import orig plasma-workspace_6.3.0.orig.tar.xz]

10 months agoImport plasma-workspace_6.3.0-1.debian.tar.xz
Aurélien COUDERC [Mon, 10 Feb 2025 14:07:48 +0000 (15:07 +0100)]
Import plasma-workspace_6.3.0-1.debian.tar.xz

[dgit import tarball plasma-workspace 4:6.3.0-1 plasma-workspace_6.3.0-1.debian.tar.xz]

10 months agoMerge version 4:6.2.4-1+rpi1 and 4:6.2.5-1 to produce 4:6.2.5-1+rpi1 archive/raspbian/4%6.2.5-1+rpi1 raspbian/4%6.2.5-1+rpi1
Raspbian automatic forward porter [Sun, 19 Jan 2025 13:53:48 +0000 (13:53 +0000)]
Merge version 4:6.2.4-1+rpi1 and 4:6.2.5-1 to produce 4:6.2.5-1+rpi1

11 months agoMerge plasma-workspace (4:6.2.5-1) import into refs/heads/workingbranch
Aurélien COUDERC [Sun, 5 Jan 2025 10:24:26 +0000 (11:24 +0100)]
Merge plasma-workspace (4:6.2.5-1) import into refs/heads/workingbranch

11 months agoplasma-workspace (4:6.2.5-1) unstable; urgency=medium
Aurélien COUDERC [Sun, 5 Jan 2025 10:24:26 +0000 (11:24 +0100)]
plasma-workspace (4:6.2.5-1) unstable; urgency=medium

  [ Aurélien COUDERC ]
  * New upstream release (6.2.5).
  * Update build-deps and deps with the info from cmake.

[dgit import unpatched plasma-workspace 4:6.2.5-1]

11 months agoImport plasma-workspace_6.2.5.orig.tar.xz
Aurélien COUDERC [Sun, 5 Jan 2025 10:24:26 +0000 (11:24 +0100)]
Import plasma-workspace_6.2.5.orig.tar.xz

[dgit import orig plasma-workspace_6.2.5.orig.tar.xz]

11 months agoImport plasma-workspace_6.2.5-1.debian.tar.xz
Aurélien COUDERC [Sun, 5 Jan 2025 10:24:26 +0000 (11:24 +0100)]
Import plasma-workspace_6.2.5-1.debian.tar.xz

[dgit import tarball plasma-workspace 4:6.2.5-1 plasma-workspace_6.2.5-1.debian.tar.xz]

11 months agoMerge plasma-workspace (4:6.2.4-1+rpi1) import into refs/heads/workingbranch
Peter Michael Green [Tue, 24 Dec 2024 08:36:13 +0000 (08:36 +0000)]
Merge plasma-workspace (4:6.2.4-1+rpi1) import into refs/heads/workingbranch

11 months agoplasma-workspace (4:6.2.4-1+rpi1) trixie-staging; urgency=medium
Peter Michael Green [Tue, 24 Dec 2024 08:36:13 +0000 (08:36 +0000)]
plasma-workspace (4:6.2.4-1+rpi1) trixie-staging; urgency=medium

  * Update symbols files for raspbian.

[dgit import unpatched plasma-workspace 4:6.2.4-1+rpi1]

11 months agoImport plasma-workspace_6.2.4-1+rpi1.debian.tar.xz
Peter Michael Green [Tue, 24 Dec 2024 08:36:13 +0000 (08:36 +0000)]
Import plasma-workspace_6.2.4-1+rpi1.debian.tar.xz

[dgit import tarball plasma-workspace 4:6.2.4-1+rpi1 plasma-workspace_6.2.4-1+rpi1.debian.tar.xz]

12 months agoMerge plasma-workspace (4:6.2.4-1) import into refs/heads/workingbranch
Aurélien COUDERC [Tue, 3 Dec 2024 15:43:03 +0000 (16:43 +0100)]
Merge plasma-workspace (4:6.2.4-1) import into refs/heads/workingbranch

12 months agoImport plasma-workspace_6.2.4.orig.tar.xz
Aurélien COUDERC [Tue, 3 Dec 2024 15:43:03 +0000 (16:43 +0100)]
Import plasma-workspace_6.2.4.orig.tar.xz

[dgit import orig plasma-workspace_6.2.4.orig.tar.xz]

12 months agoplasma-workspace (4:6.2.4-1) unstable; urgency=medium
Aurélien COUDERC [Tue, 3 Dec 2024 15:43:03 +0000 (16:43 +0100)]
plasma-workspace (4:6.2.4-1) unstable; urgency=medium

  [ Aurélien COUDERC ]
  * New upstream release (6.2.4).
  * Update build-deps and deps with the info from cmake.
  * Remove obsolete conf file /etc/xdg/autostart/klipper.desktop. (Closes:
    #1088962)

[dgit import unpatched plasma-workspace 4:6.2.4-1]

12 months agoImport plasma-workspace_6.2.4-1.debian.tar.xz
Aurélien COUDERC [Tue, 3 Dec 2024 15:43:03 +0000 (16:43 +0100)]
Import plasma-workspace_6.2.4-1.debian.tar.xz

[dgit import tarball plasma-workspace 4:6.2.4-1 plasma-workspace_6.2.4-1.debian.tar.xz]

18 months ago[PATCH] Fix build with AppStreamQt5 >= 1.0
Matthias Klumpp [Mon, 18 Dec 2023 04:08:44 +0000 (05:08 +0100)]
[PATCH] Fix build with AppStreamQt5 >= 1.0

Gbp-Pq: Name fix-appstreamqt5-1.0-build.patch

18 months agoenable_debianabimanager
Debian Qt/KDE Maintainers [Fri, 31 May 2024 14:54:34 +0000 (16:54 +0200)]
enable_debianabimanager

Gbp-Pq: Name enable_debianabimanager.diff

18 months agoAdd sddm's debian-breeze theme
Debian/Kubuntu Qt/KDE Maintainers [Fri, 16 Jun 2017 13:09:35 +0000 (15:09 +0200)]
Add sddm's debian-breeze theme

Breeze with Debian's default background

Gbp-Pq: Name add_sddm_debian_breeze.patch

18 months agoplasma-workspace (4:5.27.11.1-1) unstable; urgency=medium
Patrick Franz [Fri, 31 May 2024 14:54:34 +0000 (16:54 +0200)]
plasma-workspace (4:5.27.11.1-1) unstable; urgency=medium

  [ Patrick Franz ]
  * New upstream release 5.27.11.1, fixes CVE-2024-36041.
  * Build-depend on pkgconf instead of pkg-config as the latter has been
    superseded by the former.

[dgit import unpatched plasma-workspace 4:5.27.11.1-1]

18 months agoImport plasma-workspace_5.27.11.1.orig.tar.xz
Patrick Franz [Fri, 31 May 2024 14:54:34 +0000 (16:54 +0200)]
Import plasma-workspace_5.27.11.1.orig.tar.xz

[dgit import orig plasma-workspace_5.27.11.1.orig.tar.xz]

18 months agoImport plasma-workspace_5.27.11.1-1.debian.tar.xz
Patrick Franz [Fri, 31 May 2024 14:54:34 +0000 (16:54 +0200)]
Import plasma-workspace_5.27.11.1-1.debian.tar.xz

[dgit import tarball plasma-workspace 4:5.27.11.1-1 plasma-workspace_5.27.11.1-1.debian.tar.xz]