SUMMARY Any servicemenus that aren't the built in ones don't appear to work or show up in dolphin's context menus. They show up in preferences and if you right-click on that servicemenu's .desktop file, but that's it. In addition, right clicking on a servicemenu's .desktop file and selecting its context menu action crashes Dolphin. STEPS TO REPRODUCE 1. Open Dolphin with custom servicemenus installed in ~/.local/share/kio/servicemenus 2. Right click in any situation where the right click menu should show a custom servicemenu OBSERVED RESULT Servicemenus are absent from right click menu unless rightclicking on the servicemenu file itself Servicemenus show up in the configure>context menu tab and can be managed from there, but changing any settings there for any non-builtin servicemenus doesn't appear to have any effect. EXPECTED RESULT Servicemenus show up in context menus like they do in previous releases of Dolphin. SOFTWARE/OS VERSIONS OS: Arch Linux KDE Plasma: Plasma 6 Alpha (using latest packages available from kde-unstable repo) KDE Plasma Version: 5.27.80 KDE Frameworks Version: 5.245.0 Qt Version: 6.6.0
Same issue for me . In addition dolphin-plugins are installed but servicemenus also missing . KDE Plasma Version: 5.27.80 KDE Frameworks Version: 5.245.0 Dolphin 24.01.75. I had the same problem with KF5 and dolphin 23.08, but I found a patch on kdeinvent (merge request) which resolved the issue. Unfortunately I can no longer find this patch. If i remember, it was related to a mime-type problem.
This is a regression from https://invent.kde.org/frameworks/kio/-/commit/0eb24754b5e3fb0025889bca1fca826f45961254
A possibly relevant merge request was started @ https://invent.kde.org/frameworks/kio/-/merge_requests/1505
Git commit 2f4677d5fa1bebe096c83216a20c4141c2605fc4 by Nicolas Fella. Committed on 10/12/2023 at 17:02. Pushed by nicolasfella into branch 'master'. Fix loading desktopfile-based service actions The code before 0eb24754b5e3fb0025889bca1fca826f45961254 would check if (isBuiltin || !serviceAction.noDisplay()) with the latter part getting lost in the change. This results in olny builtin actions getting picked. Since the assumption seems to be that actions are never noDisplay we can drop the entire check M +21 -23 src/widgets/kfileitemactions.cpp M +2 -2 src/widgets/kfileitemactions_p.h https://invent.kde.org/frameworks/kio/-/commit/2f4677d5fa1bebe096c83216a20c4141c2605fc4
Thank you so much. I'm going to try it