mirror of
https://git.sr.ht/~cismonx/bookmarkfs
synced 2025-06-07 19:58:50 +00:00
No description
There's a special kind of bookmark in Firefox known as "separator", which appears as vertical or horizontal bars in the browser. BookmarkFS currently does not support managing separators, but the backend should be aware of their existence, and must not break when one appears. A separator always has a NULL `title` and `fk` in `moz_bookmarks`, so it doesn't break `bookmark_list()` and `bookmark_lookup()`, but breaks `bookmark_check()` since it could be mistaken for a bookmark or bookmark folder with NULL title. Fix by checking the bookmark type in `bookmark_check_cb()`. |
||
---|---|---|
.builds | ||
doc | ||
m4 | ||
src | ||
tests | ||
.gitignore | ||
bookmarkfs.pc.in | ||
configure.ac | ||
COPYING | ||
INSTALL.md | ||
Makefile.am | ||
README.md |
About
BookmarkFS is a FUSE-based pseudo-filesystem which provides an interface to the bookmark data of web browsers.
Currently, the following browsers (and their derivatives) are supported:
- Firefox
- Chromium
Getting Started
See 'INSTALL.md' for instructions on how to build and install BookmarkFS. See the files under 'doc/' for the user manual.
Project homepage: https://www.nongnu.org/bookmarkfs/.
Copying
BookmarkFS is free software, distributed under the terms of the GNU General Public License, either version 3, or any later version of the license. For more information, see the file 'COPYING'.
The user manual and other supporting files in this codebase are distributed under separeate licenses. Refer to the corresponding license notice for details.