From 6dc5def29df48ad750719be4acc6508507634f99 Mon Sep 17 00:00:00 2001 From: Kai O'Reilly Date: Fri, 30 Aug 2024 15:31:23 -0700 Subject: [PATCH] rename support to community; more standard and good --- content/{support.md => community.md} | 2 +- main.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) rename content/{support.md => community.md} (72%) diff --git a/content/support.md b/content/community.md similarity index 72% rename from content/support.md rename to content/community.md index fa653f0..c4e666f 100644 --- a/content/support.md +++ b/content/community.md @@ -1,4 +1,4 @@ -For questions and support with Cogent Core, you can use the [#cogentcore](https://gophers.slack.com/archives/C07ENRTB2F7) channel on the [Gophers Slack](https://invite.slack.golangbridge.org). +For questions and support, you can use the [#cogentcore](https://gophers.slack.com/archives/C07ENRTB2F7) channel on the [Gophers Slack](https://invite.slack.golangbridge.org). For bug reports, feature requests, and questions, you can create issues and discussions in our GitHub [repositories](https://github.com/cogentcore). diff --git a/main.go b/main.go index 8184a28..96e3c02 100644 --- a/main.go +++ b/main.go @@ -50,15 +50,15 @@ func main() { }) }) tree.Add(p, func(w *core.Button) { - w.SetText("Sponsor").SetIcon(icons.Favorite) + w.SetText("Community").SetIcon(icons.Forum) w.OnClick(func(e events.Event) { - pg.Context.OpenURL("https://github.com/sponsors/cogentcore") + pg.Context.OpenURL("/community") }) }) tree.Add(p, func(w *core.Button) { - w.SetText("Support").SetIcon(icons.Help) + w.SetText("Sponsor").SetIcon(icons.Favorite) w.OnClick(func(e events.Event) { - pg.Context.OpenURL("/support") + pg.Context.OpenURL("https://github.com/sponsors/cogentcore") }) }) })