aboutsummaryrefslogtreecommitdiffstats
path: root/crates (follow)
Commit message (Collapse)AuthorAge
* daemon/api: Remove `add_history`Benedikt Peetz4 days
| | | | | This request is a footgun, as it will leave commands that never return (e.g. `shutdown`, `exit`, etc.) unrecorded.
* crates/turtle/client/history: Set a higher rpc message limitBenedikt Peetz4 days
| | | | The history message can become quite large.
* crates/daemon/api/history: Remove pointless sleepBenedikt Peetz5 days
| | | | That was forgotten here during testing.
* crates/daemon/aclient/history: Don't panic on negative command durationBenedikt Peetz5 days
| | | | The old atuin code, used a negative duration as no-duration sentinel.
* crates/client/daemon/status: Fail, when connection to daemon failsBenedikt Peetz5 days
|
* crates/client: Rename to turtle-clientBenedikt Peetz6 days
| | | | `turtle` is already taken on crates.io
* treewide: Upgrade and update dependenciesBenedikt Peetz6 days
| | | | | `rusty_paseto` was left explicitly on v0.8 because the v0.10 is no longer compatible with `rusty_paserk`.
* treewide: Update Cargo.toml metadataBenedikt Peetz6 days
|
* treewide: Fix most `cargo check` warningsBenedikt Peetz6 days
| | | | The remaining ones, require actual work to resolve.
* crates/turtle/list: Restore the history listing code from atuinBenedikt Peetz6 days
| | | | _That_ was actually useful to have.
* feat: Finalize design for fish-shell integrationBenedikt Peetz2026-07-24
|
* chore: Last big refactoringBenedikt Peetz2026-07-20
|
* chore: CommitBenedikt Peetz2026-07-20
|
* chore: CommitBenedikt Peetz2026-07-20
|
* chore(server): Remove warningsBenedikt Peetz2026-07-20
|
* chore: Remove some warnings (cargo fix)Benedikt Peetz2026-07-20
|
* chore(atuin): Remove unused crate dependenciesBenedikt Peetz2026-07-20
|
* chore: All compilesBenedikt Peetz2026-07-20
|
* chore: CommitBenedikt Peetz2026-07-20
|
* chore: CommitBenedikt Peetz2026-07-20
|
* chore: CommitBenedikt Peetz2026-07-20
|
* chore: Move more stuff out of atuin-clientBenedikt Peetz2026-07-09
|
* chore: Add more thingsBenedikt Peetz2026-07-09
|
* chore: Separate daemon, client, server, and lib into cratesBenedikt Peetz2026-07-09
|
* fix(client/sync): Pass through precise error on `SyncError::WrongKey`Benedikt Peetz2026-06-14
|
* fix(client/settings): Trim sync user_id and encryption_keyBenedikt Peetz2026-06-14
| | | | | The files might be newline delimited, which we should remove before we try to parse the contents.
* fix({client,server}/settings): Don't fail, when there is no config fileBenedikt Peetz2026-06-13
|
* chore(treewide): Remove glob importsBenedikt Peetz2026-06-13
|
* fix(config): Don't write non-TOML default config filesBenedikt Peetz2026-06-13
|
* chore(daemon): Remove the `autostart` featureBenedikt Peetz2026-06-13
| | | | A service manager should deal with that.
* fix(sqlite): Ensure that database migration runs sequentiallyBenedikt Peetz2026-06-13
| | | | Otherwise, we might run migration from multiple db-connections.
* chore(treewide): Also fix all `clippy` warningsBenedikt Peetz2026-06-13
|
* chore(treewide): Fix some of `clippy`'s errorBenedikt Peetz2026-06-13
| | | | Just a run of `cargo clippy --fix`
* chore(treewide): Remove `cargo` warnings to 0Benedikt Peetz2026-06-13
| | | | There are still the `clippy` warnings, but they are for a future date.
* chore(treewide): Cleanup themesBenedikt Peetz2026-06-12
|
* feat(server): Really make users stateless (with tests)Benedikt Peetz2026-06-12
| | | | This commit also remove another load of unneeded features.
* feat(server): Make user stuff statelessBenedikt Peetz2026-06-11
|
* chore(server): Remove the last remnants of the "hub" sync-server thingyBenedikt Peetz2026-06-11
|
* chore(server): Simplify the database supportBenedikt Peetz2026-06-11
|
* chore: Remove all `pub`sBenedikt Peetz2026-06-11
| | | | | They will not be marked by rustc/cargo as unused, and as atuin doesn't expose an API all of them _should_ be `pub(crate)`
* chore: Restore db migrationsBenedikt Peetz2026-06-11
|
* chore: Move everything into one big crateBenedikt Peetz2026-06-11
| | | | | That helps remove duplicated code and rustc/cargo will now also show dead code correctly.
* chore: Somewhat simplify sync codeBenedikt Peetz2026-06-10
|
* chore: Remove more (kinda) useless stuffBenedikt Peetz2026-06-10
|
* chore: Turn all `allow`s into into `expect`sBenedikt Peetz2026-06-10
|
* chore: Remove more useless codeBenedikt Peetz2026-06-10
|
* chore: Remove some unused rust codeBenedikt Peetz2026-06-10
|
* feat: Capture command output + expose to new `atuin_output` tool (#3510)Michelle Tilley2026-06-08
|
* chore: update GitHub app token formatChris Rose2026-06-04
|
* fix: Atuin hangs when attempting to spawn daemon from Ctrl+R invocation (#3502)Michelle Tilley2026-05-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR fixes a shell hang when daemon autostart happens from the interactive search widget. The bash/zsh/fish integrations run `atuin search -i` under command substitution and swap stdout/stderr so the TUI can draw to the terminal while the selected command is captured: ```sh 3>&1 1>&2 2>&3 ``` This leaves fd 3 open in the atuin search process. If search autostarts the daemon, the spawned long-running `atuin daemon start --daemonize` inherits fd 3, the command-substitution pipe, so the shell keeps waiting for EOF until the daemon is killed. The fix: close fd 3 after the swap in the non-tmux bash/zsh/fish paths: ```sh 3>&1 1>&2 2>&3 3>&- ``` Tested on zsh; I still need to confirm for bash and fish. Near as I can tell, the other shell integrations don't need this change. Fixes #3499