From 820f57f9605c6342211064efba9d7e069d6c1fe5 Mon Sep 17 00:00:00 2001 From: klemek Date: Fri, 8 Jan 2021 16:02:43 +0100 Subject: [PATCH] updated README.md --- README.md | 13 +++++++++++-- src/main.py | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3b14c1f..94b9df9 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,14 @@ When you need statistics about your discord server * `%help (command)` - info about commands * `%info` - version and uptime -* `%emotes` - gives you a full ranking of the server emotes by usage - * Be more specific by adding some `@member` or `#channel` in arguments +* `%emotes` : Rank emotes by their usage + * arguments: + * @member : filter for one or more member + * #channel : filter for one or more channel + * : top emojis, default is 20 + * all : list all common emojis in addition to this guild's + * members : show top member for each emote + * Example: `%emotes 10 all #mychannel1 #mychannel2 @user` ## Running this bot @@ -46,6 +52,9 @@ python3 src/main.py ## Changelog +* **(WIP)v1.6**: + * more scans : `%full`, `%freq`, `%comp`, `%other` + * huge bug fix * **v1.5**: * top emotes * bug fix diff --git a/src/main.py b/src/main.py index b271528..962d4e1 100644 --- a/src/main.py +++ b/src/main.py @@ -12,7 +12,7 @@ emojis.load_emojis() bot = Bot( "Discord Analyst", # name - "1.6", # version + "1.6(wip)", # version alias="%", # respond to '|command' messages ) bot.log_calls = True