diff --git a/help.md b/help.md deleted file mode 100644 index 18e455f..0000000 --- a/help.md +++ /dev/null @@ -1,30 +0,0 @@ -# commands - -Anything sent without a command is assumed to be a new task to be added - -## actions on tasks -- `/add ` - Add a new task -- `/do [id [id [id]...]]` - Do task(s) -- `/priority [id [id [id]...]]` - Set the priority of task(s) -- `/rm [id [id [id]...]]` - Remove task(s) -- `/undo [id [id [id]...]]` - undo task(s) - -### fuzzy actions -- `/fdo ` -- `/fpriority ` -- `/frm ` -- `/fundo ` - -## general -- `/export` - Send all tasks as plaintext -- `/help` - Show help information -- `/ls [filters]` - List tasks -- `/last` - Run the last command sent -- `/marco` - Test if bot is up - - -## /ls filters -- `f[ilter]:` - Tasks must have this text in it -- `!f[ilter]:` - Tasks must **not** have this text in it -- `:show-done` - Show and include done tasks -- `:only-done` - Show only done tasks diff --git a/src/bot.py b/src/bot.py index e6ffb0b..575afa4 100755 --- a/src/bot.py +++ b/src/bot.py @@ -14,7 +14,7 @@ from fuzzywuzzy import process from fuzzywuzzy import fuzz from pydo import Task -VERSION = "v1.1" +VERSION = "v1.1.1" PROPERTY_LAST_COMMAND = "last_command" @@ -388,7 +388,7 @@ def user_help_info(chat_id): with open('help.md') as help_file: text = help_file.read() text += "\ntodo.txt bot for Telegram version {0}".format(VERSION) - text += "\n[View help on GitHub](alvierahman90.github.io/todo.txt_telegram/help.html)" + text += "\n[View help on GitHub](alvierahman90.github.io/todo.txt_telegram/src/help.html)" BOT.sendMessage(chat_id, text, parse_mode='Markdown')