Summary: | Custom KIO plugin for dolphin doesn't load | ||
---|---|---|---|
Product: | [Applications] dolphin | Reporter: | miflab |
Component: | general | Assignee: | Dolphin Bug Assignee <dolphin-bugs-null> |
Status: | RESOLVED INTENTIONAL | ||
Severity: | normal | CC: | emmanuelpescosta099, frank78ac, samrog131 |
Priority: | NOR | ||
Version: | 16.12.2 | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
miflab
2015-08-27 16:50:42 UTC
Thanks for the bug report. This might be a general issue with the preview infrastructure in KDE Frameworks, and not with the Dolphin application. Do thumbnails work for you in the file dialog of, e.g., KWrite, or in Folder View? (In reply to Frank Reininghaus from comment #1) > Do thumbnails work for you in the file dialog of, e.g., KWrite, or in Folder View? Nope, they not work in file dialog and Folder View too. But in the same time thumbnailers from kio-extras, which is VERY similar with my, works great... Oh, I realized. My files installs in /usr/local prfix instead of /usr/lib. So, Dolphin read .desktop file and try to load specified library from /usr/lib/qt/plugins but it installed in /usr/local/lib/plugins. I find similar issue on SO - http://stackoverflow.com/questions/7254976 But in new Plasma we not have anymore kde4-sonfig, how I can do similar thing in plasma? (In reply to miflab from comment #3) > Oh, I realized. > My files installs in /usr/local prfix instead of /usr/lib. So, Dolphin read > .desktop file and try to load specified library from /usr/lib/qt/plugins but > it installed in /usr/local/lib/plugins. > I find similar issue on SO - http://stackoverflow.com/questions/7254976 > But in new Plasma we not have anymore kde4-sonfig, how I can do similar > thing in plasma? cmake -DCMAKE_INSTALL_PREFIX=/usr Tested with the Arch linux ; Qt: 5.5.0 KDE Frameworks: 5.13.0 KDE Applications: 15.08 Compiling with: $ mkdir -p builddir $ cd builddir && cmake .. -DCMAKE_INSTALL_PREFIX=$(kf5-config --prefix) -DCMAKE_BUILD_TYPE=Release -DKDE_INSTALL_USE_QT_SYS_PATHS=ON # make install => -- Installing: /usr/lib/qt/plugins/ffmpegthumb.so -- Installing: /usr/share/kservices5/ffmpegthumb.desktop Seems to work. Yes, this work with -DKDE_INSTALL_USE_QT_SYS_PATHS=ON now, thanks. Sorry for bothering. |