[plasma-systemmonitor] [Bug 434877] High CPU usage

2024-05-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=434877

--- Comment #22 from Méven Car  ---
(In reply to Méven Car from comment #21)
> Created attachment 168734 [details]
> flamegraph-custom-tab

I noticed the cpu time spent read proc /smaps_rollup to evaluate memory usage
is very important in particular.
It is run in a separate thread but this thread is very busy since read will
block until the kernel puts together the file.
An asynchonous read of some sort should help things (io_uring, poll...).

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 487043] Extreme stutters/hangs when using certain desktop effects when "~/.cache" is on slow storage

2024-05-29 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=487043

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

--- Comment #15 from Méven Car  ---
(In reply to Fabian Vogt from comment #14)
> I tried to simulate a very slow .cache using the delay device mapper module:
> 
> > dd if=/dev/zero of=cachelp bs=1M count=64
> > /sbin/mkfs.ext4 cachelp
> > sudo losetup -f cachelp
> > echo "0 $(sudo blockdev --getsz /dev/loop0) delay /dev/loop0 0 500)" | sudo 
> > dmsetup create delayed
> > sudo mount /dev/mapper/delayed ~testuser/.cache
> > sudo chown testuser /home/testuser/.cache
> 
> Then I ran as testuser
> 
> > dbus-run-session gdb --args kwin_wayland --x11-display $DISPLAY 
> > --exit-with-session /usr/bin/konsole
> 
> Moved the window around a bit and maximised it, to make sure caches (.qmlc, 
> ksysoca) got generated. Then I restarted kwin and maximised the konsole
> window and it lagged. Backtrace:
> 
> Thread 1 (Thread 0x7f515559bb00 (LWP 31711) "kwin_wayland"):
> #0  0x7f5158508daa in fdatasync () at /lib64/libc.so.6
> #1  0x7f5158d65d63 in QLockFile::tryLock(std::chrono::duration std::ratio<1l, 1000l> >) () at /lib64/libQt6Core.so.6
> #2  0x7f515b167fd0 in QSGRhiSupport::preparePipelineCache(QRhi*,
> QQuickWindow*) () at /lib64/libQt6Quick.so.6
> #3  0x7f515b168d0c in QSGRhiSupport::createRhi(QQuickWindow*, QSurface*,
> bool) () at /lib64/libQt6Quick.so.6
> #4  0x7f515b14a763 in  () at /lib64/libQt6Quick.so.6
> #5  0x7f515b14c73d in  () at /lib64/libQt6Quick.so.6
> #6  0x7f515963d7e9 in QWindow::event(QEvent*) () at /lib64/libQt6Gui.so.6
> #7  0x7f5159fc2f1e in QApplicationPrivate::notify_helper(QObject*,
> QEvent*) () at /lib64/libQt6Widgets.so.6
> #8  0x7f5158d8f030 in QCoreApplication::notifyInternal2(QObject*,
> QEvent*) () at /lib64/libQt6Core.so.6
> #9  0x7f51595eda8b in
> QGuiApplicationPrivate::processExposeEvent(QWindowSystemInterfacePrivate::
> ExposeEvent*) () at /lib64/libQt6Gui.so.6
> #10 0x7f515964c05c in
> QWindowSystemInterface::sendWindowSystemEvents(QFlags ProcessEventsFlag>) () at /lib64/libQt6Gui.so.6
> #11 0x7f515964c1e7 in
> QWindowSystemInterface::flushWindowSystemEvents(QFlags ProcessEventsFlag>) () at /lib64/libQt6Gui.so.6
> #12 0x7f5159627340 in QPlatformWindow::setVisible(bool) () at
> /lib64/libQt6Gui.so.6
> #13 0x7f515aa839b4 in  () at /lib64/libQt6Qml.so.6
> #14 0x7f515aa97936 in  () at /lib64/libQt6Qml.so.6
> #15 0x7f515aa9613d in
> QQmlBinding::doUpdate(QQmlJavaScriptExpression::DeleteWatcher const&,
> QFlags, QV4::Scope&) () at /lib64/libQt6Qml.so.6
> #16 0x7f515aa94084 in
> QQmlBinding::update(QFlags) () at
> /lib64/libQt6Qml.so.6
> #17 0x7f515ab096c8 in QQmlNotifier::emitNotify(QQmlNotifierEndpoint*,
> void**) () at /lib64/libQt6Qml.so.6
> #18 0x7f5158de7e88 in  () at /lib64/libQt6Core.so.6
> #19 0x7f515ba2479d in KWin::Window::setElectricBorderMaximizing(bool) ()
> at /lib64/libkwin.so.6
> 
> Apparently something in Qt's Rhi has a lock file in .cache which needs to be
> synced to disk
> (/home/testuser/.cache/kwin/qtpipelinecache-x86_64-little_endian-lp64/
> qqpc_opengl.lck). Fortunately it's only a fdatasync and not a fsync or even
> sync so it only waits until that specific file data has made it to disk, but
> it can still block for a while.
> 
> Maybe there's a way to avoid QLockFile use there.

Relevant documentation:
https://doc.qt.io/qt-5/qmldiskcache.html

Another workaround would be to use `export QML_DISK_CACHE_PATH=/tmp/qmlcache`
where /tmp/qmlcache is a fast drive or a ramdisk.

For some reason (that I don't know but there is probably one) we don't use
`qt_add_qml_module` in plasma and kwin, that does pre-compile the
js/qml/C++-binding and embedded it in the executable resources:
https://doc.qt.io/qt-6/qt-add-qml-module.html#caching-compiled-qml-sources

We do use it in applications (spectacle, neochat...).

-- 
You are receiving this mail because:
You are watching all bug changes.

[kate] [Bug 485551] Deleting a Kate session deletes the existing directory and files

2024-05-28 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=485551

Méven Car  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1
 CC||meve...@gmail.com

--- Comment #2 from Méven Car  ---
> Fortunately, it was just after I took the backup.

Glad the impact was minimal.

> This is my guess, the cause is the below lines:
> https://invent.kde.org/utilities/kate/-/blob/master/apps/lib/katestashmanager.cpp?ref_type=heads#L27
> "sessionName" is not escaped here, so probably it tries to delete absolute 
> path if "sessionName" contains "/".

This is correct analysis.

QDir::exists doc states:
``
Unless name contains an absolute file path, the file name is assumed to be
relative to the directory itself, so this function is typically used to check
for the presence of files within a directory.
```

`KateStashManager::stashDocuments` is also concerned.
You could see `Document 1` files in your session path for stashed files.

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kimageformats] [Bug 472372] Can't preview DNG files, even with RAW support installed.

2024-05-14 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=472372

--- Comment #10 from Méven Car  ---
It took me a minute to find the origin, but I suspect that other images format
are concerned.
It could be fixed in kdegraphics-thumbnailers potentially.

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 486956] Dolphin takes ≥5s to load ≈ 52 GiB, 7x10^3-file directory when group column is shown

2024-05-13 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=486956

Méven Car  changed:

   What|Removed |Added

Summary|Dolphin takes ≥5s to load ≈ |Dolphin takes ≥5s to load ≈
   |52 GiB, 7x10^3-file |52 GiB, 7x10^3-file
   |directory.  |directory when group column
   ||is shown

--- Comment #6 from Méven Car  ---
This is easily reproducible in dolphin, simply show the user group column with
a moderate to high number of files.

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 486956] Dolphin takes ≥5s to load ≈ 52 GiB, 7x10^3-file directory.

2024-05-13 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=486956

Méven Car  changed:

   What|Removed |Added

   Keywords||regression
 CC||meve...@gmail.com
 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED

--- Comment #5 from Méven Car  ---
The flamegraph showed the process spend way too much time retrieve group name
for the files.

This is a regression from:
https://invent.kde.org/frameworks/kio/-/merge_requests/1276
b1a0a7cfe704db2a0aa363fed4e03501f324df9e

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 451050] Dolphin crashing when connecting SMB share

2024-05-13 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=451050

--- Comment #54 from Méven Car  ---
(In reply to Till Seifert from comment #53)
> Created attachment 169401 [details]
> Terminal output Dolphin 24.02.2 KF 6.1 with kf6-kio-dbgsym and dolphin-dgbsym

Thank you  for the effort.

Could you also install the dbgsym for libglib and libQt6Core.
You should be able to use `coredumpctl -1 info dolphin` to get the trace
without having to reproduce the issue again.

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kimageformats] [Bug 472372] Can't preview DNG files, even with RAW support installed.

2024-05-12 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=472372

--- Comment #6 from Méven Car  ---
(In reply to Mirco Miranda from comment #5)
> Even though I'm using a slightly older version of kimage-plugins I don't
> think it's a raw plugin issue.

I am getting those logs from the file:

```
qt.gui.imageio: libpng warning: iCCP: known incorrect sRGB profile
qt.imageformats.tiff: "Unknown field with tag 33421 (0x828d) encountered"
qt.imageformats.tiff: "Unknown field with tag 33422 (0x828e) encountered"
qt.imageformats.tiff: "Unknown field with tag 33434 (0x829a) encountered"
qt.imageformats.tiff: "Unknown field with tag 33437 (0x829d) encountered"
qt.imageformats.tiff: "Unknown field with tag 34855 (0x8827) encountered"
qt.imageformats.tiff: "Unknown field with tag 36867 (0x9003) encountered"
qt.imageformats.tiff: "Unknown field with tag 37386 (0x920a) encountered"
qt.imageformats.tiff: "Unknown field with tag 37398 (0x9216) encountered"
qt.imageformats.tiff: "Unknown field with tag 50964 (0xc714) encountered"
qt.imageformats.tiff: "Unknown field with tag 50965 (0xc715) encountered"
qt.imageformats.tiff: "Unknown field with tag 51009 (0xc741) encountered"
qt.imageformats.tiff: "Unknown field with tag 51022 (0xc74e) encountered"
qt.imageformats.tiff: "Unknown field with tag 51041 (0xc761) encountered"
qt.imageformats.tiff: "Sorry, can not handle image with
PhotometricInterpretation=32803"
```

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 451050] Dolphin crashing when connecting SMB share

2024-05-12 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=451050

--- Comment #51 from Méven Car  ---
(In reply to Till Seifert from comment #50)
> Created attachment 169397 [details]
> Terminal output Dolphin 24.02.2 KF 6.1
> 
> Still happens with:
> 
> Dolphin: 24.02.2
> KDE Plasma Version: 6.0.4
> KDE Frameworks Version: 6.1.0
> Qt Version: 6.7.0
> Kernel Version: 6.6.5-060605-generic (64-bit)
> Graphics Platform: X11
> 
> Log attached

from the logs:

```
org.kde.drkonqi.parser: line "This GDB supports auto-downloading debuginfo from
the following URLs:\n" did not match
org.kde.drkonqi.parser: line "https://debuginfod.neon.kde.org/ \n" did not
match
org.kde.drkonqi.parser: line "Enable debuginfod for this session? (y or [n])
[answered N; input not from terminal]\n" did not match
org.kde.drkonqi.parser: line "Debuginfod has been disabled.\
```
Please enabled `Debuginfod` so that the logs/and or crashes trace can help.
You might be using TW that does not support debuginfod unfortunately.
The current logs are not informative.

Without more information, I can tell if that's the same crash or a different
one.

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 485599] dolphin crash when using select file shorcuts (shortcut space)

