Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ listed under a **Changed** or **Removed** heading.
- **`--font` no longer tells its readers to edit `src/art.rs`.** It printed a
note meant for contributors to everyone who ran it.

- **The two guidance messages line their columns up.** `could not detect a
GitHub user` put one of its three suggestions two columns out, and the
`--demo` line — the one that needs no account at all — came last. The
missing-file message tried to align against an interpolated path, which
cannot be done, and repeated back a path the reader had just typed.


- **`brew install vyncint/tap/mossaic`.** The formula is generated by the
release itself from the checksums the archives produced, so it cannot
Expand Down
10 changes: 5 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ fn main() {
if !Path::new(path).is_file() {
fail(&format!(
"no calendar file at {path}\n\n \
mossaic-art TEXT --snapshot {path} write one\n \
mossaic --demo a sample year instead"
mossaic-art TEXT --snapshot FILE write one\n \
mossaic --demo a sample year instead"
));
}
}
Expand Down Expand Up @@ -396,9 +396,9 @@ fn parse_args() -> Option<Invocation> {
let login = login.or_else(github::whoami).unwrap_or_else(|| {
fail(
"could not detect a GitHub user.\n\n \
mossaic <username> chart someone by name\n \
gh auth login authenticate, then just `mossaic`\n \
mossaic --demo see what it looks like first",
mossaic <username> chart someone by name\n \
mossaic --demo see what it looks like first\n \
gh auth login authenticate, then just `mossaic`",
)
});
Some(Invocation {
Expand Down