diff --git a/README.md b/README.md index 00db249..6bbef43 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,9 @@ You can try it out [here](https://telegram.me/PriceLeechBot). | Command | Usage | Description | | ----------|---------------|-------------------------------------------------------| -| /coin | /coin eth | Request price details about a crypto coin | +| /coin | /coin eth | Request price details about a coin | | /help | /help | Displays the help | +| /start | /start | Displays the welcome message | diff --git a/pom.xml b/pom.xml index f4e77af..5e89542 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ at.chaoticbits cmbot - 0.5.1 + 0.6.0 UTF-8 diff --git a/src/main/kotlin/at/chaoticbits/updateshandlers/Commands.kt b/src/main/kotlin/at/chaoticbits/updateshandlers/Commands.kt index 9b7894e..2697ec7 100644 --- a/src/main/kotlin/at/chaoticbits/updateshandlers/Commands.kt +++ b/src/main/kotlin/at/chaoticbits/updateshandlers/Commands.kt @@ -38,10 +38,12 @@ fun helpCommand(botUsername: String): String = "You can control me by sending the following commands:\n\n" + "*Commands*\n" + "/coin currency *-* Request a coin from CoinMarketCap. *(i.e. /coin eth)*\n" + - "/help *-* Display the current help\n\n" + + "/help *-* Display the current help\n" + + "/start *-* Display the welcome message\n\n" + "*Inline Queries*\n" + "This is the recommended way to request price information. " + - "Just use @$botUsername to search through all coins on CoinMarketCap." + "Just use @$botUsername to search through all coins on CoinMarketCap.\n\n" + + "For more information visit [cmbot](https://github.com/yashino91/cmbot/)"