···10101111#[derive(ClapArgs, Debug)]
1212pub struct Args {
1313- /// Directory in which tunesdirector will store its local database.
1313+ /// Directory in which tracksync will store its local database.
1414 #[arg(short, long, default_value_t = db::default_database_dir().to_str().unwrap().to_owned())]
1515 pub database_path: String,
16161717- /// A path in which tunesdirector will look for music files.
1717+ /// A path in which tracksync will look for music files.
1818 /// Specify more than one for multiple sources.
1919 #[arg(short, long = "source", value_name = "SOURCE", action = clap::ArgAction::Append)]
2020 pub sources: Option<Vec<String>>,
+1-1
src/cmd/dupes.rs
···5566#[derive(ClapArgs, Debug)]
77pub struct Args {
88- /// Directory in which tunesdirector will store its local database.
88+ /// Directory in which tracksync will store its local database.
99 #[arg(short, long, default_value_t = db::default_database_dir().to_str().unwrap().to_owned())]
1010 pub database_path: String,
1111}
+1-1
src/cmd/filter.rs
···6677#[derive(ClapArgs)]
88pub struct Args {
99- /// Path where to store tunesdirector's database, as well as music files.
99+ /// Path where to store tracksync's database, as well as music files.
1010 #[arg(long)]
1111 pub destination: Option<String>,
1212
+2-2
src/cmd/sync.rs
···12121313#[derive(ClapArgs)]
1414pub struct Args {
1515- /// Path where to look for tunesdirector source data.
1515+ /// Path where to look for tracksync source data.
1616 #[arg(short, long, default_value_t = db::default_database_dir().to_str().unwrap().to_owned())]
1717 pub database_path: String,
18181919- /// Path where to store tunesdirector's database, as well as music files.
1919+ /// Path where to store tracksync's database, as well as music files.
2020 #[arg(long)]
2121 pub destination: Option<String>,
2222