| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2020-10-10 | Use more descriptive name for end_tag_filter | -5/+5 | ||
| 2020-10-10 | Handle non dt fallback together with modules | -6/+1 | ||
| 2020-10-10 | Reschedule failed inventory updates | -4/+35 | ||
| 2020-10-10 | Remove sphinx and requests from Pipfile | -2/+0 | ||
| With our own implementation of sphinx's inventory fetching we no longer need the sphinx package, and requests which were used inside of it. | ||||
| 2020-10-10 | Use new async inventory fetching | -64/+7 | ||
| 2020-10-10 | Handle errors on inventory fetching | -2/+35 | ||
| 2020-10-10 | Add async implementation of sphinx fetch_inventory | -0/+117 | ||
| The sphinx version of the function does a lot of checks that are unnecessary for the bot because it's not working with anything else related to docs. The custom implementation means we can throw some of the code out and get rid of sphinx as a dependency. | ||||
| 2020-10-10 | Add parentheses for clarity | -1/+1 | ||
| 2020-10-10 | Make amount of included signatures configurable | -7/+10 | ||
| 2020-10-10 | Collapse signatures between args instead of spaces | -3/+92 | ||
| The signature length needed more logic and shorter limits to ensure messages would fit in a discord message in a nice way. | ||||
| 2020-10-08 | Fix millisecond time for command processing time | -1/+1 | ||
| - For the `.ping` command - Fixes a faulty convertion from seconds to milliseconds | ||||
| 2020-10-08 | Update bot/exts/moderation/infraction/infractions.py | -1/+1 | ||
| Co-authored-by: Dennis Pham <[email protected]> | ||||
| 2020-10-08 | update documentation | -1/+14 | ||
| 2020-10-08 | remove redundant if statement | -1/+1 | ||
| 2020-10-08 | remove redundant if statement | -2/+1 | ||
| 2020-10-07 | made sure to use sub_clyde on username passed to send_attachments | -1/+2 | ||
| 2020-10-07 | Refactor tests to use updated changes to syncer.py and API. | -58/+59 | ||
| 2020-10-07 | improve code efficiency and use updated API changes to pagination | -98/+48 | ||
| 2020-10-07 | Add the ability to purge and ban in one command. | -2/+26 | ||
| 2020-10-06 | Include rolled over logs in gitignore | -0/+1 | ||
| RotatingFileHandler appends .# to log names when rolling over to a new file. | ||||
| 2020-10-06 | Fix old nick in superstarify reason | -2/+3 | ||
| 2020-10-06 | Use .get() instead of index for fetching is_pending property | -1/+1 | ||
| 2020-10-06 | Correct raw_member to member in verification on_join | -1/+1 | ||
| 2020-10-06 | Reword on_join comment for alternate gate members | -1/+4 | ||
| 2020-10-06 | Clear up comment around DM send | -0/+4 | ||
| 2020-10-06 | Reword cache creation comment | -1/+1 | ||
| 2020-10-06 | Use clearer variable names in list comprehensions | -2/+2 | ||
| 2020-10-06 | Merge get and pop into one conditional | -3/+1 | ||
| 2020-10-06 | Add type annotation to on_member_update listener | -1/+1 | ||
| 2020-10-06 | Support users with alternate gating methods | -0/+42 | ||
| 2020-10-04 | Sort rules before determining invalid indices. | -14/+5 | ||
| This is to avoid sorting twice - once for invalid indices and again for send the rules. | ||||
| 2020-10-03 | Use `url` argument instead of setting it outside. | -2/+1 | ||
| 2020-10-03 | Use `Greedy` converter instead of the splat operator. | -2/+2 | ||
| 2020-10-03 | Remove duplicates from given rule indices and sort them in order. | -4/+11 | ||
| 2020-10-03 | Replace `map` with a more pythonic list comprehension. | -1/+1 | ||
| 2020-10-03 | Use invite for tracking offline presences instead of `ctx` | -2/+2 | ||
| 2020-10-03 | Add trailing comma to intents | -1/+1 | ||
| 2020-10-03 | Lock: make LockGuard.locked a property | -1/+2 | ||
| 2020-10-03 | Lock: rename variable to avoid shadowing | -3/+3 | ||
| 2020-10-03 | add missing test for `user` command | -0/+5 | ||
| 2020-10-03 | Cap most_common to 25 to not go over the embed fields limit | -1/+1 | ||
| 2020-10-03 | Add a socket stats command | -5/+37 | ||
| 2020-10-02 | Changed dm_relay to include user id in webhook when sending attachments. | -1/+5 | ||
| 2020-10-02 | Add use_cached argument to send_attachments, and change it to default to False | -1/+2 | ||
| 2020-10-02 | Changed send_attachments so kwargs could be given and would be passed to send() | -14/+13 | ||
| 2020-10-02 | remove un-used variable | -1/+0 | ||
| 2020-10-02 | Refactor unit tests UserSyncerSyncTests to use changes made to UserSyncer in ↵ | -7/+5 | ||
| _syncers.py | ||||
| 2020-10-02 | update UserSyncerDiffTests Tests to use changes made to API calls. | -6/+32 | ||
| 2020-10-02 | Reminder: no feedback message when no mention | -4/+5 | ||
| 2020-10-02 | Get rid of codeblock in souce commit | -2/+3 | ||
| Double backtick will break if argument contains a double backtick, so getting rid of the codeblock itself makes more sense in my opionion. Also fix the style issue with multiline string by storing the escaped arg in another variable | ||||