summaryrefslogtreecommitdiff
path: root/src/nautilus-tracker-utilities.h
Commit message (Collapse)AuthorAgeFilesLines
* test-nautilus-search-engine-tracker: Setup connection proactivelyCorey Berla2022-12-281-0/+3
| | | | | Now that the tracker miner fs connection is async we have to set it proactively or the test fails.
* tracker: Setup miner connection upon application startCorey Berla2022-12-281-0/+1
| | | | | | | Now that we have tracker connecting in an async fashion, let's proactively connect to tracker when the application is launched. We pretty heavily rely on tracker so there's a good chance we'll be connecting at some point anyways.
* tracker-utilities: Drop unused nautilus_tracker_get_miner_fs_busnameCorey Berla2022-12-281-1/+0
|
* Limit starred files to within user's home directorySam Thursfield2020-09-021-2/+0
| | | | | | | | | Previously starred files were limited to directories indexed by Tracker. Since the 'Port to Tracker 3' commit this is no longer the case. However, to avoid unbounded growth in the starred files database we want to prevent starring of network locations and removable devices for now as these entries might go stale and we don't have any way to clean them up.
* Use Tracker Miners inside Flatpak when not available on the hostSam Thursfield2020-09-021-1/+5
| | | | | | | This means the Nautilus flatpak will be able to use Tracker on systems which don't have Tracker 3 available on the host. It comes at a cost of increased resource consumption inside the Flatpak due running an extra indexer process there.
* files-view: Use tracked directories for starCarlos Soriano2019-02-041-0/+26
We were using the xdg directories to check whether we can star a file or not, since the star feature only works on directories that are tracked by tracker. Tracker is usually shipped in distributions tracking the xdg-directories, so we check that as a stop gap solution for 3.30 since we didn't have time to actually query what directories tracker is tracking and match that. This work makes it so that we show the star action on tracked directories.