From 6772658bf8234fd8905cce8fdf576c3ab0371bfc Mon Sep 17 00:00:00 2001 From: Mike Dilger Date: Fri, 13 Dec 2024 07:19:39 +1300 Subject: [PATCH] Add links to our chat --- README.md | 2 ++ gossip-bin/src/ui/mod.rs | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/README.md b/README.md index e127b31fd..7a96afa2e 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,8 @@ MIT license ([LICENSE MIT](LICENSE.txt) or ) All contributions welcome, please check the [development guidelines](docs/DEVELOPING.md) before starting to code. +Please join our [chat](https://chachi.chat/groups.0xchat.com/R2yYwhsTcKO2b65i). + Anyone interested in replacing the GUI with something much better, or keeping it as egui but making it much better, would be greatly appreciated. The project was split into two crates (lib and bin) to make it easier to build a different UI onto the backend. Any contribution intentionally submitted for inclusion in the work by you, shall be licensed as above, without any additional terms or conditions. diff --git a/gossip-bin/src/ui/mod.rs b/gossip-bin/src/ui/mod.rs index 5c84d9ff0..53af2c085 100644 --- a/gossip-bin/src/ui/mod.rs +++ b/gossip-bin/src/ui/mod.rs @@ -2545,6 +2545,13 @@ fn force_login(app: &mut GossipUi, ctx: &Context) { "issue on Github", "https://github.com/mikedilger/gossip/issues" ); + ui.label( + RichText::new("or join our").weak() + ); + ui.hyperlink_to( + "chat", + "https://chachi.chat/groups.0xchat.com/R2yYwhsTcKO2b65i" + ); }); }); });