| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2021-02-13 | Added cog check to only allow mods in the defcon channel | -5/+4 | ||
| 2021-02-13 | Removed _build_defcon_message method | -24/+15 | ||
| 2021-02-13 | Added server shutdown and reopen commands | -2/+24 | ||
| 2021-02-13 | Reordered methods | -18/+18 | ||
| 2021-02-13 | Removed enabling and switched to redis | -132/+65 | ||
| Removing self.enable and the defon & defoff commands. Defcon will now just be always 'on' and we can set the days threshold to 0 to turn it off. Switched from postgres to redis - if the data gets lost we should just reconfigure defcon again, it should not depend on the site. | ||||
| 2021-01-26 | Defon doesn't reset the number of days | -1/+1 | ||
| 2021-01-26 | Added cog unloader to cancel notifier | -0/+8 | ||
| 2021-01-26 | Moved channel topic change to _defcon_action | -3/+1 | ||
| 2021-01-26 | Moved self.enabled update to _defcon_action | -9/+6 | ||
| 2021-01-26 | Make the cog update even if write to DB fails | -3/+3 | ||
| The defcon cog should be functional even if there is some issue with writing to the DB for some reason. The functionality should have retention across restarts, but it shouldn't be its failing point. If necessary, it should be able to work with no DB at all | ||||
| 2021-01-25 | Update `is_helper_viewable` check | -2/+2 | ||
| 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 | ||