2024-05-08 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=485599

Méven Car  changed:

   What|Removed |Added

   Version Fixed In|24.04   |24.05

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 477081] No access to remote FTP folders after upgrading Plasma

2024-05-08 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=477081

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com
   Keywords||regression

--- Comment #1 from Méven Car  ---
> Dolphin crashes and is unable to access the local FTP paths (the same happens 
> with Krusader

Please provide a crash trace, that will be extremely useful to find the issue
origin.
There should be a drkonqi notification to help you do that.

Otherwise you can follow you distro steps
https://en.opensuse.org/openSUSE:Bugreport_application_crashed#Install_-debuginfo_Packages

The issue is more likely to be in KIO  Framework that handles the ftp
implementation.

> KDE Plasma Version: 5.27.5
> KDE Frameworks Version: 5.107.0

If you have the chance to test with a live iso with Plasma 6, that would be
interesting.

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 471279] Dolphin crash when dragging files or folders across or to the path navigation bar

2024-05-06 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=471279

Méven Car  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 CC||meve...@gmail.com
 Resolution|--- |DUPLICATE

--- Comment #25 from Méven Car  ---


*** This bug has been marked as a duplicate of bug 485258 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 485258] Dolphin crashed after dragging a file to the path breadcrumb

2024-05-06 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=485258

Méven Car  changed:

   What|Removed |Added

 CC||danieldelar...@duck.com

--- Comment #18 from Méven Car  ---
*** Bug 471279 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 484555] [Dolphin] Enhance with “Create folder from selected files”

2024-05-05 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484555

--- Comment #6 from Méven Car  ---
(In reply to Ahmet Hakan Çelik from comment #4)
> Also is there any shortcut advice for this action?

There won't be a way if it is implemented with a KFileItemAction.

There is a feature https://bugs.kde.org/show_bug.cgi?id=260266 for this.
This bug is on my radar, on my shortlist of priority bugs (in 3rd position).

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 476670] Dolphin doesn't focus on the new pasted file if it's beyond screen border

2024-05-04 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=476670

Méven Car  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/syst |https://invent.kde.org/syst
   |em/dolphin/-/commit/3430ad1 |em/dolphin/-/commit/67de3b7
   |67355436c81fd1248d106e3f6f6 |344fd8a9af89017405b1edda6e1
   |1d1594  |cda9ff
 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

--- Comment #17 from Méven Car  ---
Git commit 67de3b7344fd8a9af89017405b1edda6e1cda9ff by Méven Car, on behalf of
Anthony Fieroni.
Committed on 04/05/2024 at 07:58.
Pushed by meven into branch 'master'.

DolphinView: Update selection on newly created item(s)
Adjust paste to url to new KF6 signals

Signed-off-by: Anthony Fieroni 

M  +14   -1src/views/dolphinview.cpp

https://invent.kde.org/system/dolphin/-/commit/67de3b7344fd8a9af89017405b1edda6e1cda9ff

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 484580] No access to webdavs since plasma6

2024-05-02 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484580

--- Comment #8 from Méven Car  ---
(In reply to Enno Gotthold from comment #6)
> (In reply to Ben from comment #1)
> > Hi Axel,
> > 
> > I had a similar problem, and could work around it with removing the user
> > xxx@ from the url. KIO asked for username and password, saved it (again) to
> > kwallet and connects fine now.
> > 
> > If that is the same for you, the bug is rather that the url handler does not
> > recognize the user part correctly.
> 
> For me this workaround didn't work. I still get "The file or folder ...
> doesn't exist".
> 
> I also found a downstream duplicate -
> https://bugzilla.suse.com/show_bug.cgi?id=1181988

This might get fixed with
https://invent.kde.org/frameworks/kio/-/merge_requests/1620 in KF 6.2

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 463989] Remote RAW image previews don't work because of missing file extension in thumbnail temp file

2024-04-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=463989

Méven Car  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/fram
   ||eworks/kio/-/commit/5e0b6cb
   ||f1b9ef5c1e181caa2726a5591ff
   ||0d5fde
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #3 from Méven Car  ---
Git commit 5e0b6cbf1b9ef5c1e181caa2726a5591ff0d5fde by Méven Car, on behalf of
Andrew Gunnerson.
Committed on 30/04/2024 at 10:14.
Pushed by meven into branch 'master'.

PreviewJob: Add file extension to thumbnail temp files

Previously, when previewing remote files, kio would create a local copy
of the file using QTemporaryFile's default template. This would result
in filenames, like /tmp/dolphin.XX. However, some thumbnail plugins,
like kdegraphics-thumbnailers' libkdcraw thumbnailer, require the file
extension to be valid in order to produce a preview.

This commit updates the temp file's naming template to include the
original file extension (if any).

Signed-off-by: Andrew Gunnerson 

M  +8-0src/gui/previewjob.cpp

https://invent.kde.org/frameworks/kio/-/commit/5e0b6cbf1b9ef5c1e181caa2726a5591ff0d5fde

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 485258] Dolphin crashed after dragging a file to the path breadcrumb

2024-04-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=485258

--- Comment #14 from Méven Car  ---
Only rolling release distro will get confronted with this.
Those distro updated Qt to 6.7 before devs even started using it and Qt 6.7
introduced some very low-level behavior changes causing crashes (deleteLater()
now crash when called with a nullptr object, most likely because of
https://code.qt.io/cgit/qt/qtbase.git/commit/src/corelib/kernel/qobject.cpp?h=v6.7.0=d50746ef3aec72d339f639395a2291009f186680)

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 485258] Dolphin crashed after dragging a file to the path breadcrumb

2024-04-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=485258

Méven Car  changed:

   What|Removed |Added

 CC||rcheung...@gmail.com

--- Comment #13 from Méven Car  ---
*** Bug 486146 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 486146] Dragging file from Dolphin into Chromium browser slowly cause crashes

2024-04-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=486146

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED
 CC||meve...@gmail.com

--- Comment #1 from Méven Car  ---


*** This bug has been marked as a duplicate of bug 485258 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 473488] Crash right before copying to pen drive

2024-04-27 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=473488

Méven Car  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

--- Comment #20 from Méven Car  ---
Will be in particular interested if this crash can happen still after
Frameworks 6.1 and
https://invent.kde.org/frameworks/kio/-/commit/b184cad07de7cefe9bccff500ad6b022ce3018c1

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 475422] Status bar shows the wrong path for relative symbolic links

2024-04-27 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=475422

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/fram
   ||eworks/kio/-/commit/8ed2639
   ||ba846f79f2b7dcbd7dde84d4339
   ||b860fc
 Status|ASSIGNED|RESOLVED

--- Comment #2 from Méven Car  ---
Git commit 8ed2639ba846f79f2b7dcbd7dde84d4339b860fc by Méven Car, on behalf of
Jin Liu.
Committed on 27/04/2024 at 10:00.
Pushed by meven into branch 'master'.

KFileItem: fix getStatusBarInfo() displaying symlink target as "http:"

Tested on local and `fish:` paths.

Add unit test for getStatusBarInfo() on relative symlinks

It only happens when KFileItem is constructed from UDSEntry.

M  +45   -0autotests/kfileitemtest.cpp
M  +1-0autotests/kfileitemtest.h
M  +1-1src/core/kfileitem.cpp

https://invent.kde.org/frameworks/kio/-/commit/8ed2639ba846f79f2b7dcbd7dde84d4339b860fc

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 450944] Dolphin git plugin doesn't show the files status badges until you open a new tab

2024-04-23 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=450944

Méven Car  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/syst
   ||em/dolphin/-/commit/b902436
   ||1fa922d9cd423aa05721a337a59
   ||b98229
 CC||meve...@gmail.com
   Version Fixed In||24.05

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 364321] GUI to switch between JEDEC and SI units

2024-04-22 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=364321

Méven Car  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/plas
   ||ma/plasma-workspace/-/commi
   ||t/875135ef11bc62f239943f59f
   ||ef780e2a92b9f44
 Resolution|--- |FIXED

--- Comment #33 from Méven Car  ---
Git commit 875135ef11bc62f239943f59fef780e2a92b9f44 by Méven Car.
Committed on 22/04/2024 at 17:57.
Pushed by meven into branch 'master'.

regionandlang kcm: add binary dialect setting

