| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2021-01-25 | Removed the blank lines from __init__ function | -1/+0 | ||
| 2021-01-25 | Removed the import of helper interpreter | -1/+0 | ||
| 2021-01-25 | Removed self.interpreter from internal cog, and deleted the interpreter ↵ | -52/+0 | ||
| helper file | ||||
| 2021-01-24 | Fixed python_general const in server command | -1/+1 | ||
| 2021-01-24 | Reorganizes constants.py | -98/+111 | ||
| Mirrors the changes from config-default.yml to constants.py. | ||||
| 2021-01-24 | Reorganizes Config | -92/+90 | ||
| 2021-01-24 | Remove redundant parenthesis. | -3/+3 | ||
| 2021-01-23 | Handle unloaded cogs when retrieving server info. | -9/+16 | ||
| 2021-01-23 | Reduce unnecessary line splits and parameters. | -12/+6 | ||
| 2021-01-23 | Use helper function to determine mod channel. | -1/+1 | ||
| 2021-01-23 | Extract `is_staff_channel` to a utility function. | -18/+19 | ||
| 2021-01-22 | Do `is_helper_viewable` check before fetching message | -3/+3 | ||
| 2021-01-22 | Use the SVG badge on the README | -1/+1 | ||
| 2021-01-22 | Update badges on the README file | -4/+3 | ||
| 2021-01-21 | Fix aliases of shadow tempban | -1/+1 | ||
| 2021-01-21 | Added slowmode tracking to dpy and ot0 | -2/+12 | ||
| 2021-01-21 | Changed slowmode reset tests | -12/+4 | ||
| 2021-01-21 | Added slowmode stat for python-general. | -4/+8 | ||
| 2021-01-21 | Slowmode reset now uses slowmode set | -10/+1 | ||
| 2021-01-20 | Make type hints uniform across file | -2/+2 | ||
| 2021-01-20 | Duck Pond: Add `is_helper_viewable` check | -1/+16 | ||
| 2021-01-20 | Prevent bot from sending DMs to itself | -0/+4 | ||
| Fixes BOT-KX | ||||
| 2021-01-20 | Remove incorrect point | -1/+0 | ||
| 2021-01-20 | Apply suggestions from code review | -2/+2 | ||
| Grammar Co-authored-by: Mark <[email protected]> | ||||
| 2021-01-19 | Add a section on why to use a virtual env | -3/+12 | ||
| 2021-01-19 | Fix url | -1/+1 | ||
| 2021-01-19 | grammar and spelling fixes | -18/+18 | ||
| 2021-01-19 | Remove additional embed message | -9/+1 | ||
| 2021-01-19 | Replace in_whitelist check with commands.has_any_role check | -2/+1 | ||
| in_whitelist allow normal users also run commands in bot commands, but branding commands should be mod+ only, so we need to use has_any_role instead from discord.py. | ||||
| 2021-01-18 | Sync: test chunking of user requests | -11/+18 | ||
| 2021-01-18 | Sync: chunk user requests | -2/+8 | ||
| The site can't handle huge syncs. Even a bulk patch of 10k users will crash the service. Chunk the requests into groups of 1000 users and await them sequentially. Testing showed that concurrent requests are not scalable and would also crash the service. | ||||
| 2021-01-18 | Update config-default.yml | -0/+4 | ||
| Whitelisted mod_meta and mod_tools as mod channels | ||||
| 2021-01-17 | Stop Tag Matching On Suggestion | -6/+1 | ||
| 2021-01-17 | Checks If Similar Command Is None | -0/+3 | ||
| 2021-01-17 | Adds Return On Tag Matches | -4/+9 | ||
| 2021-01-17 | Update to use Member.pending instead of bot.http.get_member | -3/+1 | ||
| 2021-01-16 | Removed 'Channels' import, unused. | -1/+1 | ||
| 2021-01-16 | Relock Pipfile | -17/+7 | ||
| 2021-01-16 | Add startup and daemon tasks canceling on cog unload | -0/+6 | ||
| 2021-01-16 | Remove unwatch reason from the !nominate output | -2/+1 | ||
| As the watch reason can contain private information, we shouldn't share it with the whole staff. | ||||
| 2021-01-15 | Remove unverified member information. | -4/+1 | ||
| We do not have the Developers role anymore, so there's no such thing as verified/unverified members. | ||||
| 2021-01-11 | Update discord.py to the 1.6 release | -17/+27 | ||
| 2021-01-11 | Annihilate all traces of Developer and Unverified roles | -720/+14 | ||
| 2021-01-10 | Make sure that users without the Developers role can use tag. | -2/+2 | ||
| We have a check in place to restrict tag usage to a certain role, but our default is the Developers role, and some users now don't have this code. This commit fixes this by using None as a default and adding a truth test in the check_accessibility method. | ||||
| 2021-01-08 | Upped duckpond threshold to 5 | -1/+1 | ||
| 2021-01-06 | Only helpers and below now get command suggestions | -2/+2 | ||
| 2021-01-06 | Fix BrandingError import in error handler | -1/+2 | ||
| 2021-01-06 | Add startup task that starts daemon to branding cog | -4/+5 | ||
| 2021-01-06 | Fix seasons file import order | -2/+2 | ||
| 2021-01-06 | Add missing docstring to Month enum | -0/+2 | ||