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
2 changes: 1 addition & 1 deletion docs/cli/patrons.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Lists the individuals on the Patron tier from &lt;<https://en.dev/patrons.json>>
The list refreshes daily; supporting terminals will render each patron's
name as a clickable link via OSC 8 hyperlinks.

To appear here, become a patron at &lt;<https://en.dev/sponsor>>.
To appear here, become a patron at &lt;<https://en.dev>>.

## Flags

Expand Down
2 changes: 1 addition & 1 deletion man/man1/mise.1
Original file line number Diff line number Diff line change
Expand Up @@ -1756,7 +1756,7 @@ Lists the individuals on the Patron tier from <https://en.dev/patrons.json>.
The list refreshes daily; supporting terminals will render each patron's
name as a clickable link via OSC 8 hyperlinks.

To appear here, become a patron at <https://en.dev/sponsor>.
To appear here, become a patron at <https://en.dev>.
.PP
\fBUsage:\fR mise patrons [OPTIONS]
.PP
Expand Down
2 changes: 1 addition & 1 deletion mise.usage.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ cmd outdated help="Shows outdated tool versions" {
arg "[TOOL@VERSION]…" help="Tool(s) to show outdated versions for\ne.g.: node@20 python@3.10\nIf not specified, all tools in global and local configs will be shown" required=#false var=#true
}
cmd patrons help="Show the individuals supporting mise as Patron-tier members" {
long_help "Show the individuals supporting mise as Patron-tier members\n\nLists the individuals on the Patron tier from <https://en.dev/patrons.json>.\nThe list refreshes daily; supporting terminals will render each patron's\nname as a clickable link via OSC 8 hyperlinks.\n\nTo appear here, become a patron at <https://en.dev/sponsor>."
long_help "Show the individuals supporting mise as Patron-tier members\n\nLists the individuals on the Patron tier from <https://en.dev/patrons.json>.\nThe list refreshes daily; supporting terminals will render each patron's\nname as a clickable link via OSC 8 hyperlinks.\n\nTo appear here, become a patron at <https://en.dev>."
after_long_help "Examples:\n\n $ mise patrons\n $ mise patrons -J\n $ mise patrons --refresh"
flag "-J --json" help="Output in JSON format"
flag --refresh help="Bypass the local cache and re-fetch"
Expand Down
4 changes: 2 additions & 2 deletions src/cli/patrons.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use crate::{dirs, duration, file};
/// The list refreshes daily; supporting terminals will render each patron's
/// name as a clickable link via OSC 8 hyperlinks.
///
/// To appear here, become a patron at <https://en.dev/sponsor>.
/// To appear here, become a patron at <https://en.dev>.
#[derive(Debug, clap::Args)]
#[clap(verbatim_doc_comment, after_long_help = AFTER_LONG_HELP)]
pub struct Patrons {
Expand Down Expand Up @@ -44,7 +44,7 @@ struct Patron {
}

const PATRONS_URL: &str = "https://en.dev/patrons.json";
const SPONSOR_URL: &str = "https://en.dev/sponsor";
const SPONSOR_URL: &str = "https://en.dev";
const CACHE_TTL: Duration = duration::DAILY;

impl Patrons {
Expand Down
Loading