M  +1-0kcms/region_language/CMakeLists.txt
A  +97   -0kcms/region_language/binarydialectmodel.cpp [License:
GPL(v2.0+)]
A  +22   -0kcms/region_language/binarydialectmodel.h [License:
GPL(v2.0+)]
M  +1-1kcms/region_language/kcm_regionandlang.json
M  +93   -47   kcms/region_language/kcmregionandlang.cpp
M  +2-0kcms/region_language/kcmregionandlang.h
M  +4-0kcms/region_language/localelistmodel.cpp
M  +92   -28   kcms/region_language/optionsmodel.cpp
M  +17   -0kcms/region_language/optionsmodel.h
M  +7-2kcms/region_language/regionandlangsettings.cpp
M  +1-1kcms/region_language/settingtype.h
M  +79   -1kcms/region_language/ui/main.qml

https://invent.kde.org/plasma/plasma-workspace/-/commit/875135ef11bc62f239943f59fef780e2a92b9f44

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasma-systemmonitor] [Bug 434877] High CPU usage

2024-04-21 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=434877

--- Comment #21 from Méven Car  ---
Created attachment 168734
  --> https://bugs.kde.org/attachment.cgi?id=168734=edit
flamegraph-custom-tab

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasma-systemmonitor] [Bug 434877] High CPU usage

2024-04-21 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=434877

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

--- Comment #20 from Méven Car  ---
Created attachment 168733
  --> https://bugs.kde.org/attachment.cgi?id=168733=edit
flamegraph

On my Intel laptop using the kwin paint effect (Ctrl+F11).
I can see in the processor tab the application constantly blinking, switching
to the Overview, and observe high CPU usage.

I am using plasma-monitor 6.0.4 on plasma 6.1-dev.
Here joined a flamegraph of 5 seconds in the process tab.

Operating System: Arch Linux 
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0
Kernel Version: 6.5.0-1-mainline (64-bit)
Graphics Platform: Wayland
Processors: 8 × Intel® Core™ i7-8550U CPU @ 1.80GHz
Memory: 15.1 Gio of RAM
Graphics Processor: Mesa Intel® UHD Graphics 620
Manufacturer: Dell Inc.
Product Name: XPS 13 9370

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 485599] dolphin crash when using select file shorcuts (shortcut space)

2024-04-17 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=485599

Méven Car  changed:

   What|Removed |Added

   Version Fixed In||24.02.3
 CC||meve...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 485599] dolphin crash when using select file shorcuts (shortcut space)

2024-04-17 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=485599

Méven Car  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/syst
   ||em/dolphin/-/commit/a07f242
   ||28a94aab2bdeb3caaf7a4d694c0
   ||180ed7
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #3 from Méven Car  ---
Git commit a07f24228a94aab2bdeb3caaf7a4d694c0180ed7 by Méven Car, on behalf of
Felix Ernst.
Committed on 17/04/2024 at 07:32.
Pushed by meven into branch 'master'.

Fix crash while entering selection mode with Qt6.7

`deleteLater()` on a non-existing object seems to cause a crash with
Qt6.7. This makes some sense but wasn't the case previously.

I didn't test this yet but it is a harmless change so if anyone can confirm we
can IMO merge directly.

This was brought up in
https://invent.kde.org/system/dolphin/-/merge_requests/764#note_920935,
reported in the bug linked below, and the sentry crash reporting page also has
a few dozen reports
(https://crash-reports.kde.org/organizations/kde/issues/13589/?project=4=is%3Aunresolved=issue-stream_index=1).

Dolphin 24.02 is also affected but we are already past the last bug fix release
for it.

M  +3-1src/selectionmode/bottombarcontentscontainer.cpp

https://invent.kde.org/system/dolphin/-/commit/a07f24228a94aab2bdeb3caaf7a4d694c0180ed7

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 485258] Dolphin crashed after dragging a file to the path breadcrumb

2024-04-16 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=485258

Méven Car  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 485258] Dolphin crashed after dragging a file to the path breadcrumb

2024-04-16 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=485258

Méven Car  changed:

   What|Removed |Added

Product|dolphin |frameworks-kio
 CC||kdelibs-b...@kde.org
  Component|general |URL navigator
   Version Fixed In||6.2
   Assignee|dolphin-bugs-n...@kde.org   |kio-bugs-n...@kde.org
Version|24.02.2 |6.1.0
  Latest Commit||https://invent.kde.org/fram
   ||eworks/kio/-/commit/341a75c
   ||7e42ea8bcea07d0a0c0044a5a4f
   ||342e07

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 485258] Dolphin crashed after dragging a file to the path breadcrumb

2024-04-09 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=485258

Méven Car  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

--- Comment #4 from Méven Car  ---
(In reply to Sophie Cheung from comment #3)
> Created attachment 168300 [details]
> Screencast of the reproduction of the bug
> 
> I don't really know how to describe it more precisely so I've attached a
> screencast to demonstrate the behavior. Will test the patch later.

I don't reproduce it.
Do you reproduce it with breeze ?

I think I fixed already anyway.

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 480246] Column sorting is reset when moving to a different dir

2024-04-08 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=480246

Méven Car  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/syst
   ||em/dolphin/-/commit/13cf4c0
   ||96fc673e43a22746342d25c506b
   ||de8405

--- Comment #3 from Méven Car  ---
Git commit 13cf4c096fc673e43a22746342d25c506bde8405 by Méven Car, on behalf of
Felix Ernst.
Committed on 09/04/2024 at 05:53.
Pushed by meven into branch 'master'.

Fix saving sort role after change from header

This is a partial revert of
5186f09cabf0af4b0683e75b0bcde1061f84a67e. That commit tried to
simplify code, however this lead to the saving of view properties
being skipped, introducing the linked bug.

The issue is that by the time the slotSortRoleChangedFromHeader()
method is called, the model already changed its sort role.
Therefore the check if the new role is identical to the old sort
role fails and no saving would occur.

With this partial revert the header will continue to change the
sort role itself (which allows a minor optimization of not double
sorting when also changing the sort order at the same time). The
method slotSortRoleChangedFromHeader() is then only responsible
for saving that change in the ViewProperties and telling the
SortBy menu in the user interface that the sorting has changed.

M  +4-1src/views/dolphinview.cpp

https://invent.kde.org/system/dolphin/-/commit/13cf4c096fc673e43a22746342d25c506bde8405

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 483237] NFS ioworker needs porting to KF6

2024-04-08 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483237

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

--- Comment #6 from Méven Car  ---
On-going MR: https://invent.kde.org/network/kio-extras/-/merge_requests/343

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 485258] Dolphin crashed after dragging a file to the path breadcrumb

2024-04-08 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=485258

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

--- Comment #2 from Méven Car  ---
I couldn't reproduce the bug though.
Could you provide more precise scenario or a video capture ?

May have be taken of by
https://invent.kde.org/frameworks/kio/-/commit/341a75c7e42ea8bcea07d0a0c0044a5a4f342e07

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 446858] Date of creation doesn't update if folder opened in 2 tabs

2024-04-05 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=446858

Méven Car  changed:

   What|Removed |Added

   Version Fixed In||6.1
 CC||meve...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 446858] Date of creation doesn't update if folder opened in 2 tabs

2024-04-05 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=446858

Méven Car  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
  Latest Commit||https://invent.kde.org/fram
   ||eworks/kio/-/commit/db74085
   ||4f3644fe47e8aec24dadf467aa5
   ||a1d7a2
 Resolution|--- |FIXED

--- Comment #1 from Méven Car  ---
Git commit db740854f3644fe47e8aec24dadf467aa5a1d7a2 by Méven Car.
Committed on 05/04/2024 at 18:49.
Pushed by meven into branch 'master'.

kfileitem: Linux, use statx to refresh files

The statx logic is shared with kioworkers/file to minimize code
duplication.

M  +2-0src/core/CMakeLists.txt
M  +24   -13   src/core/kfileitem.cpp
M  +2-0src/kioworkers/file/CMakeLists.txt
M  +0-3src/kioworkers/file/config-kioworker-file.h.in
A  +3-0src/kioworkers/file/config-stat-unix.h.in
M  +2-129  src/kioworkers/file/file_unix.cpp
A  +149  -0src/kioworkers/file/stat_unix.h [License: LGPL(v2.0+)]

https://invent.kde.org/frameworks/kio/-/commit/db740854f3644fe47e8aec24dadf467aa5a1d7a2

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kfilemetadata] [Bug 451470] EXIF Metadata included in AVIF images is not shown in Gwenview, Dolphin etc.

2024-04-05 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=451470

Méven Car  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/fram
   ||eworks/kfilemetadata/-/comm
   ||it/fd9345cbea0e3540d88a2be2
   ||c51a170cf4859ee1
 CC||meve...@gmail.com
   Version Fixed In||5.100

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 484096] Missing metadata for JPEG-XL files in Dolphin

2024-04-05 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484096

Méven Car  changed:

   What|Removed |Added

   Version Fixed In||5.100

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 484096] Missing metadata for JPEG-XL files in Dolphin

2024-04-05 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484096

Méven Car  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/fram
   ||eworks/kfilemetadata/-/comm
   ||it/fd9345cbea0e3540d88a2be2
   ||c51a170cf4859ee1

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kfilemetadata] [Bug 451470] EXIF Metadata included in AVIF images is not shown in Gwenview, Dolphin etc.

2024-04-05 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=451470

Méven Car  changed:

   What|Removed |Added

 CC||kdelo...@mozej.com

--- Comment #4 from Méven Car  ---
*** Bug 484096 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 484096] Missing metadata for JPEG-XL files in Dolphin

2024-04-05 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484096

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #1 from Méven Car  ---
kfilemetada does support it since
https://invent.kde.org/frameworks/kfilemetadata/-/merge_requests/56

The file attached does not have metadata attached.

*** This bug has been marked as a duplicate of bug 451470 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 484096] Missing metadata for JPEG-XL files in Dolphin

