aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin
Commit message (Collapse)AuthorAgeFilesLines
* formattingJesse Luehrs7 days1-2/+4
|
* Merge pull request #169 from robertgzr/code-needleJesse Luehrs7 days2-9/+8
|\ | | | | Support UUIDs and URIs in code command
| * Support UUIDs and URIs in code commandRobert Günzler2024-05-012-9/+8
| | | | | | | | | | | | | | | | | | | | | | | | a864366e60f6e7ae67df91010d7e30f3b1569ac0 changed the implementation of `find_entry` to work on the new `Needle` type, but when calling into it from the `code` subcommand the provided string was only passed as a `Needle::Name` when in fact also UUIDs are allowed. Remedy this by parsing the first argument in the same way as with the `get` command, which also enables passing URIs Signed-off-by: Robert Günzler <r@gnzler.io>
* | add sha256 and sha512 support for totpJonas9 days1-24/+78
|/
* switch from nix to rustixJesse Luehrs2024-04-213-21/+33
|
* don't delete custom fields when editing passwordsJesse Luehrs2024-04-201-3/+4
|
* fix message when editing passwordsJesse Luehrs2024-04-201-1/+1
|
* clippyJesse Luehrs2024-04-203-13/+3
|
* alias `rbw totp` to `rbw code`Jesse Luehrs2024-04-201-1/+4
|
* add --clipboard to rbw codeJesse Luehrs2024-04-202-4/+15
|
* more tests for matchingJesse Luehrs2024-04-201-19/+652
|
* clean up url matching a bit, and implement different match typesJesse Luehrs2024-04-201-89/+103
|
* Merge pull request #132 from proxict/feature/url-matchJesse Luehrs2024-04-202-33/+173
|\ | | | | [WIP] add URI matching for 'rbw get'
| * [WIP] add URI matching for 'rbw get'proxict2024-01-022-33/+173
| |
* | bump depsJesse Luehrs2024-04-202-23/+17
| |
* | Make directories when not daemonizedWim de With2024-01-232-2/+2
|/
* fix error messageJesse Luehrs2024-01-011-1/+1
|
* clippy and fmtJesse Luehrs2024-01-013-32/+33
|
* Merge pull request #137 from soraxas/feat-edit-noteJesse Luehrs2024-01-011-3/+29
|\ | | | | Implements ability to edit notes
| * implements ability to edit notesTin Lai2023-09-211-3/+29
| | | | | | | | Signed-off-by: Tin Lai <oscar@tinyiu.com>
* | fix: cargo fmtarcstur2023-09-031-21/+10
|/
* make display_field more consistentJesse Luehrs2023-08-131-93/+108
| | | | | fix an unnecessary unwrap, and ensure that all field accesses don't display a description and correctly copy to clipboard
* clippyJesse Luehrs2023-07-291-0/+2
|
* clippyJesse Luehrs2023-07-201-10/+16
|
* Fallback to the nop clipboard provider.Benjamin Jacobs2023-07-202-5/+15
|
* more correct websocket notification handlingJesse Luehrs2023-07-192-106/+91
| | | | | | | | | | the servers tend to be fairly chatty with messages, mostly pings and heartbeats of various sorts, and we don't want to sync on all of those. also, the message type in the first array element of the messagepack structure is not the same thing as the UpdateType - that is stored as an argument to the ReceiveMessage invocation, so we need to parse a bit further to get the actual UpdateType. this still just does a full sync on any changes, though.
* reconnect to websockets after every successful syncJesse Luehrs2023-07-182-28/+11
| | | | rather than scattering it around various parts of the code
* clippyJesse Luehrs2023-07-181-1/+1
|
* fix not being able to set notifications_urlJesse Luehrs2023-07-181-0/+4
|
* stop trying to reconnect to notifications so aggressively1.8.0Jesse Luehrs2023-07-182-26/+23
| | | | it adds a bunch of latency to every command otherwise
* fix websockets for self-hosted bitwardenJesse Luehrs2023-07-181-7/+6
|
* make clipboard manipulation happen from the agentJesse Luehrs2023-07-184-33/+63
| | | | | | | | | on x11 systems, you can't just send data to the os to store on the clipboard, you just register which application currently owns the clipboard and then other applications can use ipc to request the owning application to send them the clipboard data. this requires there to be an application still running in order to respond to those requests. luckily, we have one of those available in the form of the agent.
* tweak some messagesJesse Luehrs2023-07-181-7/+4
|
* remove unnecessary lineJesse Luehrs2023-07-181-2/+0
|
* clippy and fmtJesse Luehrs2023-07-165-71/+46
|
* Merge branch 'main' into result-to-clipboardJesse Luehrs2023-07-164-3/+288
|\
| * Merge pull request #123 from troyready/yubikeyJesse Luehrs2023-07-161-0/+1
| |\ | | | | | | add yubikey support
| | * add yubikey supporttroyready2023-06-171-0/+1
| | | | | | | | | | | | | | | This is all that's needed to support Yubikey hardware tokens in OTP mode (https://developers.yubico.com/OTP/)
| * | Cargo format and reconnect websocket on syncBernd Schoolmann2023-04-274-67/+148
| | |
| * | Improve error logging for websocketsBernd Schoolmann2023-04-273-4/+13
| | |
| * | Improve websocket disconnect handlingBernd Schoolmann2023-04-171-1/+3
| | |
| * | Fix panic when websocket endpoint is not availableBernd Schoolmann2023-04-172-3/+3
| | |
| * | Improve error handlingBernd Schoolmann2023-04-172-17/+24
| | |
| * | Restructure codeBernd Schoolmann2023-04-163-129/+136
| | |
| * | Implement basic websocket supportBernd Schoolmann2023-04-083-0/+178
| |/
* / rbw get add flag --clipboard to copy result to clipboardeatradish2023-06-162-66/+157
|/
* sync the db every hour, like other bitwarden clientsJesse Luehrs2023-03-253-9/+41
|
* stop using tokio::select!Jesse Luehrs2023-03-253-54/+106
|
* clippy, fmt, etcJesse Luehrs2023-03-251-6/+21
|
* Undo change to iterations error messageBernd Schoolmann2023-03-261-1/+1
|