From 399899650746c6fa7f480665489d24c5fad5deac Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Mon, 27 Jul 2015 23:50:33 -0400 Subject: [PATCH] Add links to welcome text - Source - cURL endpoint - CLI download - GUI apps --- nerds.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nerds.go b/nerds.go index 509bfe4..9d4a9bf 100644 --- a/nerds.go +++ b/nerds.go @@ -124,7 +124,7 @@ func outputBytes(c net.Conn, m []byte) bool { func handleConnection(c net.Conn) { outputBytes(c, banner) output(c, fmt.Sprintf("\n%sWelcome to write.as!%s\n", colBGreen, noCol)) - output(c, fmt.Sprintf("If this is freaking you out, you can get notified of the %sbrowser-based%s launch\ninstead at https://write.as.\n\n", colBold, noCol)) + output(c, fmt.Sprintf("Our telnet server is open source! https://github.com/writeas/nerds\nOptionally post with %scURL%s: http://cmd.write.as\nOr use our cross-platform %scommand-line client%s: https://write.as/cli.html\nWe won't judge if you crawl back to the GUI: https://write.as/apps\n\n", colBold, noCol, colBold, noCol)) waitForEnter(c)