2024-04-05 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484096

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com
Summary|Missing Properties in   |Missing metadata for
   |Dolphin |JPEG-XL files in Dolphin

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 437582] Add sort function to Recent Files/Locations pages

2024-04-05 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=437582

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |NOT A BUG
 Status|REPORTED|RESOLVED
 CC||meve...@gmail.com

--- Comment #1 from Méven Car  ---
> while the correct way is to sort them by date of access which doesn't work 
> because it's disabled on Linux to speed up IO, so it would be great to add an 
> option to sort Recent Files/Locations items from recent to old (or the 
> opposite) according to Plasma sort mechanism to make it easy for user to 
> access the most recent files

That's not true, access time tracking can be disabled and is often disabled for
SSDs since they have limited write cycles lifetime, but that's an issue that's
being mitigated nowadays.

Also in recent document they are access times that are not the file system
access time but rather the time an application open the file and wrote it to
~/.local/share/recently-used.xbel not from the filesystem metadata, so sorting
by access time will do what you expect.

You don't have to have the access time column displayed to sort by it.

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 481597] Dolphin doesn't update its behavior if the folder permission are changed externally

2024-04-05 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=481597

Méven Car  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||meve...@gmail.com
 Status|REPORTED|CONFIRMED
   Keywords||regression

--- Comment #1 from Méven Car  ---
In KF6 permissions are not refreshed often (isWritable uses cached data since
989e0c40dcb30393aed402cdf98be572fead6ed1
https://invent.kde.org/frameworks/kio/-/merge_requests/1221)
Unfortunately it seems we don't listen properly for IN_ATTRIB inotify
modification for folders.

KDirWatch and KDirLister need some cleaning/refactoring IMO.

-- 
You are receiving this mail because:
You are watching all bug changes.

[i18n] [Bug 484810] Mauvaise traduction de "Display luminosité" dans l'applet "Luminosité et couleur"

2024-04-02 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484810

Méven Car  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Méven Car  ---
Même si ce bug est plus vieux que 484342, l'autre est plus clair.

*** This bug has been marked as a duplicate of bug 484342 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[i18n] [Bug 484342] Mistranslation in the brightness applet

2024-04-02 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484342

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

--- Comment #2 from Méven Car  ---
*** Bug 484810 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 446027] Dolphin SVN plugin: part of previous SVN commit message appended to newer shorter one

2024-04-02 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=446027

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/sdk/
   ||dolphin-plugins/-/commit/3e
   ||422ab0589ee9713a6478a2c9e51
   ||f4d58991c23
 Status|ASSIGNED|RESOLVED

--- Comment #2 from Méven Car  ---
Git commit 3e422ab0589ee9713a6478a2c9e51f4d58991c23 by Méven Car, on behalf of
Nikolai Krasheninnikov.
Committed on 02/04/2024 at 08:41.
Pushed by meven into branch 'master'.

[svn] Fix part or previous commit message append to new shorter one

We use file from QTemporaryFile to fill it with commit message and pass
to svn. As QTemporaryFile creates one file per instance we should manualy
clear it each time or else we will mix messages.
(https://doc.qt.io/qt-6/qtemporaryfile.html#details)

M  +2-0svn/fileviewsvnplugin.cpp

https://invent.kde.org/sdk/dolphin-plugins/-/commit/3e422ab0589ee9713a6478a2c9e51f4d58991c23

-- 
You are receiving this mail because:
You are watching all bug changes.

[i18n] [Bug 484810] New: Mauvaise traduction de "Display luminosité" dans l'applet "Luminosité et couleur"

2024-03-31 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484810

Bug ID: 484810
   Summary: Mauvaise traduction de "Display luminosité" dans
l'applet "Luminosité et couleur"
Classification: Translations
   Product: i18n
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: fr
  Assignee: kde-francoph...@kde.org
  Reporter: meve...@gmail.com
  Target Milestone: ---

SUMMARY

Dans l'applet "luminosité et couleur",  "Display Luminosity" est traduit en
"Afficher la luminosité"
Cela devrait être "Luminosité de l'affichage"

Je n'ai le setup pour participer à la traduction via SVN si seulement on avait
une UI web pour faire cela plus simplement... (weblate).

SOFTWARE/OS VERSIONS
KDE Plasma Version: 6.0.2

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 483008] Turning off external monitor causes kwin crash

2024-03-31 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483008

Méven Car  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

--- Comment #22 from Méven Car  ---
(In reply to agap...@hotmail.com from comment #21)
> Created attachment 167957 [details]
> Kwin_wayland crash on Plasma 6.03

[Current thread is 1 (Thread 0x7dac5a90ba00 (LWP 2243))]
(gdb) bt
#0  doActivate (sender=0x5c1be80bd0e0, signal_index=3,
argv=0x7ffe55023cd0) at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/tools/qscopedpointer.h:110
#1  0x7dac625e9447 in KWin::DrmGpu::activeChanged (_t1=,
this=0x5c1be80bd0e0) at
/usr/src/debug/kwin/build/src/kwin_autogen/include/moc_drm_gpu.cpp:333
#2  KWin::DrmGpu::setActive (this=0x5c1be80bd0e0, active=true) at
/usr/src/debug/kwin/kwin-6.0.3.1/src/backends/drm/drm_gpu.cpp:736
#3  0x7dac5fd90ca9 in QtPrivate::QSlotObjectBase::call (a=0x7ffe55023e10,
r=0x7dac54009800, this=0x5c1be7fc9f60, this=, r=,
a=)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qobjectdefs_impl.h:433
#4  doActivate (sender=0x5c1be7fee6e0, signal_index=5,
argv=0x7ffe55023e10) at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qobject.cpp:4039
#5  0x7dac6237ee37 in KWin::Session::deviceResumed (this=,
_t1=) at
/usr/src/debug/kwin/build/src/kwin_autogen/include/moc_session.cpp:236
#6  0x7dac6238ba1b in KWin::LogindSession::handleResumeDevice
(fileDescriptor=..., minor=, major=,
this=0x5c1be7fee6e0)
at /usr/src/debug/kwin/kwin-6.0.3.1/src/core/session_logind.cpp:330
#7  KWin::LogindSession::qt_static_metacall (_o=0x5c1be7fee6e0, _id=, _a=0x7ffe55024088, _c=)
at
/usr/src/debug/kwin/build/src/kwin_autogen/include/moc_session_logind.cpp:176
#8  0x7dac6238bc51 in KWin::LogindSession::qt_static_metacall
(_a=0x7ffe55024088, _id=0, _c=QMetaObject::InvokeMetaMethod, _o=0x5c1be7fee6e0)
at
/usr/src/debug/kwin/build/src/kwin_autogen/include/moc_session_logind.cpp:170
#9  KWin::LogindSession::qt_metacall (this=0x5c1be7fee6e0,
_c=QMetaObject::InvokeMetaMethod, _id=0, _a=0x7ffe55024088)
at
/usr/src/debug/kwin/build/src/kwin_autogen/include/moc_session_logind.cpp:216
#10 0x7dac613130ce in QDBusConnectionPrivate::deliverCall
(this=0x7dac54009360, object=0x5c1be7fee6e0, msg=..., metaTypes=, slotIdx=9)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/dbus/qdbusintegrator.cpp:977
#11 0x7dac5fd7c2c7 in QObject::event (this=0x5c1be7fee6e0,
e=0x7dac54025100) at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qobject.cpp:1437
#12 0x7dac60cf438b in QApplicationPrivate::notify_helper (this=, receiver=0x5c1be7fee6e0, e=0x7dac54025100)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/widgets/kernel/qapplication.cpp:3296
#13 0x7dac5fd39818 in QCoreApplication::notifyInternal2
(receiver=0x5c1be7fee6e0, event=event@entry=0x7dac54025100)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qcoreapplication.cpp:1121
#14 0x7dac5fd39b9b in QCoreApplication::sendEvent (event=0x7dac54025100,
receiver=)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qcoreapplication.cpp:1539

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 451050] Dolphin crashing when connecting SMB share

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=451050

Méven Car  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

--- Comment #49 from Méven Car  ---
Could a duplicate of 
https://bugs.kde.org/show_bug.cgi?id=473488
Manifesting the issue at a different stage.

I would be very curious to know whether after KDE Frameworks 6.1 the issue is
fixed.
(commit
https://invent.kde.org/frameworks/kio/-/commit/b184cad07de7cefe9bccff500ad6b022ce3018c1)

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 482571] Open With not launching application. Terminal is not launching either

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=482571

--- Comment #8 from Méven Car  ---
KDE Frameworks 6.1 arrive April 13th then a few days for rolling distro to ship
it.

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 482797] Open With not launching application. Terminal is not launching either

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=482797
Bug 482797 depends on bug 482571, which changed state.

Bug 482571 Summary: Open With not launching application. Terminal is not 
launching either
https://bugs.kde.org/show_bug.cgi?id=482571

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 482107] Open Terminal here fails to open Konsole

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=482107

--- Comment #18 from Méven Car  ---
*** Bug 482571 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 482571] Open With not launching application. Terminal is not launching either

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=482571

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||meve...@gmail.com
 Status|REPORTED|RESOLVED

--- Comment #7 from Méven Car  ---


*** This bug has been marked as a duplicate of bug 482107 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 454841] Not hard code the order of the day, month and year

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=454841

Méven Car  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/sdk/
   ||dolphin-plugins/-/commit/ee
   ||7cbc1f75df67653c017cb697e28
   ||be74064f0dc
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #2 from Méven Car  ---
Git commit ee7cbc1f75df67653c017cb697e28be74064f0dc by Méven Car, on behalf of
Alexander Johansen.
Committed on 30/03/2024 at 12:54.
Pushed by meven into branch 'master'.

Use locales date in Git log

This tells Git to use the system locale for its date instead of hard-coding a
format.

