docs, cli: Mention feedback, also via e-mail

This commit is contained in:
Lorenz Leutgeb 2025-02-04 15:07:10 +01:00
parent a723068246
commit a9a4aac322
No known key found for this signature in database
2 changed files with 21 additions and 0 deletions

View File

@ -56,6 +56,16 @@ They can be used as a starting point for further customization.
For running in debug mode, see [HACKING.md](HACKING.md).
## Feedback
If you have feedback, feel free to create issues using `rad issue`, join
[our Zulip][zulip], or email [feedback@radicle.xyz][mail-feedback].
Emails sent to this address are [automatically posted][zulip-help-email] to
[our **public** #feedback channel on Zulip][zulip-feedback], revealing the
[`From` header][rfc2822s3.6.2] (which usually contains your name and email
address). This allows us to discuss your feedback on Zulip, and, if necessary,
respond to you via email.
## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md) and [HACKING.md](HACKING.md) for an
@ -66,3 +76,9 @@ introduction to contributing to Radicle.
Radicle is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) for details.
[zulip]: https://radicle.zulipchat.com/
[zulip-feedback]: https://radicle.zulipchat.com/#narrow/channel/392584-feedback
[zulip-help-email]: https://talently.zulip.com/help/message-a-channel-by-email
[mail-feedback]: mailto:feedback@radicle.xyz
[rfc2822s3.6.2]: https://datatracker.ietf.org/doc/html/rfc2822#section-3.6.2

View File

@ -90,5 +90,10 @@ pub fn run(_options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
term::print("See `rad <command> --help` to learn about a specific command.");
term::blank();
term::print("Do you have feedback?");
term::print(" - Chat <\x1b]8;;https://radicle.zulipchat.com\x1b\\radicle.zulipchat.com\x1b]8;;\x1b\\>");
term::print(" - Mail <\x1b]8;;mailto:feedback@radicle.xyz\x1b\\feedback@radicle.xyz\x1b]8;;\x1b\\>");
term::print(" (Messages are automatically posted to the public #feedback channel on Zulip.)");
Ok(())
}