diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2021-05-10 21:28:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-10 21:28:07 +0100 |
| commit | d3059af815130f102dd97cb1d1e5030920754105 (patch) | |
| tree | d921c773b198dab5752ef6620e1038b12185a590 /src | |
| parent | Increase number of optimizations on release builds. (#101) (diff) | |
| download | atuin-d3059af815130f102dd97cb1d1e5030920754105.zip | |
Release v0.7.0 (#103)
* Release v0.7.0
- Update all the crate versions
- Update the demo gif
- Write a changelog
- Adjust the title of the search screen (has the old name still)
- Adjust the colours of the quick-jump numbers (sadly invisible on some
colour schemes as dark grey :/)
* Update README, default config file, docs
* Link usernames
* Trigger release workflow upon release creation, as well as tags
Diffstat (limited to 'src')
| -rw-r--r-- | src/command/search.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/command/search.rs b/src/command/search.rs index 2dcdecc8..d3807bca 100644 --- a/src/command/search.rs +++ b/src/command/search.rs @@ -103,10 +103,7 @@ impl State { None => Span::raw(" "), Some(diff) => { if 0 < diff && diff < 10 { - Span::styled( - format!(" {} ", diff), - Style::default().fg(Color::DarkGray), - ) + Span::raw(format!(" {} ", diff)) } else { Span::raw(" ") } @@ -275,7 +272,7 @@ fn draw<T: Backend>(f: &mut Frame<'_, T>, history_count: i64, app: &mut State) { .split(top_chunks[1]); let title = Paragraph::new(Text::from(Span::styled( - format!("A'tuin v{}", VERSION), + format!("Atuin v{}", VERSION), Style::default().add_modifier(Modifier::BOLD), ))); |