M  +1-1git/fileviewgitplugin.cpp

https://invent.kde.org/sdk/dolphin-plugins/-/commit/ee7cbc1f75df67653c017cb697e28be74064f0dc

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 468128] AppImages cannot be started, when Dolphin is launched via keyboard shortcut

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=468128

Méven Car  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |WORKSFORME
  Component|general |general
   Assignee|dolphin-bugs-n...@kde.org   |kio-bugs-n...@kde.org
 CC||kdelibs-b...@kde.org,
   ||meve...@gmail.com
Version|22.12.3 |5.114.0
Product|dolphin |frameworks-kio
   Version Fixed In||6.0

--- Comment #17 from Méven Car  ---
Seeing two confirmation that KDE Framework 6 fixed the issue.
Thanks  Patrick Silva (the best bug reporter out there!) and David R. 
A lot of code regarding application starting has been revamped so this could
have been expected.

Please reopen if you encounter the PRECISE same condition, otherwise open a new
bug.

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 484580] No access to webdavs since plasma6

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484580

--- Comment #3 from Méven Car  ---
(In reply to Axel Braun from comment #2)
> (In reply to Ben from comment #1)
> 
> > I had a similar problem, and could work around it with removing the user
> > xxx@ from the url. KIO asked for username and password, saved it (again) to
> > kwallet and connects fine now.
> 
> Hello Ben,
> I needed to remove the user/PW from kwallet and log-in again, to get the
> folder overview working. 
> But that did not bring complete success. As soon as I click a subfolder it
> claims 'invalid protocol'
> journalctl:
> Mär 30 13:15:15 X1E dolphin[25447]: kf.kio.core: Invalid URL: QUrl("")

Can you copy the url that dolphin is trying to access roughtly?
Does it work if you add or remove the trailing slash from the url ?

> (this time on wayland)

Hardly have any incidence here.

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 484580] No access to webdavs since plasma6

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484580

Méven Car  changed:

   What|Removed |Added

Product|dolphin |frameworks-kio
 CC||kdelibs-b...@kde.org,
   ||meve...@gmail.com
  Component|panels: folders |WebDAV
   Assignee|dolphin-bugs-n...@kde.org   |kio-bugs-n...@kde.org
Version|24.02.1 |6.0.0

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 484713] servicemenu exec: not authorized to execute

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484713

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

--- Comment #4 from Méven Car  ---
Do you have an error message in the console if you launch dolphin from the
command line ?

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 484732] dolphin's option hiding the emplacement panel when dolphin in split mode

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484732

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

--- Comment #1 from Méven Car  ---
That's about making dolphin UI responsive all right.

When should it hide the places panel then ? 
When only n pixels are available ? x rows are visible in the view ? How would
it interact with the zoom ?
In details mode the question is very different, information being much more
dense there.

I am guessing the information panel could be in scope here.

-- 
You are receiving this mail because:
You are watching all bug changes.

[ark] [Bug 483748] compressing using rar does not work

2024-03-30 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483748

Méven Car  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/util |https://invent.kde.org/util
   |ities/ark/-/commit/a43fa704 |ities/ark/-/commit/48b9a6ab
   |d78c7840d946fef30683aceba41 |167eb5995692d0358672fbccb81
   |2cc3b   |47f70

--- Comment #6 from Méven Car  ---
Git commit 48b9a6ab167eb5995692d0358672fbccb8147f70 by Méven Car.
Committed on 30/03/2024 at 11:40.
Pushed by meven into branch 'release/24.02'.

clirarplugin: disable RAR4 compression method
(cherry picked from commit a43fa704d78c7840d946fef30683aceba412cc3b)

M  +0-14   kerfuffle/compressionoptionswidget.cpp
M  +2-4plugins/clirarplugin/kerfuffle_clirar.json.cmake

https://invent.kde.org/utilities/ark/-/commit/48b9a6ab167eb5995692d0358672fbccb8147f70

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 463796] KIO::copy Segmentation fault

2024-03-29 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=463796

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |UNMAINTAINED
 CC||meve...@gmail.com
 Status|REPORTED|RESOLVED

--- Comment #2 from Méven Car  ---
I am sorry KIO 5 won't receive any new releases.
Also the latest `5.115.0` might have this issue.

This shouldn't be reproducible with KF6 / plasma6 for when you will be able to
upgrade.

> This issue can be fixed by disabling threaded kio_copy.

It is the whole `file://` protocol that runs in a thread instead of a process.

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 476159] Recent Files/Locations sorting should always be separate from the system

2024-03-28 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=476159

Méven Car  changed:

   What|Removed |Added

   Version Fixed In|24.04   |24.05

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 477526] NFS Mounts with all_squash,root_squash,anonuid=0,anongid=0 not able to modify files anymore

2024-03-27 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=477526

Méven Car  changed:

   What|Removed |Added

   Version Fixed In||6.1

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 484012] Compact View mode has a wrong layout in RTL mode

2024-03-27 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484012

Méven Car  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/syst
   ||em/dolphin/-/commit/240d33c
   ||e17fc531e8bc6638af8f71454fe
   ||7c05e6

--- Comment #2 from Méven Car  ---
Git commit 240d33ce17fc531e8bc6638af8f71454fe7c05e6 by Méven Car, on behalf of
Eugene Popov.
Committed on 27/03/2024 at 10:28.
Pushed by meven into branch 'master'.

Better support for RTL

This MR fixes some issues related to RTL scripts:
- wrong layout in Compact View mode
- broken horizontal scrolling in Icon View and Details View modes
- broken navigation with left and right arrow keys in Details View mode
Related: bug 449493

M  +5-0src/kitemviews/kitemlistcontainer.cpp
M  +39   -23   src/kitemviews/kitemlistcontroller.cpp
M  +4-0src/kitemviews/kitemlistview.cpp
M  +10   -3src/kitemviews/kstandarditemlistwidget.cpp
M  +20   -10   src/kitemviews/private/kitemlistviewlayouter.cpp
M  +1-1src/tests/kitemlistcontrollertest.cpp

https://invent.kde.org/system/dolphin/-/commit/240d33ce17fc531e8bc6638af8f71454fe7c05e6

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 449493] The view in compact mode moves to the opposite side of horizontal scroll bar direction in RTL mode

2024-03-27 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=449493

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/syst
   ||em/dolphin/-/commit/240d33c
   ||e17fc531e8bc6638af8f71454fe
   ||7c05e6

--- Comment #3 from Méven Car  ---
Git commit 240d33ce17fc531e8bc6638af8f71454fe7c05e6 by Méven Car, on behalf of
Eugene Popov.
Committed on 27/03/2024 at 10:28.
Pushed by meven into branch 'master'.

Better support for RTL

This MR fixes some issues related to RTL scripts:
- wrong layout in Compact View mode
- broken horizontal scrolling in Icon View and Details View modes
- broken navigation with left and right arrow keys in Details View mode
Related: bug 484012

M  +5-0src/kitemviews/kitemlistcontainer.cpp
M  +39   -23   src/kitemviews/kitemlistcontroller.cpp
M  +4-0src/kitemviews/kitemlistview.cpp
M  +10   -3src/kitemviews/kstandarditemlistwidget.cpp
M  +20   -10   src/kitemviews/private/kitemlistviewlayouter.cpp
M  +1-1src/tests/kitemlistcontrollertest.cpp

https://invent.kde.org/system/dolphin/-/commit/240d33ce17fc531e8bc6638af8f71454fe7c05e6

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 484555] Enhance with “Create folder from selected files”

2024-03-27 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484555

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com
   Keywords||junior-jobs
 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED

--- Comment #1 from Méven Car  ---
A KFileItemActions
https://api.kde.org/frameworks/kio/html/classKFileItemActions.html in dolphin
similar to the `copy to` `move to` ones is the way to implementing, using
KNewFileMenu::creatDirectory
https://api.kde.org/frameworks/kio/html/classKNewFileMenu.html

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 477526] NFS Mounts with all_squash,root_squash,anonuid=0,anongid=0 not able to modify files anymore

2024-03-25 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=477526

