-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Offline Capabilites #21
Comments
No plans but if you want to give it a shot I think there are a few parts to this: 1/ Change the fetching code to check whether the user is offline (https://developer.mozilla.org/en/docs/Online_and_offline_events) with There's probably more I forgot about around logging in etc. |
Okay, sounds good so far. Testcase:
|
That's an issue with all distributed data stores. E.g. git has merges, couchdb has various conflict resolutions (latest wins) e.g. We'd have to pick one and run with that. A read-only offline version might be a good start. |
How is it currently handled? |
Currently it's newest write wins. |
Oh my ... I think it would be sufficient to have a revision number and allow only writing if I had the last revision number. (OpenStreetMap is doing it that way) By the way ... are secret entries versioned already? |
There's no versioning. The server has very little information - that's a design decision. It's a dumb key value store with auditing and sharing. |
We might just allow editing only when you are online, what do you think? Like this the feature should be not-so-hard? |
There isn't even a concept of "being online" but we could introduce that if you want to give it a go. First though it might be interesting to understand what problems you are hitting> |
I just want to be able to access my passwords when I am offline. |
When I loose the internet connection, I can not view secrets any more.
Are there any plans for offline capabilities? Even for the login?
The text was updated successfully, but these errors were encountered: