Skip to content

Commit e435f09

Browse files
committed
Increment version and add new config variables
1 parent 87bf3d0 commit e435f09

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8+
# v2.10.0
9+
10+
### Added
11+
- `anonreply` command to anonymously reply to the recipient.
12+
The username of the anonymous user defaults to the `mod_tag` (the footer text of a mod reply). The avatar defaults the guild icon url. However you can change both of these via the `anon_username` and `anon_avatar_url` config variables.
13+
14+
### Changed
15+
Your bot now logs all messages sent in a thread channel, including discussions that take place. You can now toggle to view them in the log viewer app.
16+
817
# v2.9.4
918
Fixed a small bug due to a typo.
1019

bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
SOFTWARE.
2323
"""
2424

25-
__version__ = '2.9.4'
25+
__version__ = '2.10.0'
2626

2727
import asyncio
2828
import uvloop

core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class ConfigManager:
1111
'mention', 'disable_autoupdates', 'prefix',
1212
'main_category_id', 'sent_emoji', 'blocked_emoji',
1313
'thread_creation_response', 'twitch_url', 'mod_color',
14-
'recipient_color', 'mod_tag'
14+
'recipient_color', 'mod_tag', 'anon_username', 'anon_avatar_url'
1515
}
1616

1717
internal_keys = {

0 commit comments

Comments
 (0)