--- Comment #15 from Méven Car  ---
(In reply to Méven Car from comment #14)
> (In reply to Jessica M from comment #13)
> > (In reply to Méven Car from comment #12)
> > > (In reply to Jessica M from comment #11)
> > > > This is still broken after the recent KIO merge request, all files 
> > > > belonging
> > > > to root on the NFS share still show greyed out options in dolphin, 
> > > > despite
> > > > me technically being allowed to modify the files if I use CLI. Drag and
> > > > dropping into the folder still works too, despite dolphin not letting me
> > > > modify files in other ways. I also can't modify files owned by root if 
> > > > I use
> > > > kio-admin, might be related.
> > > 
> > > Have you updated you KIO, i.e KDE Frameworks 6.1 ?
> > > It should be released on April 13th, unless you have compiled yourself (or
> > > are using neon developer?) you couldn't have tested it.
> > 
> > I compiled it from kio-git on the AUR
> 
> Nice, thanks.
> 
> The current code test the group permissions based on the file owner
> permissions which is wrong.
> https://invent.kde.org/frameworks/kio/-/merge_requests/1583 is fixing it.

Could you confirmed it is fixed with latest master ?

-- 
You are receiving this mail because:
You are watching all bug changes.

[ark] [Bug 483748] compressing using rar does not work

2024-03-25 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483748

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/util
   ||ities/ark/-/commit/a43fa704
   ||d78c7840d946fef30683aceba41
   ||2cc3b
 Status|ASSIGNED|RESOLVED

--- Comment #5 from Méven Car  ---
Git commit a43fa704d78c7840d946fef30683aceba412cc3b by Méven Car.
Committed on 25/03/2024 at 13:16.
Pushed by meven into branch 'master'.

clirarplugin: disable RAR4 compression method

M  +0-14   kerfuffle/compressionoptionswidget.cpp
M  +2-4plugins/clirarplugin/kerfuffle_clirar.json.cmake

https://invent.kde.org/utilities/ark/-/commit/a43fa704d78c7840d946fef30683aceba412cc3b

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 3212] Option to hide backup files as well as dotfiles?

2024-03-25 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=3212

Méven Car  changed:

   What|Removed |Added

 CC|meve...@gmail.com   |

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 3212] Option to hide backup files as well as dotfiles?

2024-03-25 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=3212

--- Comment #87 from Méven Car  ---
(In reply to Daniel Scharrer from comment #86)
> Please revert this.

This behavior will be off by default in next dolphin version.
See https://bugs.kde.org/show_bug.cgi?id=475805

-- 
You are receiving this mail because:
You are watching all bug changes.

[kio-extras] [Bug 484374] Fails to generate preview (and thumbnail) for some .png files

2024-03-24 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484374

Méven Car  changed:

   What|Removed |Added

  Component|general |Thumbnails and previews
Product|dolphin |kio-extras
   Assignee|dolphin-bugs-n...@kde.org   |plasma-b...@kde.org

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 484374] Fails to generate preview (and thumbnail) for some .png files

2024-03-24 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=484374

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
 CC||meve...@gmail.com

--- Comment #1 from Méven Car  ---
Can you send the concerned pngs ?

-- 
You are receiving this mail because:
You are watching all bug changes.

[KScreen] [Bug 477355] display configuration applet: cannot leave presentation mode

2024-03-23 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=477355

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com
   Version Fixed In||6.0.4

-- 
You are receiving this mail because:
You are watching all bug changes.

[KScreen] [Bug 477355] display configuration applet: cannot leave presentation mode

2024-03-23 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=477355

Méven Car  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/plasma-workspace/-/commi |ma/plasma-workspace/-/commi
   |t/0266e1403ca121b382f06d60c |t/ab792c02861b61e0af375e68e
   |13ced61bd800dde |af03d76ffd8a4d4

--- Comment #12 from Méven Car  ---
Git commit ab792c02861b61e0af375e68eaf03d76ffd8a4d4 by Méven Car, on behalf of
Natalie Clarius.
Committed on 23/03/2024 at 09:22.
Pushed by meven into branch 'Plasma/6.0'.

dataengines/powermanagement: set result for inhibition request

This is needed for the battery and display configuration applets to update
state (reenable switch and show OSD or error notification).


(cherry picked from commit 0266e1403ca121b382f06d60c13ced61bd800dde)

M  +4-0dataengines/powermanagement/powermanagementjob.cpp

https://invent.kde.org/plasma/plasma-workspace/-/commit/ab792c02861b61e0af375e68eaf03d76ffd8a4d4

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 483916] plasmashell crashes when turning on external monitor

2024-03-22 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483916

Méven Car  changed:

   What|Removed |Added

 CC|meve...@gmail.com   |

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 483436] Incorrect display of file icons (thumbnails)

2024-03-21 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483436

Méven Car  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/fram |https://invent.kde.org/fram
   |eworks/kio/-/commit/a58005d |eworks/kio/-/commit/8e62228
   |0a4cb977b0311688536cd311ec0 |0d070df7824baffd684e866c085
   |359c5b  |b56f64

--- Comment #3 from Méven Car  ---
Git commit 8e622280d070df7824baffd684e866c085b56f64 by Méven Car, on behalf of
Méven Car.
Committed on 21/03/2024 at 08:04.
Pushed by meven into branch 'master'.

KFileItem: when checking access use current user

Instead of the file owner

M  +14   -14   src/core/kfileitem.cpp

https://invent.kde.org/frameworks/kio/-/commit/8e622280d070df7824baffd684e866c085b56f64

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 483243] kwin_wayland segfault when taking screenshot when locked and/or without a screen

2024-03-20 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483243

Méven Car  changed:

   What|Removed |Added

Summary|kwin_wayland segfault every |kwin_wayland segfault when
   |morning while turning   |taking screenshot when
   |monitors on and unlocking   |locked and/or without a
   ||screen

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 483243] kwin_wayland segfault every morning while turning monitors on and unlocking

2024-03-20 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483243

--- Comment #7 from Méven Car  ---
(In reply to andy from comment #6)
> I wrapped my screenshot operations around checking `dbus-send --session
> --dest=org.freedesktop.ScreenSaver --type=method_call --print-reply
> /org/freedesktop/ScreenSaver org.freedesktop.ScreenSaver.GetActive`. It
> seems to have done the trick, no crash this morning.
> 
> Maybe this is still relevant to fix for the sake of kwin shouldn't be able
> to get segfaulted by a screenshot program.

Yes indeed.

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 477526] NFS Mounts with all_squash,root_squash,anonuid=0,anongid=0 not able to modify files anymore

2024-03-20 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=477526

Méven Car  changed:

   What|Removed |Added

 Status|REOPENED|CONFIRMED

--- Comment #14 from Méven Car  ---
(In reply to Jessica M from comment #13)
> (In reply to Méven Car from comment #12)
> > (In reply to Jessica M from comment #11)
> > > This is still broken after the recent KIO merge request, all files 
> > > belonging
> > > to root on the NFS share still show greyed out options in dolphin, despite
> > > me technically being allowed to modify the files if I use CLI. Drag and
> > > dropping into the folder still works too, despite dolphin not letting me
> > > modify files in other ways. I also can't modify files owned by root if I 
> > > use
> > > kio-admin, might be related.
> > 
> > Have you updated you KIO, i.e KDE Frameworks 6.1 ?
> > It should be released on April 13th, unless you have compiled yourself (or
> > are using neon developer?) you couldn't have tested it.
> 
> I compiled it from kio-git on the AUR

Nice, thanks.

The current code test the group permissions based on the file owner permissions
which is wrong.
https://invent.kde.org/frameworks/kio/-/merge_requests/1583 is fixing it.

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 483916] plasmashell crashes when turning on external monitor

2024-03-19 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483916

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

--- Comment #1 from Méven Car  ---
```

#0  __pthread_kill_implementation (threadid=,
signo=signo@entry=11, no_tid=no_tid@entry=0) at pthread_kill.c:44
#1  0x77bc80eab393 in __pthread_kill_internal (signo=11,
threadid=) at pthread_kill.c:78
#2  0x77bc80e5a6c8 in __GI_raise (sig=11) at ../sysdeps/posix/raise.c:26
#3  0x77bc83b7d43f in KCrash::defaultCrashHandler (sig=11) at
/usr/src/debug/kcrash/kcrash-6.0.0/src/kcrash.cpp:586
#4  0x77bc80e5a770 in  () at /usr/lib/libc.so.6
#5  0x77bc8276740b in QArrayDataPointer::QArrayDataPointer
(other=..., this=0x7ffd4d9f98c0) at
/usr/include/qt6/QtCore/qarraydatapointer.h:38
#6  QList::QList (this=0x7ffd4d9f98c0, this=) at
/usr/include/qt6/QtCore/qlist.h:70
#7  QQmlPropertyMap::keys (this=0x613e1e4bee20) at
/usr/src/debug/qt6-declarative/qtdeclarative-everywhere-src-6.6.2/src/qml/util/qqmlpropertymap.cpp:255
#8  0x613e1bd7e717 in ContainmentConfigView::applyWallpaper
(this=0x613e1ee72d00) at
/usr/src/debug/plasma-workspace/plasma-workspace-6.0.2/shell/containmentconfigview.cpp:196
#9  ContainmentConfigView::qt_static_metacall (_o=0x613e1ee72d00, _c=, _id=, _a=) at
/usr/src/debug/plasma-workspace/build/shell/plasmashell_autogen/EWIEGA46WW/moc_containmentconfigview.cpp:223
#10 0x613e1bd80670 in ContainmentConfigView::qt_metacall
(this=0x613e1ee72d00, _c=QMetaObject::InvokeMetaMethod, _id=4,
_a=0x7ffd4d9f9c40) at
/usr/src/debug/plasma-workspace/build/shell/plasmashell_autogen/EWIEGA46WW/moc_containmentconfigview.cpp:309
```

@Najjar, Do you have a script to change your wallpaper periodically, or
anything changing your wallpaper ?

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 483243] kwin_wayland segfault every morning while turning monitors on and unlocking

2024-03-18 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483243

Méven Car  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

--- Comment #5 from Méven Car  ---
(In reply to andy from comment #4)
> (In reply to Méven Car from comment #3)
> > @andy, did you use spectacle or other screenshot application in your session
> > previous to the crash ?
> 
> I do have a script that periodically takes screenshots with spectacle.
> I'll try disabling that overnight tonight to see if it makes a difference.

I am about 95% sure that it will.
You can try disabling it as you lock you session.

>  In my first comment in the backtrace there was no QImage mention so I wonder 
> if
> it's unrelated. Given so many threads in the core dump log, which does `gdb
> bt full` show?

The first trace ends with `#0  0x5a39fb8aa812 in ??? ()` i.e couldn't
display more information, 
Meaning it could end in the same place as before, we had the mention of
`QFutureWatcherBase::finished` which hints that way.
Between the two traces you must have installed better debug symbols that
allowed to read that.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 483243] kwin_wayland segfault every morning while turning monitors on and unlocking

2024-03-18 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483243

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

--- Comment #3 from Méven Car  ---
(In reply to andy from comment #2)
> possibly related https://bugs.kde.org/show_bug.cgi?id=483008
Unrelated.

Relevant part:

#0  0x5b4e77246722 in QtPrivate::ResultIteratorBase::pointer
(this=) at /usr/include/qt6/QtCore/qresultstore.h:81
#1  QtPrivate::ResultIteratorBase::pointer (this=) at
/usr/include/qt6/QtCore/qresultstore.h:74
p = 
p = 
#2  QtPrivate::ResultIteratorBase::value (this=) at
/usr/include/qt6/QtCore/qresultstore.h:68
#3  QFutureInterface::resultReference (index=0, this=0x5b4e7938e8b0) at
/usr/include/qt6/QtCore/qfutureinterface.h:388
locker = {m_mutex = , m_isLocked = true}
locker = {m_mutex = , m_isLocked = }
#4  QFuture::result (this=) at
/usr/include/qt6/QtCore/qfuture.h:308
#5  KWin::ScreenShotSource2::marshal (sink=0x76b5f4014420, this=0x5b4e7938e8a0)
at
/usr/src/debug/kwin/kwin-6.0.2/src/plugins/screenshot/screenshotdbusinterface2.cpp:244
#6  operator() (__closure=0x5b4e7a96eaa0) at
/usr/src/debug/kwin/kwin-6.0.2/src/plugins/screenshot/screenshotdbusinterface2.cpp:588
source = 0x5b4e7938e8a0
sink = 0x76b5f4014420
source = 
sink = 
#7  QtPrivate::FunctorCall, QtPrivate::List<>, void,
KWin::ScreenShotDBusInterface2::bind(KWin::ScreenShotSinkPipe2*,
KWin::ScreenShotSource2*):: >::call (arg=, f=...) at
/usr/include/qt6/QtCore/qobjectdefs_impl.h:137

Two strange things: 
 - a screenshot future that get activated on unlock
 - consequently, a finished future that has a nullptr result, here QImage

The watcher might work properly.

@andy, did you use spectacle or other screenshot application in your session
previous to the crash ?

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 483008] Turning off external monitor causes kwin crash

2024-03-18 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483008

--- Comment #19 from Méven Car  ---
(In reply to andy from comment #18)
> Does this look like the same cause affecting
> https://bugs.kde.org/show_bug.cgi?id=483243 (possible duplicate)

This is not not a duplicate but looks a bit similar.

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 476159] Recent Files/Locations sorting should always be separate from the system

2024-03-18 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=476159

Méven Car  changed:

   What|Removed |Added

   Version Fixed In||24.04
 CC||meve...@gmail.com
 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED
  Latest Commit||https://invent.kde.org/syst
   ||em/dolphin/-/commit/3a03f86
   ||b836e172001120ee73956a7bad9
   ||c7276b

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 479107] Dolphin does not Copy-on-Write ???? on Btrfs filesystems

2024-03-18 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=479107

Méven Car  changed:

   What|Removed |Added

 CC|meve...@gmail.com   |

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 477526] NFS Mounts with all_squash,root_squash,anonuid=0,anongid=0 not able to modify files anymore

