1
0

Compare commits

..

No commits in common. "d0be5447fa77c83cdb535e229029eb6c50f444bb" and "c8b905c40211e068cd3ad2899fab89f70c864474" have entirely different histories.

4 changed files with 9 additions and 82 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2024-2025 Jon Michael Aanes
Copyright (c) 2024 Jon Michael Aanes
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -17,14 +17,9 @@ your organization's payment plan.
Uses [`python-fuse`](https://github.com/libfuse/python-fuse) library.
## Features
The feature set is mainly aimed towards giving a better writing experience in
Favro. Management and organization features have been left out.
Features:
- Access collections and cards in a file hierarchy.
- Local access to cards in todolist.
- Read card features:
- Title
- Description
@ -42,10 +37,10 @@ Features:
Limitations:
- Only cards in todolist is fetched at the moment.
- Tasks (checklists on cards) cannot be updated or changed.
- Images cannot be updated or changed.
- You cannot create new cards, nor any other files.
- Collection order is not presented.
## Usage
@ -56,36 +51,6 @@ Limitations:
[`python-fuse`](https://github.com/libfuse/python-fuse) implements a whole
bunch automatically.)
Use `umount` to unmount the mounted directory again.
### Directory structure and latency
Directory structure is something like:
```
mount
-> Collection A
-> CARD-101
-> CARD-111
-> ...
-> Collection B
-> CARD-201
-> CARD-221
-> ...
-> ...
```
Some programs like Obsidian eagerly load and cache unneeded files in memory,
which can reduce performance when those files are fetched over a network. You
can limit this by configuring favro-sync to only expose individual collections
by adding a `FAVRO_COLLECTION_FILTER` secret containing allowed collection
names, like so:
```
Collection A
Collection B
```
## Architecture
- `FavroFuse`
@ -105,12 +70,12 @@ Following features are work in progress:
3. Remove all TaskList's except for the latest (how to determine latest?)
4. That's three requests just to save a freaking list of tasks!
- [ ] Frontmatter: Writable Dependencies.
- [ ] Usability: Richer directory structure
- [ ] Usability: Allow users to toggle Obsidian mode, instead of being default.
- [ ] Precision: Get the correct last-modified date.
- [ ] Performance: Improve cache behaviour. User and tags can have much longer cache times.
- [ ] Performance: Parallelize requests.
* Paginated pages can be easily parallelize.
- [X] Usability: Richer directory structure
- [X] Frontmatter: Arbitrary structured data (Custom Fields)? Read-only.
- [X] Frontmatter: Readable Dependencies. As vault links in Obsidian mode.
@ -137,7 +102,7 @@ Full list of requirements:
```
MIT License
Copyright (c) 2024-2025 Jon Michael Aanes
Copyright (c) 2024 Jon Michael Aanes
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -297,10 +297,7 @@ class FavroFuse(fuse.Fuse):
card_updated = self.formatter.parse_card_contents(contents_str)
self.favro_client.update_card_contents(card.card_id, card_updated)
try:
self.wiped_cards.remove(file_system_item.seq_id)
except KeyError:
pass
self.wiped_cards.remove(file_system_item.seq_id)
# Return amount written
return len(written_buffer)

View File

@ -22,14 +22,9 @@ your organization's payment plan.
Uses [`python-fuse`](https://github.com/libfuse/python-fuse) library.
## Features
The feature set is mainly aimed towards giving a better writing experience in
Favro. Management and organization features have been left out.
Features:
- Access collections and cards in a file hierarchy.
- Local access to cards in todolist.
- Read card features:
- Title
- Description
@ -47,10 +42,10 @@ Features:
Limitations:
- Only cards in todolist is fetched at the moment.
- Tasks (checklists on cards) cannot be updated or changed.
- Images cannot be updated or changed.
- You cannot create new cards, nor any other files.
- Collection order is not presented.
## Usage
@ -61,36 +56,6 @@ Limitations:
[`python-fuse`](https://github.com/libfuse/python-fuse) implements a whole
bunch automatically.)
Use `umount` to unmount the mounted directory again.
### Directory structure and latency
Directory structure is something like:
```
mount
-> Collection A
-> CARD-101
-> CARD-111
-> ...
-> Collection B
-> CARD-201
-> CARD-221
-> ...
-> ...
```
Some programs like Obsidian eagerly load and cache unneeded files in memory,
which can reduce performance when those files are fetched over a network. You
can limit this by configuring favro-sync to only expose individual collections
by adding a `FAVRO_COLLECTION_FILTER` secret containing allowed collection
names, like so:
```
Collection A
Collection B
```
## Architecture
- `FavroFuse`
@ -110,12 +75,12 @@ Following features are work in progress:
3. Remove all TaskList's except for the latest (how to determine latest?)
4. That's three requests just to save a freaking list of tasks!
- [ ] Frontmatter: Writable Dependencies.
- [ ] Usability: Richer directory structure
- [ ] Usability: Allow users to toggle Obsidian mode, instead of being default.
- [ ] Precision: Get the correct last-modified date.
- [ ] Performance: Improve cache behaviour. User and tags can have much longer cache times.
- [ ] Performance: Parallelize requests.
* Paginated pages can be easily parallelize.
- [X] Usability: Richer directory structure
- [X] Frontmatter: Arbitrary structured data (Custom Fields)? Read-only.
- [X] Frontmatter: Readable Dependencies. As vault links in Obsidian mode.
""".strip()