Feat: work on metadata and packaging
Some checks failed
Deploy Website / deploy (push) Failing after 4m48s

This commit is contained in:
2026-02-01 14:00:10 +01:00
parent b47c789612
commit ce70251057
12 changed files with 155 additions and 32 deletions

View File

@@ -38,7 +38,7 @@ use settings::Settings;
use state::audio::RefreshRate;
#[derive(Parser)]
#[command(name = "cagire", about = "A step sequencer with Ableton Link support")]
#[command(name = "cagire", version, about = "Forth-based live coding sequencer")]
struct Args {
/// Directory containing audio samples to load (can be specified multiple times)
#[arg(short, long)]

View File

@@ -23,12 +23,18 @@ pub fn render(frame: &mut Frame, area: Rect, ui: &UiState) {
.centered()
.build();
let version_style = Style::new().fg(theme.title.subtitle);
let subtitle_lines = vec![
Line::from(""),
Line::from(Span::styled(
"A Forth Music Sequencer",
Style::new().fg(theme.title.subtitle),
)),
Line::from(Span::styled(
format!("v{}", env!("CARGO_PKG_VERSION")),
version_style,
)),
Line::from(""),
Line::from(Span::styled("by BuboBubo", author_style)),
Line::from(""),