-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to Python 3.10 and discord.py 2.0 beta #46
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Unresolved roles are now deregistered and cleaned-up automatically. (fixes #47) - Elevated commands can no longer add/remove unregistered roles to/from users. (fixes #48) - Users can now join/leave multiple roles in one command. (fixes #49) - Multiple roles can now be added/removed to/from multiple members all in one command. - Roles can now be targeted using a partial name match. (fixes #50)
This involves moving the bot core from cb-core to cb-ext, removing the dependency, and restructuring the imports.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR is structured around 3 overarching goals:
commanderbot-core
intocommanderbot-ext
for one final, unifiedcommanderbot-py
project.Extensions to update
automod
faq
help_chat
invite
jira
kick
manifest
(wait for Added manifest command #51)pack
ping
poster_board
quote
roles
status
vote
(wait for Vote improvements #45)Additional changes
commanderbot-core
has been merged intocommanderbot-ext
.commanderbot-py
after this PR is merged.commanderbot_ext
tocommanderbot
to take its place.ctx.reply
wrapper with pings disabled.ctx.reply
wrapper with pings disabled #42allowed_mentions
field in root bot config is now supported.allowed_mentions
in the root bot config #52Changes to
automod
user
fields.automod
: Event data is missinguser
fields #43message
triggers now allow basic matching of message content.automod
: Allowmessage
triggers to match message content #44Changes to
roles
roles
: Clean-up unresolved roles #47roles
: Elevated commands can add/remove roles that are not registered #48roles
: Allow joining/leaving multiple roles in one command #49roles
: Make it easier to type roles with complex names #50roles
: Allow configurable roles to run elevated commands #18