File tree 3 files changed +16
-8
lines changed
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.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
17
# v3.0.1
8
18
9
19
### Fixed
@@ -22,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
32
23
33
### Breaking Changes
24
34
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 ) .
26
36
27
37
Read more about updating your bot [ here] ( https://github.com/kyb3r/modmail/wiki/updating )
28
38
@@ -33,21 +43,21 @@ Read more about updating your bot [here](https://github.com/kyb3r/modmail/wiki/u
33
43
34
44
### Fixed
35
45
- 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.
37
47
- Plugin requirement installation now works in virtual environments
38
48
39
49
40
50
# v2.24.1
41
51
42
52
### Fixed
43
53
44
- Fixed a bug with branches and ` plugin update ` .
54
+ Fixed a bug with branches and ` ? plugin update` .
45
55
46
56
# v2.24.0
47
57
48
58
### Added
49
59
50
- Branch support for ` plugin add ` and in registry. Typically for developers.
60
+ Branch support for ` ? plugin add` and in registry. Typically for developers.
51
61
52
62
# v2.23.0
53
63
Original file line number Diff line number Diff line change 1
- __version__ = "3.0.1 "
1
+ __version__ = "3.0.2 "
2
2
3
3
import asyncio
4
4
import logging
Original file line number Diff line number Diff line change @@ -1248,9 +1248,7 @@ def get_level(perm_level):
1248
1248
p_session = PaginatorSession (ctx , * embeds )
1249
1249
return await p_session .run ()
1250
1250
1251
- @commands .group (
1252
- invoke_without_command = True , aliases = ["oauth2" , "auth" , "authentication" ]
1253
- )
1251
+ @commands .group (invoke_without_command = True )
1254
1252
@checks .has_permissions (PermissionLevel .OWNER )
1255
1253
async def oauth (self , ctx ):
1256
1254
"""Commands relating to Logviewer oauth2 login authentication.
You can’t perform that action at this time.
0 commit comments