A free Open Source desktop 2FA Application.
- 6/8 Digit Support
- 30/60/90/120 Token Refresh Rate
- SHA1/SHA256/SHA512 Algorithm
- WA import support
- Linux, Mac and Windows Support
- Dark Mode
- External Account Backups and Syncing
- Account Colour Picker
- Folder Organisation
- Additional Import Support
- Mobile Support
Due to Tauri using SSL v1 on older builds of Ubuntu, I've decided to build the linux release using Ubuntu 22.04, using SSL v3. I cannot guarantee full compatibility on older versions of Linux with this build, however custom builds should work. Just be aware of security concerns with SSLv1.
- RustRover
- VS Code + Volar + Tauri + rust-analyzer
Since TypeScript cannot handle type information for .vue
imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in .vue
imports (for example to get props validation when using manual h(...)
calls), you can enable Volar's Take Over mode by following these steps:
- Run
Extensions: Show Built-in Extensions
from VS Code's command palette, look forTypeScript and JavaScript Language Features
, then right click and selectDisable (Workspace)
. By default, Take Over mode will enable itself if the default TypeScript extension is disabled. - Reload the VS Code window by running
Developer: Reload Window
from the command palette.
You can learn more about Take Over mode here.
Frontend npm run test
Backend in src-tauri directory cargo test -- --test-threads=1
limited to a single thread due to database tests.