kf6-kio.git
6 months ago[PATCH] Fix dialog modality settings
Akseli Lahtinen [Thu, 22 May 2025 14:35:24 +0000 (17:35 +0300)]
[PATCH] Fix dialog modality settings

By default all dialogs are ApplicationModal, thus they block clicking
on any other app while the dialog is open.

Set them to WindowModal so they only block the parent window.

BUG: 504608

Gbp-Pq: Name upstream_9143fc2a_Fix-dialog-modality-settings.patch

6 months ago[PATCH] Fix incorrect usage percentage in Properties dialog for virtual filesystems
Efe Çiftci [Fri, 16 May 2025 17:50:21 +0000 (20:50 +0300)]
[PATCH] Fix incorrect usage percentage in Properties dialog for virtual filesystems

The Properties dialog for filesystems such as `/proc/` or `/sys/` shows an
incorrect usage percentage (i.e., "-2,147,483,648% used"). This commit fixes
that issue by avoiding a divbyzero: if the `size` variable is `0`, the
`percentUsed` variable is set to `0`.

Gbp-Pq: Name upstream_81ca0e2c_Fix-incorrect-usage-percentage-in-Properties-dialog-for-virtual-filesystems.patch

6 months ago[PATCH] Avoid unnecessary sequencing jobs in PreviewGenerator
Akseli Lahtinen [Tue, 13 May 2025 10:01:07 +0000 (13:01 +0300)]
[PATCH] Avoid unnecessary sequencing jobs in PreviewGenerator

Currently we keep constantly asking if the current item has sequences
support or not.

By sequences we mean things like hovering mouse over a folder thumbnail
and it goes through the files in it.

This MR will always run for the first sequence (the initial thumbnail)
but for the rest, then toggles a flag for the node with
Qt::DecorationPropertyRole. If the propertyrole is false, it skips any
further updates to avoid any unnecessary previewjob runs.

Gbp-Pq: Name upstream_c747fa0f_Avoid-unnecessary-sequencing-jobs-in-PreviewGenerator.patch

6 months ago[PATCH] KFileWidget: Fix key navigation escaping in save dialogs
Akseli Lahtinen [Wed, 7 May 2025 13:35:19 +0000 (16:35 +0300)]
[PATCH] KFileWidget: Fix key navigation escaping in save dialogs

In save dialogs the keyboard navigation would escape during file
highlighting, since the fileHighlight sets the focus for fileName bar
for mouse operations.

This makes sure the user has to press Tab to explicitly escape the
keyboard navigation mode. For clicking the items, it should not affect
at all.

CCBUG: 466206
FIXED-IN: 6.14
(cherry picked from commit 8e4e84f045b7459c0b02b1b1b51a9df73cea068a)

Gbp-Pq: Name upstream_719e0b00_KFileWidget-Fix-key-navigation-escaping-in-save-dialogs.patch

6 months ago[PATCH] KFilePlacesView: Show busy indicator while emptying trash
Kai Uwe Broulik [Thu, 1 May 2025 17:02:48 +0000 (19:02 +0200)]
[PATCH] KFilePlacesView: Show busy indicator while emptying trash

Provide some feedback to the user in case it's taking a bit.

Gbp-Pq: Name upstream_3e6175e4_KFilePlacesView-Show-busy-indicator-while-emptying-trash.patch

6 months ago[PATCH] DeleteOrTrashJob: Add started signal
Kai Uwe Broulik [Thu, 1 May 2025 17:01:23 +0000 (19:01 +0200)]
[PATCH] DeleteOrTrashJob: Add started signal

It's emitted when the user has confirmed emptying trash and
it will actually commence emptying it.

Gbp-Pq: Name upstream_17cd1c9b_DeleteOrTrashJob-Add-started-signal.patch

6 months ago[PATCH] CopyJob: Inhibit suspend during copy operation
Kai Uwe Broulik [Sun, 20 Apr 2025 10:48:58 +0000 (12:48 +0200)]
[PATCH] CopyJob: Inhibit suspend during copy operation

Avoids the system going to sleep during a lengthy copy operation.

BUG: 362542

Gbp-Pq: Name upstream_60191c04_CopyJob-Inhibit-suspend-during-copy-operation.patch

6 months ago[PATCH] core: Add infrastructure for inhibiting suspend in jobs
Kai Uwe Broulik [Sun, 20 Apr 2025 10:48:26 +0000 (12:48 +0200)]
[PATCH] core: Add infrastructure for inhibiting suspend in jobs

This calls the freedesktop Inhibit interface on DBus which will
inhibit suspend (but not display power management/screensaver).
When inside a sandbox it instead calls the XDG Desktop Portal
Inhibit interface.

When a job is destroyed or gets suspended, the inhibition is lifted.
When a job is resumed, `doInhibitSuspend` is called again to re-instate
the inhibition.

It is the job's responsibility to call `doInhibitSuspend` at
the appropriate time (e.g. in doStart/slotStart).

Gbp-Pq: Name upstream_3c3d5904_core-Add-infrastructure-for-inhibiting-suspend-in-jobs.patch

