Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-04 | Updated dependencies, removed valid mail check (now done by lettre), and ↵ | Daniel García | |
updated global domains file | |||
2018-09-20 | Update dependencies to point to upstream lettre | Daniel García | |
2018-09-19 | Temp fix for OpenSSL 1.1.1 compatibility | Daniel García | |
2018-09-19 | Updated dependencies | Daniel García | |
2018-09-13 | Updated dependencies and fixed errors | Daniel García | |
2018-08-30 | Initial version of websockets notification support. | Daniel García | |
For now only folder notifications are sent (create, rename, delete). The notifications are only tested between two web-vault sessions in different browsers, mobile apps and browser extensions are untested. The websocket server is exposed in port 3012, while the rocket server is exposed in another port (8000 by default). To make notifications work, both should be accessible in the same port, which requires a reverse proxy. My testing is done with Caddy server, and the following config: ``` localhost { # The negotiation endpoint is also proxied to Rocket proxy /notifications/hub/negotiate 0.0.0.0:8000 { transparent } # Notifications redirected to the websockets server proxy /notifications/hub 0.0.0.0:3012 { websocket } # Proxy the Root directory to Rocket proxy / 0.0.0.0:8000 { transparent } } ``` This exposes the service in port 2015. | |||
2018-08-24 | Updated dependencies, added Travis CI integration and some badges | Daniel García | |
2018-07-21 | Updated dependencies and Docker image to new web-vault | Daniel García | |
2018-07-13 | Bump version to 0.10.00.10.0 | Daniel García | |
2018-07-12 | Implemented U2F, refactored Two Factor authentication, registering U2F ↵ | Daniel García | |
device and authentication should work. Works on Chrome on MacOS with a virtual device. | |||
2018-06-29 | Updated dependencies and rust version | Daniel García | |
2018-06-12 | Updated dependencies and created 'rust-toolchain', to mark a working nightly ↵ | Daniel García | |
to rustup users, and hopefully avoid some nightly breakage. | |||
2018-06-01 | Updated version | Daniel García | |
2018-06-01 | Updated dependencies and removed some warnings from jsonwebtoken | Daniel García | |
2018-06-01 | Update rocket to 0.3.12 | Miroslav Prasil | |
2018-05-21 | Update rocket to 0.3.11 | Miroslav Prasil | |
2018-05-07 | Update dependencies and bundle SQLite with the program, so we have one less ↵ | Daniel García | |
dependency to install separately | |||
2018-04-24 | Updated some dependencies and removed old unused attribute that might create ↵ | Daniel García | |
compile errors | |||
2018-04-18 | Bump the rocket version to compile with current nightly | Miroslav Prasil | |
2018-03-21 | Updated dependencies | Daniel García | |
2018-03-07 | r2d2_diesel is included in diesel since 1.1, so we don't need the ↵ | Daniel García | |
dependencies directly. Same thing with time, included in chrono | |||
2018-03-06 | Updated Cipher API with breaking changes, and included backwards compatibility | Daniel García | |
2018-03-01 | Removed unused test library that broke with latest nightly, and updated ↵ | Daniel García | |
dependencies | |||
2018-02-23 | Fixed cipher import, created missing data structs instead of using generic ↵ | Daniel García | |
Value, and fixed some warnings | |||
2018-02-18 | Reduced Docker final image and updated dependencies | Daniel García | |
2018-02-15 | Upload and download attachments, and added License file | Daniel García | |
2018-02-10 | First working version | Daniel García | |