From d3059af815130f102dd97cb1d1e5030920754105 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 10 May 2021 21:28:07 +0100 Subject: 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 --- src/command/search.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/command') 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(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), ))); -- cgit v1.3.1