2024-03-18 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=477526

--- Comment #12 from Méven Car  ---
(In reply to Jessica M from comment #11)
> This is still broken after the recent KIO merge request, all files belonging
> to root on the NFS share still show greyed out options in dolphin, despite
> me technically being allowed to modify the files if I use CLI. Drag and
> dropping into the folder still works too, despite dolphin not letting me
> modify files in other ways. I also can't modify files owned by root if I use
> kio-admin, might be related.

Have you updated you KIO, i.e KDE Frameworks 6.1 ?
It should be released on April 13th, unless you have compiled yourself (or are
using neon developer?) you couldn't have tested it.

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 481311] KDirLister freezing when trying to parse a folder with more than 178 files

2024-03-15 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=481311

Méven Car  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/fram
   ||eworks/kio/-/commit/4ded5dd
   ||12f5e752674b685833b77b9b546
   ||c0b6c8
 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

--- Comment #9 from Méven Car  ---
Git commit 4ded5dd12f5e752674b685833b77b9b546c0b6c8 by Méven Car, on behalf of
Harald Sitter.
Committed on 15/03/2024 at 18:12.
Pushed by meven into branch 'master'.

connectionbackend: improve jumbo packet handling

(also should fix things on windows)

jumbo handling was a bit weird in that we kept bumping the buffer size
sky high. and then eventually (hopefully) would be able to read
everything in one go and emit. In practice that seems to have not worked
out on windows. do partial reads instead.

to facilitate this change the existing Task struct is now serving as
container we read into so it becomes a bit easier to manage the state.

this should also make the code a bit easier to reason about. when we
have no task we now start a new task. if we have a task we always read
as much data as possible into the task. when we read all data then the
task gets emitted.

M  +9-0autotests/CMakeLists.txt
A  +53   -0autotests/connectionbackendtest.cpp [License: LGPL(v2.0+)]
M  +9-0src/core/CMakeLists.txt
M  +22   -25   src/core/connectionbackend.cpp
M  +7-6src/core/connectionbackend_p.h

https://invent.kde.org/frameworks/kio/-/commit/4ded5dd12f5e752674b685833b77b9b546c0b6c8

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 483008] Turning off external monitor causes kwin crash

2024-03-15 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483008

Méven Car  changed:

   What|Removed |Added

   Version Fixed In||6.0.3

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 483008] Turning off external monitor causes kwin crash

2024-03-15 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483008

Méven Car  changed:

   What|Removed |Added

 Resolution|BACKTRACE   |---
 Ever confirmed|0   |1
 Status|NEEDSINFO   |CONFIRMED

--- Comment #13 from Méven Car  ---
(In reply to agap...@hotmail.com from comment #12)
> Created attachment 167259 [details]
> Coredump using sudo DEBUGINFOD_URLS="https://debuginfod.archlinux.org/;
> coredumpctl gdb kwin_wayland
> 
> I hope it is correct and useful this time. Please let me know

Yes fantastic !

(gdb) bt
#0  doActivate (sender=0x723878002840, signal_index=3,
argv=0x7fffb699e490) at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/tools/qscopedpointer.h:110
#1  0x7238c73e8c07 in KWin::DrmGpu::activeChanged (_t1=,
this=0x723878002840) at
/usr/src/debug/kwin/build/src/kwin_autogen/include/moc_drm_gpu.cpp:333
#2  KWin::DrmGpu::setActive (this=0x723878002840, active=true) at
/usr/src/debug/kwin/kwin-6.0.2/src/backends/drm/drm_gpu.cpp:734
#3  0x7238c4b90ca9 in QtPrivate::QSlotObjectBase::call (a=0x7fffb699e5d0,
r=0x7238b8009810, this=0x60e9eb54f5a0, this=, r=,
a=)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qobjectdefs_impl.h:433
#4  doActivate (sender=0x60e9eb54a960, signal_index=5,
argv=0x7fffb699e5d0) at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qobject.cpp:4039
#5  0x7238c717edd7 in KWin::Session::deviceResumed (this=,
_t1=) at
/usr/src/debug/kwin/build/src/kwin_autogen/include/moc_session.cpp:236
#6  0x7238c718b9bb in KWin::LogindSession::handleResumeDevice
(fileDescriptor=..., minor=, major=,
this=0x60e9eb54a960)
at /usr/src/debug/kwin/kwin-6.0.2/src/core/session_logind.cpp:330
#7  KWin::LogindSession::qt_static_metacall (_o=0x60e9eb54a960, _id=, _a=0x7fffb699e848, _c=)
at
/usr/src/debug/kwin/build/src/kwin_autogen/include/moc_session_logind.cpp:176
#8  0x7238c718bbf1 in KWin::LogindSession::qt_static_metacall
(_a=0x7fffb699e848, _id=0, _c=QMetaObject::InvokeMetaMethod, _o=0x60e9eb54a960)
at
/usr/src/debug/kwin/build/src/kwin_autogen/include/moc_session_logind.cpp:170
#9  KWin::LogindSession::qt_metacall (this=0x60e9eb54a960,
_c=QMetaObject::InvokeMetaMethod, _id=0, _a=0x7fffb699e848)
at
/usr/src/debug/kwin/build/src/kwin_autogen/include/moc_session_logind.cpp:216
#10 0x7238c61130ce in QDBusConnectionPrivate::deliverCall
(this=0x7238b8009370, object=0x60e9eb54a960, msg=..., metaTypes=, slotIdx=9)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/dbus/qdbusintegrator.cpp:977
#11 0x7238c4b7c2c7 in QObject::event (this=0x60e9eb54a960,
e=0x7238b8010dc0) at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qobject.cpp:1437
#12 0x7238c5af438b in QApplicationPrivate::notify_helper (this=, receiver=0x60e9eb54a960, e=0x7238b8010dc0)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/widgets/kernel/qapplication.cpp:3296
#13 0x7238c4b39818 in QCoreApplication::notifyInternal2
(receiver=0x60e9eb54a960, event=event@entry=0x7238b8010dc0)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qcoreapplication.cpp:1121
#14 0x7238c4b39b9b in QCoreApplication::sendEvent (event=0x7238b8010dc0,
receiver=)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qcoreapplication.cpp:1539
#15 QCoreApplicationPrivate::sendPostedEvents (receiver=0x0, event_type=0,
data=0x60e9eb412430)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qcoreapplication.cpp:1901
#16 0x7238c4c9f18f in QEventDispatcherUNIX::processEvents
(this=0x60e9eb47f460, flags=flags@entry=...)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qeventdispatcher_unix.cpp:431
#17 0x7238c55b26e2 in QUnixEventDispatcherQPA::processEvents
(this=, flags=...)
at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/gui/platform/unix/qunixeventdispatcher.cpp:27
#18 0x7238c4b43d6e in QEventLoop::processEvents (flags=...,
this=0x7fffb699edb0) at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qeventloop.cpp:100
#19 QEventLoop::exec (this=0x7fffb699edb0, flags=...) at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/kernel/qeventloop.cpp:182
#20 0x7238c4b3c2b8 in QCoreApplication::exec () at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/corelib/global/qflags.h:74
#21 0x7238c5af0f0a in QApplication::exec () at
/usr/src/debug/qt6-base/qtbase-everywhere-src-6.6.2/src/widgets/kernel/qapplication.cpp:2574
#22 0x60e9e99d3dee in main (argc=, argv=) at
/usr/src/debug/kwin/kwin-6.0.2/src/main_wayland.cpp:609

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 483008] Turning off external monitor causes kwin crash

