New Git Hooks Deployed

2021-01-16 Thread Ben Cooksley
Hi Community, This evening we completed the deployment of a significant refactor and rework of the Git hooks that run on Gitlab (invent.kde.org) each time the system receives a push. This moves us away from the `update` hook to the `pre-receive` hook, ports the hooks to Python 3, refactors a numb

Re: Plugin development - old library version keeps being used after recompiling

2021-01-16 Thread Nicolás Alvarez
El sáb, 16 de ene. de 2021 a la(s) 04:50, David Lerch (alemariusne...@gmail.com) escribió: > > Hey, > > I'm starting development of a ThumbCreator-based thumbnailer plugin > based on kffmpegthumbnailer > (https://github.com/dirkvdb/ffmpegthumbnailer/tree/master/kffmpegthumbnailer) > and ffmpegthumb

Re: Plugin development - old library version keeps being used after recompiling

2021-01-16 Thread David Lerch
Hi Méven, I have tried KDE_FORK_SLAVES=1 and it does seem to do something. Ideally that should allow me to run Dolphin under gdb and then set breakpoints in my plugin code on that same gdb instance, right? I haven't had much luck getting gdb to break in my plugin code though. I'm used to using the

Re: Plugin development - old library version keeps being used after recompiling

2021-01-16 Thread Méven
Hi David, Yes there is a cache, so applications don't have to look for plugins on every launch. You can flush it with `kbuildsycoca5`. You may want to launch dolphin with `KDE_FORK_SLAVES=1 dolphin` to avoid forking the kio workers in separate processes. This can help debugging dramatically. Che