From 00f31d21e444c0b7a2b406f237032a84bdaec679 Mon Sep 17 00:00:00 2001 From: Jan Krag Date: Wed, 17 Feb 2021 22:40:22 +0100 Subject: [PATCH] Cleanup --- README.md | 1 - chat.sh | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ceeef6a..d492531 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,6 @@ Every chat message is an empty commit to the repo, and is immediately pushed to Maybe slightly in order of importance - but not necessarily order of implementation. I am doing this 95% for fun, so features will get added if, where and when I feel inspired: * [Support sending file attachments](https://github.com/JKrag/GitSlick/issues/1). -* [Support multi-line messages](https://github.com/JKrag/GitSlick/issues/2) * [Dockerize the chat runtime](https://github.com/JKrag/GitSlick/issues/3) * [Private message support, just for the fun of it](https://github.com/JKrag/GitSlick/issues/4) * [Support running in split-screen terminal](https://github.com/JKrag/GitSlick/issues/5) diff --git a/chat.sh b/chat.sh index 3d4ea90..70149c7 100755 --- a/chat.sh +++ b/chat.sh @@ -22,11 +22,11 @@ welcome() { echo -e "${CYAN}Welcome to GitSlick, the Git based miniature chat app.${RC}" echo commands - echo "Anything else is treated as a chat message. It will be commited to current dir git repo and pushed immediately to origin" - echo "with NO safety checks or error handling". + echo -e "Anything else is treated as a chat message. It will be commited to current dir git repo and pushed immediately to origin" + echo -e "with NO safety checks or error handling". echo - echo "NOTE: Currently only really supports single line messages. Behaviour undefined if pasting multiline content." - echo "But you can now use the ${GREEN}/post${RC} feature if you want to send multiline content." + echo -e "NOTE: Currently only really supports single line messages. Behaviour undefined if pasting multiline content." + echo -e "But you can now use the ${GREEN}/post${RC} feature if you want to send multiline content." echo echo -e "You are currenty in folder ${RED}$(pwd)${RC}" echo -e "And pushing to ${RED}$(git remote get-url origin --push)${RC}"