2024-03-13 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483008

--- Comment #10 from Méven Car  ---
(In reply to agap...@hotmail.com from comment #9)
> Created attachment 167081 [details]
> Crash of kwin immediately after the crash after waking computer from sleep
> and turning on monitor
> 
> One thing I noticed is the crash of kwin only happens when Optimus-manager
> is running in the tray. I have not observed it happen without it.

This lacks debuginfo that would make it 100 times more useful, luckily that can
be added easily.
For arch/Endeavour and reading your precedent output it should be as simple as
running `DEBUGINFOD_URLS="https://debuginfod.archlinux.org/; coredumpctl gdb
1973961`, this will take a little while and download a bunch of data.
Once the last line is a prompt `(gdb) `, type in `bt` then hit enter and you
will have a good output.
You can quit gdb with Ctrl + D or close your terminal afterwards.

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 483008] Turning off external monitor causes kwin crash

2024-03-12 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=483008

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

--- Comment #7 from Méven Car  ---
(In reply to agap...@hotmail.com from comment #6)
> Created attachment 166956 [details]
> gdb.txt with backtrace
> 
> I have managed to get a backtrace to show up in the .txt. Let me know if
> anyhting else is needed.

This is nice and even more detailed that what I would expect normally ;)

But I am not sure what this trace is for. If you use gdb, it should mention a
segfault or a crash somewhere but this does not seem to be the case.

With gdb, you need to launch or attach to kwin process, and get it to crash,
then we will have a useful trace in gdb output.

Or with coredumpctl after kwin has quit after a crash, you can run `coredumpctl
info -1 kwin_wayland` to get essentially the same thing.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 482958] When adjacent don't have the same height, make mouse crossing smarter

2024-03-12 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=482958

--- Comment #2 from Méven Car  ---
(In reply to fanzhuyifan from comment #1)
> This doesn't interact nicely with windows spanning multiple screens, or a
> big vertical screen adjacent to vertically stacked horizontal screens. I
> don't think we can feasibly implement this without breaking these use cases.

That my sentiment too. Still it bugs me. I can't be the only one.

The second idea would be less intrusive, but still surprising.

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasma-integration] [Bug 406450] "Remote" and "Recent" sections and "Trash" entry are missing in file open/save dialogs started by non-KDE Qt5/Qt6 apps

2024-03-11 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=406450

Méven Car  changed:

   What|Removed |Added

  Component|Open/save dialogs   |general
 Status|REOPENED|CONFIRMED
Product|frameworks-kio  |plasma-integration

--- Comment #18 from Méven Car  ---
(In reply to Patrick Silva from comment #17)
> The non-KDE Qt5 apps are also affected:
> openshot video editor
> photoflare photo editor
> clementine music player
> 
> This also affects non-KDE Qt6 apps.

It seems like plasma-integration is not properly loading the plugins that
provide those features (kio_trash.so, kio_recentlyused.so).
We probably need to use `QCoreApplication::addLibraryPath` to make sure
/usr/lib/plugins/kf6 is added to the a plugin paths.

This can fix only the case where plasma-integration Qt version, kio Qt version
and the application Qt version match.
Note we can install kio/Qt5 in parallel to kio/Qt6.

-- 
You are receiving this mail because:
You are watching all bug changes.

[ark] [Bug 478590] Wishlist: add support for compressing files located on an SMB share via dolphin

2024-03-11 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=478590

Méven Car  changed:

   What|Removed |Added

 Status|CONFIRMED   |REPORTED
 Ever confirmed|1   |0

--- Comment #2 from Méven Car  ---
(In reply to spamless.9v5xj from comment #1)
> +1 for this; It seems like compressing files is now disabled period since
> KDE 6 whereas before you could do it if the share was mounted via fstab, so
> technically I'd call it a regression.

Before it was a bug.
You might not ever used it, for small files that would be fine for anything
else that would be very slow.

I will quote myself:

```
A smb share is a network share, meaning all data reading and writing must go
through the network and is slow compared to a local folder.

In order to compress files, we need to read them them all and then write a new
file of a potentially similar size.

If we were to allow compressing from a smb share, you would be copying locally
the file(s) to compress, compress them and uploading the new compressed file to
the server, which would be very noticeably slow and potentially not expected
behavior.

If that’s what you want, you can do it manually.
```

-- 
You are receiving this mail because:
You are watching all bug changes.

[systemsettings] [Bug 482934] "Set for all screens" only affects the current activity

2024-03-09 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=482934

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com
 Status|REPORTED|RESOLVED
 Resolution|--- |INTENTIONAL

--- Comment #1 from Méven Car  ---
> If this is an intended feature, then this is unnecessarily confusing.

I don't think so, the opposite would be true.

All of those Kcm settings are supposed to be only for this activity.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 482958] New: When adjacent don't have the same height, make mouse crossing smarter

2024-03-09 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=482958

Bug ID: 482958
   Summary: When adjacent don't have the same height, make mouse
crossing smarter
Classification: Plasma
   Product: kwin
   Version: master
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: multi-screen
  Assignee: kwin-bugs-n...@kde.org
  Reporter: meve...@gmail.com
  Target Milestone: ---

SUMMARY

Say you have screens like so:

[  1 ]|2|
| |

The screen 1 is horizontal, right screen 2 is vertical.

When moving the mouse from screen from 1 to 2, compute the relative height
percent the mouse crossed over on screen 1 and use this percent to position the
mouse on screen 2.

This will allow when crossing from the bottom of 1 to end up at the bottom of
screen 2, making much easier to rich the bottom left of 2, which normally would
require the user to slide horizontally and then vertically.

An extension could be to apply a "transfer" of mouse when the mouse is touching
the bottom edge of screen 1, where we could follow the mouse direction and
project it until reaching for screen 2 and vice-versa.

This is highly unorthodox and would require some level of optionality.

SOFTWARE/OS VERSIONS
Operating System: Kubuntu 23.10
KDE Plasma Version: 6.0.80
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.3
Kernel Version: 6.5.0-21-generic (64-bit)
Graphics Platform: Wayland

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 481952] On X11, panels are hidden after minimizing Dolphin window

2024-03-08 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=481952

Méven Car  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/syst
   ||em/dolphin/-/commit/95551f4
   ||4922670be5c4d670833c2d4e398
   ||657495
 Resolution|--- |FIXED

--- Comment #26 from Méven Car  ---
Git commit 95551f44922670be5c4d670833c2d4e398657495 by Méven Car, on behalf of
Nicolas Fella.
Committed on 08/03/2024 at 18:29.
Pushed by meven into branch 'master'.

Remove unneeded code for toggeling dockwidget visibility

QDockWidget::toggleViewAction::toggled is emitted when minimizing
the application window on X11 (https://bugreports.qt.io/browse/QTBUG-48161
potentially related). This will cause the dockwidget to be hidden when
minimizing the window.

We don't actually seem to need that connection, triggering the action
(via shortcut or menu) seems to correctly show/hide the dockwidget
without it

M  +0-2src/dolphinmainwindow.cpp

https://invent.kde.org/system/dolphin/-/commit/95551f44922670be5c4d670833c2d4e398657495

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 477187] Option to disable calculating the size and number of items in child directories

2024-03-07 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=477187

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/syst
   ||em/dolphin/-/commit/815bb8d
   ||514d70d79ef5f3fd7fffa95850f
   ||761d55
 Status|ASSIGNED|RESOLVED

--- Comment #9 from Méven Car  ---
Git commit 815bb8d514d70d79ef5f3fd7fffa95850f761d55 by Méven Car, on behalf of
Nico Kreipke.
Committed on 07/03/2024 at 15:11.
Pushed by meven into branch 'master'.

Add option to completely disable directory size counting

Dolphin shows the size of directories by listing their contents, which
for some users might cause unwanted load on the file system.
Depending on the size of the subdirectories in question and how the
storage is accessed, this might cause noticeable delays and even
freezing.

This commit adds a new option under "View -> Content Display" that
enables users to set "Folder size:" to "No size", completely disabling
directory size counting. Directory size counting is still enabled by
default.

As a third option for "Folder size" is added, the DirectorySizeCount
boolean setting is replaced with a DirectorySizeMode enum setting. The
old setting is migrated using a kconf_update script.
GUI:

M  +4-1doc/index.docbook
M  +2-0src/CMakeLists.txt
M  +2-1src/kitemviews/kfileitemlistwidget.cpp
M  +4-3src/kitemviews/kfileitemmodel.cpp
M  +2-2src/kitemviews/kfileitemmodelrolesupdater.cpp
M  +14   -3src/settings/dolphin_contentdisplaysettings.kcfg
A  +10   -0src/settings/dolphin_directorysizemode.py
A  +9-0src/settings/dolphin_directorysizemode.upd
M  +19   -11   src/settings/viewmodes/contentdisplaytab.cpp
M  +1-0src/settings/viewmodes/contentdisplaytab.h

https://invent.kde.org/system/dolphin/-/commit/815bb8d514d70d79ef5f3fd7fffa95850f761d55

-- 
You are receiving this mail because:
You are watching all bug changes.

[dolphin] [Bug 480111] Deleting a symlink is impossible if the disk of the target is close to full

2024-03-06 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=480111

Méven Car  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 CC||meve...@gmail.com
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Méven Car  ---
The issue is the trash used is not on the correct drive.
Trash are supposed to be per-drive.

As a workaround, you can directly delete it using SHIFT+DELETE.

Could detail you mount configuration, for instance with the output of `mount`
command?
Are you file-system using btrfs?

-- 
You are receiving this mail because:
You are watching all bug changes.

  1   2   3   4   5   6   7   8   9   10   >