summaryrefslogtreecommitdiff
path: root/src/nautilus-module.c
AgeCommit message (Collapse)Author
2024-03-30module: Call module shutdown() in teardown()Corey Berla
Each module's shutdown() should have been called in unload(), but as we know, unload() never ended up getting called. Instead call it during teardown() Fixes: https://gitlab.gnome.org/GNOME/nautilus/-/issues/1971
2024-03-30module: Store the actual module rather than just the path nameCorey Berla
2024-03-30module: Remove logic for unloading modulesCorey Berla
Our modules never would reach the unload point anyways and GModule doesn't actually unload the module, so let's remove anything related to unloading to simplify. Related: https://gitlab.gnome.org/GNOME/glib/-/issues/667 Related: https://gitlab.gnome.org/GNOME/glib/-/commit/72df62600d1ab473125b6e8beb998e71aa63701e
2023-11-16general: remove eel-debugPeter Eisenmann
Oversight from https://gitlab.gnome.org/GNOME/nautilus/-/merge_requests/1319 where this was forgotten.
2023-11-01application: cleanup modules on finalizingPeter Eisenmann
Explicitly clear modules from NautilusApplication, so they don't need cleanup through the eel shutdown mechanism.
2022-08-16general: Use parameter type list, even if function takes noneTimo
Newer compiler versions (i.e. Clang 15) failed to compile nautilus, because the declaration did not match the function definition. See: https://reviews.llvm.org/D122895 Fixes #2378
2022-07-20module: Keep a list of currently installed modulesCorey Berla
2022-07-20module: Add environment variable NAUTILUS_DISABLE_PLUGINSCorey Berla
When NAUTILUS_DISABLE_PLUGINS == TRUE, do not load plugins. Fixes: https://gitlab.gnome.org/GNOME/nautilus/-/issues/1779
2016-08-29general: run uncrustifyCarlos Soriano
And make the style of Nautilus the same for all files. Hopefully we can fix all the style issues we can find in the next days, so expect a little of movement on this. https://bugzilla.gnome.org/show_bug.cgi?id=770564
2016-04-25general: merge libnautilus-private to srcCarlos Soriano
And fix make distcheck. Although libnautilus-private seem self contained, it was actually depending on the files on src/ for dnd. Not only that, but files in libnautilus-private also were depending on dnd files, which you can guess it's wrong. Before the desktop split, this was working because the files were distributed, but now was a problem since we reestructured the code, and now nautilus being a library make distcheck stop working. First solution was try to fix this inter dependency of files, but at some point I realized that there was no real point on splitting some of those files, because for example, is perfectly fine for dnd to need to access the window functions, and it's perfectly fine for the widgets in the private library to need to access to all dnd functions. So seems to me the private library of nautilus is somehow an artificial split, which provides more problems than solutions. We needed libnautilus-private to have a private library that we could isolate from extensions, but I don't think it worth given the problems it provides, and also, this not so good logical split. Right now, since with the desktop split we created a libnautilus to be used by the desktop part of nautilus, extensions have access to all the API of nautilus. We will think in future how this can be handled if we want. So for now, merge the libnautilus-private into src, and let's rethink a better logic to split the code and the private parts of nautilus than what we had. Thanks a lot to Rafael Fonseca for helping in get this done. https://bugzilla.gnome.org/show_bug.cgi?id=765543