Skip to content

Commit 4dde517

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents c456675 + 7e12199 commit 4dde517

18 files changed

+1035
-887
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,5 @@ dmypy.json
126126

127127
# Modmail
128128
config.json
129-
plugins/
129+
plugins/*-plugins/
130130
temp/

.pylintrc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ disable=raw-checker-failed,
7979
too-many-instance-attributes,
8080
too-many-arguments,
8181
too-few-public-methods,
82-
too-many-lines
82+
too-many-lines,
83+
line-too-long
8384

8485

8586
# Enable the message, report, category or checker with the given id(s). You can
@@ -358,15 +359,14 @@ function-naming-style=snake_case
358359
# Good variable names which should always be accepted, separated by a comma.
359360
good-names=i,
360361
j,
361-
k,
362362
ex,
363363
_,
364-
v,
365364
id,
366365
db,
367366
f,
368367
dt,
369-
c
368+
ch,
369+
ts
370370

371371
# Include a hint for the correct naming format with invalid-name.
372372
include-naming-hint=yes

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,38 @@ All notable changes to this project will be documented in this file.
44
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

7+
# v2.21.0
8+
9+
### Added
10+
11+
New `?plugin registry compact` command which shows a more compact view of all plugins.
12+
13+
# v2.20.2
14+
15+
### Plugin Registry
16+
17+
Plugin developers can now make a PR to include their plugin in the `plugin registry` command.
18+
Add your plugin in the `plugins/registry.json` file in the main repository.
19+
20+
### Changed
21+
22+
`?debug` command now shows the most recent logs first. (Starts at the last page)
23+
24+
# v2.20.1
25+
26+
### What's new?
27+
28+
- New error message when using thread-only commands outside of threads.
29+
- `?unnotify`, ability to undo `?notify`.
30+
- `?notify` and `?subscribe` now accepts other users.
31+
32+
### Changes
33+
34+
This update contains mostly internal changes.
35+
- Implemented support for the new discord.py v1.1.1.
36+
- Improved help text for most commands.
37+
- Completely revamped help command, few user changes.
38+
- Removed abc (internal).
739

840
# v2.20.0
941

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ $ python3 bot.py
8080

8181
This project is licenced under MIT. If you have any new ideas, create an issue or a pull request. Contributions to Modmail are always welcome, whether it be improvements to the documentation or new functionality, please feel free make the change.
8282

83-
If you use Modmail and love it, consider becoming a patron on **[Patreon](https://www.patreon.com/kyber)** :smile:
83+
This bot is open source and always will be. If you like this project and would like to show your appreciation, heres the link for our **[Patreon](https://www.patreon.com/kyber)**.

0 commit comments

Comments
 (0)