File tree Expand file tree Collapse file tree 3 files changed +16
-8
lines changed Expand file tree Collapse file tree 3 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ # v3.0.2
8+
9+ ### Added
10+
11+ - New command, ` ?blocked whitelist <user> ` , this command prevents users from getting blocked by any means.
12+
13+ ### Changed
14+
15+ - Removed some aliases from ` ?oauth ` .
16+
717# v3.0.1
818
919### Fixed
@@ -22,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2232
2333### Breaking Changes
2434
25- - Removed autoupdate functionality and the ` update ` command in favour of the [ Pull app] ( https://github.com/apps/pull ) .
35+ - Removed autoupdate functionality and the ` ? update` command in favour of the [ Pull app] ( https://github.com/apps/pull ) .
2636
2737Read more about updating your bot [ here] ( https://github.com/kyb3r/modmail/wiki/updating )
2838
@@ -33,21 +43,21 @@ Read more about updating your bot [here](https://github.com/kyb3r/modmail/wiki/u
3343
3444### Fixed
3545- Editing notes now works, minor bug with edit command is fixed.
36- - Bug in the ` oauth ` command where the response message fails to send when an ID is provided.
46+ - Bug in the ` ? oauth` command where the response message fails to send when an ID is provided.
3747- Plugin requirement installation now works in virtual environments
3848
3949
4050# v2.24.1
4151
4252### Fixed
4353
44- Fixed a bug with branches and ` plugin update ` .
54+ Fixed a bug with branches and ` ? plugin update` .
4555
4656# v2.24.0
4757
4858### Added
4959
50- Branch support for ` plugin add ` and in registry. Typically for developers.
60+ Branch support for ` ? plugin add` and in registry. Typically for developers.
5161
5262# v2.23.0
5363
Original file line number Diff line number Diff line change 1- __version__ = "3.0.1 "
1+ __version__ = "3.0.2 "
22
33import asyncio
44import logging
Original file line number Diff line number Diff line change @@ -1248,9 +1248,7 @@ def get_level(perm_level):
12481248 p_session = PaginatorSession (ctx , * embeds )
12491249 return await p_session .run ()
12501250
1251- @commands .group (
1252- invoke_without_command = True , aliases = ["oauth2" , "auth" , "authentication" ]
1253- )
1251+ @commands .group (invoke_without_command = True )
12541252 @checks .has_permissions (PermissionLevel .OWNER )
12551253 async def oauth (self , ctx ):
12561254 """Commands relating to Logviewer oauth2 login authentication.
You can’t perform that action at this time.
0 commit comments