6 months ago[PATCH] KProcessRunner: Fix launching actions without executable
Balló György [Fri, 4 Apr 2025 06:08:31 +0000 (08:08 +0200)]
[PATCH] KProcessRunner: Fix launching actions without executable

If D-Bus activation is possible, it's not needed to have an executable,
since everything is done via D-Bus. Therefore look for the matching action
name instead of the exec value when launching an action. The specification
allows to omit the "Exec" key if "DBusActivatable" is true.

Most applications specify the Exec parameter for compatibility reasons, but
if the action's "Exec" line got removed from a D-Bus activatable desktop
file, then KIO just activates the application rather than calling the
requested action. This change fixes that issue.

Gbp-Pq: Name upstream_31806c51_KProcessRunner-Fix-launching-actions-without-executable.patch

6 months ago[PATCH] KFileWidget: Do not override filename with folder name if edited
Akseli Lahtinen [Thu, 17 Apr 2025 08:43:26 +0000 (08:43 +0000)]
[PATCH] KFileWidget: Do not override filename with folder name if edited

If the filename input has been modified, do not override it with
the name of the folder when selecting a folder.

BUG: 502794
FIXED-IN: 6.14

Gbp-Pq: Name upstream_cd0810f8_KFileWidget-Do-not-override-filename-with-folder-name-if-edited.patch

6 months ago[PATCH] KUrlNavigatorButton: Use arrow as separators
Akseli Lahtinen [Fri, 4 Apr 2025 20:00:59 +0000 (20:00 +0000)]
[PATCH] KUrlNavigatorButton: Use arrow as separators

Due to the feedback of regular separator not being good enough for
separating folders, use an arrow separator instead.

This also refactors bunch of code around the button, so it should
be easier to tweak over time.

Remove icons due to the added clutter. They would work with full height chevrons but those are not technically feasible at this time.

BUG: 501587
BUG: 501575
BUG: 501582
BUG: 501589
BUG: 501706
BUG: 501803
FIXED-IN: 6.14

Gbp-Pq: Name upstream_KUrlNavigatorButton.patch

6 months ago[PATCH] Show single-click selection emblem when using single-click mouse mode
Akseli Lahtinen [Wed, 9 Apr 2025 07:57:20 +0000 (07:57 +0000)]
[PATCH] Show single-click selection emblem when using single-click mouse mode

In open/save dialog, we had no way to select items when using single-click mouse mode. (Except holding down control key).

This adds the same emblem that Dolphin uses for its selections.

It is shown in both treeviews and listviews, but only when single-click mode is active and the filewidget allows selecting multiple items.

BUG: 185793
FIXED-IN: 6.14

Gbp-Pq: Name upstream_d8441b7b_Show-single-click-selection-emblem-when-using-single-click-mouse-mode.patch

6 months agoUse CXX_FLAGS for moc_predefs.h
Maximiliano Curia [Wed, 28 Aug 2019 14:50:33 +0000 (11:50 -0300)]
Use CXX_FLAGS for moc_predefs.h

Last-Updated: 2024-12-04

Gbp-Pq: Name Use-CXX_FLAGS-for-moc_predefs.h.patch

6 months agoOn Hurd, do not look for functions unimplemented in libc
Pino Toscano [Sun, 8 Jun 2025 12:42:29 +0000 (14:42 +0200)]
On Hurd, do not look for functions unimplemented in libc

Last-Update: 2024-05-09
Forwarded: not-needed

The check_function_exists() function of cmake does not keep into account the
defines that glibc provides for the stubs (i.e. unimplemented functions that
always return ENOSYS), so some functions are detected as available.
Unfortunately, due to --fatal-warnings for the linker, linking will fail.
Hence, do not attempt to look for functions that are currently unimplemented
on GNU/Hurd's libc.

Gbp-Pq: Name hurd_disable_unimplemented.diff

6 months agoreport_error_removing_dirs
Debian/Kubuntu Qt/KDE Maintainers [Thu, 31 Mar 2016 13:38:43 +0000 (15:38 +0200)]
report_error_removing_dirs

Last-Updated: 2024-12-04

===================================================================

Gbp-Pq: Name report_error_removing_dirs

6 months agokf6-kio (6.13.0-6) unstable; urgency=medium
Aurélien COUDERC [Sun, 8 Jun 2025 12:42:29 +0000 (14:42 +0200)]
kf6-kio (6.13.0-6) unstable; urgency=medium

  [ Aurélien COUDERC ]
  * Correctly suffix symbols introduced in 6.13.0-4, thanks Sebastinas
    for the clarification.

[dgit import unpatched kf6-kio 6.13.0-6]

6 months agoImport kf6-kio_6.13.0-6.debian.tar.xz
Aurélien COUDERC [Sun, 8 Jun 2025 12:42:29 +0000 (14:42 +0200)]
Import kf6-kio_6.13.0-6.debian.tar.xz

[dgit import tarball kf6-kio 6.13.0-6 kf6-kio_6.13.0-6.debian.tar.xz]

8 months agoImport kf6-kio_6.13.0.orig.tar.xz
Patrick Franz [Sat, 12 Apr 2025 17:37:26 +0000 (19:37 +0200)]
Import kf6-kio_6.13.0.orig.tar.xz

[dgit import orig kf6-kio_6.13.0.orig.tar.xz]