Feat: work on metadata and packaging
This commit is contained in:
@@ -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)]
|
||||
|
||||
@@ -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(""),
|
||||
|
||||
Reference in New Issue
Block a user