| Commit message (Collapse) | Author | Age | Lines | ||
|---|---|---|---|---|---|
| ... | |||||
| | * | | | | | | | | Remove additional newline from end of tag | 2021-02-06 | -1/+0 | ||
| | | | | | | | | | | |||||
| | * | | | | | | | | discord.Messageable -> discord.abc.Messageable | 2021-02-06 | -1/+1 | ||
| | | | | | | | | | | |||||
| | * | | | | | | | | discord.Channel -> discord.TextChannel | 2021-02-06 | -1/+1 | ||
| | | | | | | | | | | |||||
| | * | | | | | | | | Create local-file tag about sending local files to Discord | 2021-02-06 | -0/+24 | ||
| |/ / / / / / / / | |||||
| | * | | | | | | | Correct examples, reword description | 2021-02-06 | -8/+9 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Fix trailing whitespaces | 2021-02-06 | -1/+1 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Make `defaultdict` tag | 2021-02-05 | -0/+20 | ||
| |/ / / / / / / | |||||
| | * | | | | | | Formatted available constant, added missing dynamic message trace | 2021-02-06 | -1/+2 | ||
| | | | | | | | | |||||
| | * | | | | | | Removed unnecessary task creation. | 2021-02-06 | -6/+1 | ||
| | | | | | | | | |||||
| | * | | | | | | Available channels are no longer stored as IDs. | 2021-02-06 | -5/+5 | ||
| | | | | | | | | |||||
| | * | | | | | | Reformatted string constant for available help channels. | 2021-02-06 | -3/+1 | ||
| | | | | | | | | |||||
| | * | | | | | | Modified the dynamic to be bold to catch eyes. | 2021-02-05 | -1/+1 | ||
| | | | | | | | | |||||
| | * | | | | | | Replaced fetching available category for old one. | 2021-02-04 | -3/+2 | ||
| | | | | | | | | |||||
| | * | | | | | | Removed unnecessary update method call. | 2021-02-04 | -4/+3 | ||
| | | | | | | | | |||||
| | * | | | | | | Alphabetized config-default.yml. | 2021-02-04 | -1/+1 | ||
| | | | | | | | | |||||
| | * | | | | | | 'None' is now shown if no channels are available. | 2021-02-04 | -9/+10 | ||
| | | | | | | | | |||||
| | * | | | | | | Fixed logic in case dynamic message doesn't exist. | 2021-02-04 | -11/+9 | ||
| | | | | | | | | |||||
| | * | | | | | | Fixed up linting errors. | 2021-02-04 | -3/+4 | ||
| | | | | | | | | |||||
| | * | | | | | | Added dynamic available help channels message | 2021-02-04 | -0/+48 | ||
| | | | | | | | | |||||
| | * | | | | | | Added how_to_get_help constant. | 2021-02-04 | -0/+2 | ||
| | | | | | | | | |||||
| | | * | | | | | "handle converting" -> "convert ... for you". | 2021-02-06 | -1/+1 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Per Gustav's suggestion. Co-authored-by: Gustav Odinger <[email protected]> | ||||
| | | * | | | | | Removed extra blank line. | 2021-02-06 | -1/+0 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It added more vertical white space than was wanted. Co-authored-by: Gustav Odinger <[email protected]> | ||||
| | | * | | | | | New example to emphasize the mapping functionality rather than filtering. | 2021-02-06 | -9/+14 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, the example only conveyed how the `if` statement of list comps could be used to filter a list, whereas the mapping functionality is what people primarily use list comps for. | ||||
| | | * | | | | | More robust example with no reference to Python versions or `str.format`. | 2021-02-06 | -14/+6 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The example emphasizes that you can evaluate expressions in the curly braces. Python 3.5 has already reached EOL, so anyone who doesn't have f-strings at this point is probably running 2.7 anyway. I also removed the information about `str.format` to reduce the scope. | ||||
| | | * | | | | | Rewrite to use simpler examples. | 2021-02-06 | -14/+9 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous examples might have been confusing for some readers. I also removed the part about inverting a dict because I think that's out of scope and would require more explanation given all the consequences that could have. | ||||
| | | | | * | | | Merge branch 'mbaruh/defcon' of https://github.com/python-discord/bot into ↵ | 2021-03-02 | -12/+19 | ||
| | | | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | mbaruh/defcon | ||||
| | | | | | * | | | Provide default cache values when syncing | 2021-03-01 | -2/+2 | ||
| | | | | | | | | | |||||
| | | | | | * | | | Change to handle specifically redis errors | 2021-03-01 | -11/+15 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The idea to ignore alerts on fake redis didn't solve the problem completely, because sometimes you'll just develop with a real redis. It also didn't solve the ping we would get on first start up. After looking into it there seems like there's no actual reason to alert on key errors, as they should only happen if the cache gets wiped for some reason, which shouldn't happen, but in which case we have bigger issues. Alerts are therefore limited to connection errors raised by redis. This additionally handles only redis errors when writing to it as well. If any other error is raised it is ok for the function to stop at that point, as all variables have already been set. The only thing which doesn't get executed is the confirmation message and logging, the lack of which is an exception message in itself. | ||||
| | | | | | * | | | Sync alert won't trigger with fake redis | 2021-02-26 | -5/+6 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The alert will trigger with fake redis on every bot startup even when people aren't working on the defcon cog. Added a condition to check if fake redis is being used. | ||||
| | | | | | * | | | Changed name of _duration_parser constant to uppercase | 2021-02-26 | -2/+2 | ||
| | | | | | | | | | |||||
| | | | | | * | | | Supressing any exceptions while updating the threshold in redis | 2021-02-26 | -6/+8 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating redis might cause an error, making sure it doesn't stop the command mid-way | ||||
| | | | | * | | | | Improved docstring for threshold command. | 2021-03-02 | -1/+8 | ||
| | | | | |/ / / | |||||
| | | | | * | | | Retain 'd' alias for threshold command | 2021-02-19 | -1/+1 | ||
| | | | | | | | | |||||
| | | | | * | | | Error to load settings will send the traceback to the channel | 2021-02-19 | -0/+2 | ||
| | | | | | | | | |||||
| | | | | * | | | Threshold has false-y value when set to 0 | 2021-02-17 | -15/+20 | ||
| | | | | | | | | |||||
| | | | | * | | | Error loading settings will also ping devops role | 2021-02-17 | -1/+5 | ||
| | | | | | | | | |||||
| | | | | * | | | Gave more meaningful name and description to the cache | 2021-02-17 | -5/+8 | ||
| | | | | | | | | |||||
| | | | | * | | | Changed server command to work with new defcon cog | 2021-02-17 | -6/+7 | ||
| | | | | | | | | |||||
| | | | | * | | | Renamed _defcon_action to _update_threshold and updated docstring | 2021-02-14 | -4/+4 | ||
| | | | | | | | | |||||
| | | | | * | | | Removed cog check, shutdown restricted to admins | 2021-02-14 | -4/+5 | ||
| | | | | | | | | |||||
| | | | | * | | | _update_channel_topic not longer needs to be awaited | 2021-02-14 | -3/+3 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's important to note that it's appropriate for the sync and action methods to have a lock between them, because if an action is made before syncing is complete it gets screwed and starts throwing excpetion for every command. | ||||
| | | | | * | | | Prevent channel description edit from locking commands | 2021-02-13 | -1/+2 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because some parts are defined as atomic transaction, we can't use them with channel description edits which are heavily rate limited. Description edits are now run in a separate task. | ||||
| | | | | * | | | Status command displays verification level | 2021-02-13 | -0/+1 | ||
| | | | | | | | | |||||
| | | | | * | | | Fixed on_message | 2021-02-13 | -8/+11 | ||
| | | | | | | | | |||||
| | | | | * | | | Add option to schedule threshold reset | 2021-02-13 | -16/+46 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added optional argument to defcon threshold to specify for how long it should be on. The notifier will now run only when there is no expiry date specified. | ||||
| | | | | * | | | Defcon days is now defcon threshold with DurationDelta | 2021-02-13 | -41/+84 | ||
| | | | | | | | | |||||
| | | | | * | | | Added cog check to only allow mods in the defcon channel | 2021-02-13 | -5/+4 | ||
| | | | | | | | | |||||
| | | | | * | | | Removed _build_defcon_message method | 2021-02-13 | -24/+15 | ||
| | | | | | | | | |||||
| | | | | * | | | Added server shutdown and reopen commands | 2021-02-13 | -2/+24 | ||
| | | | | | | | | |||||
| | | | | * | | | Reordered methods | 2021-02-13 | -18/+18 | ||
| | | | | | | | | |||||