aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
* | | | | Merge pull request #1063 from python-discord/bug/util/jams-multi-categoriesGravatar Mark2020-07-22-40/+73
|\ \ \ \ \ | | | | | | | | | | | | Support multiple categories for code jam team creation
| * | | | | Jam tests: use the MAX_CHANNELS constant moreGravatar MarkKoz2020-07-22-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | It's clearer to write MAX_CHANNELS - 2 than a literal 48.
| * | | | | Jam tests: assert equality of new categoryGravatar MarkKoz2020-07-22-1/+2
| | | | | |
| * | | | | Jam tests: add subtests to non-existent category testGravatar MarkKoz2020-07-22-7/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The test has to account for not only the name not matching, but also a lack of available spaces for new channels.
| * | | | | Jam tests: fix category testGravatar MarkKoz2020-07-22-14/+24
| | | | | |
| * | | | | Jams: create a new category if others are fullGravatar MarkKoz2020-07-22-20/+31
|/ / / / /
| * | | | Charinfo: correct char limit used in error messageGravatar Mark2020-07-22-1/+1
| | | | | | | | | | | | | | | Co-authored-by: Kieran Siek <[email protected]>
| * | | | Charinfo: up char limit and reduce line limitGravatar MarkKoz2020-07-22-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pagination means more characters can be supported without cluttering anything. It also means infinite lines, so there's no longer a need to squeeze out the most from a single page. Reducing the line limit leads to a smaller, tidier presentation.
| * | | | Charinfo: use more descriptive field name Gravatar Mark2020-07-22-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since the raw field is displayed on every page, but pages are incomplete, it may be unclear whether the field's value is for the current page or for all pages. Co-authored-by: Kieran Siek <[email protected]>
| * | | | Charinfo: paginate the resultsGravatar MarkKoz2020-07-21-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pagination ensures the results will never go over the char limit for an embed. Fixes #897 Fixes BOT-3D
| * | | | Charinfo: use send_denial helperGravatar MarkKoz2020-07-21-13/+7
| | | | |
| | * | | Check that embed desc is not Empty before stripping.Gravatar kosayoda2020-07-23-2/+5
| |/ / / |/| | |
* | | | Merge pull request #957 from ks129/jam-testGravatar Mark2020-07-22-17/+193
|\ \ \ \ | |/ / / |/| | | Code Jams unit tests
| * | | Merge branch 'master' into jam-testGravatar Mark2020-07-22-869/+3594
| |\ \ \ | |/ / / |/| | |
* | | | Use max_units for time since join in user command instead of precisionGravatar Joe Banks2020-07-21-1/+1
| | | |
* | | | Merge pull request #1056 from python-discord/role-remindersGravatar Dennis Pham2020-07-20-49/+139
|\ \ \ \ | | | | | | | | | | Add role reminders
| * \ \ \ Merge branch 'master' into role-remindersGravatar Dennis Pham2020-07-20-26/+1429
| |\ \ \ \ | |/ / / / |/| | | |
* | | | | Merge pull request #1060 from wookie184/remove-eval-py-formattingGravatar Senjan212020-07-20-4/+4
|\ \ \ \ \ | | | | | | | | | | | | Remove eval py formatting
| * \ \ \ \ Merge branch 'master' into remove-eval-py-formattingGravatar Senjan212020-07-20-1/+169
| |\ \ \ \ \ | |/ / / / / |/| | | | |
* | | | | | Merge pull request #955 from ks129/source-commandGravatar Mark2020-07-20-0/+135
|\ \ \ \ \ \ | | | | | | | | | | | | | | Source command
| * \ \ \ \ \ Merge branch 'master' into source-commandGravatar Senjan212020-07-20-952/+3504
| |\ \ \ \ \ \
| * | | | | | | Source: Split to multiple lines to fix too long line on error raisingGravatar ks1292020-06-18-1/+3
| | | | | | | |
| * | | | | | | Source: Exclude `tag` from error message when tags cog not loadedGravatar ks1292020-06-18-2/+5
| | | | | | | |
| * | | | | | | Source: Split handling tag and other source items file locationGravatar ks1292020-06-18-1/+6
| | | | | | | |
| * | | | | | | Source: Simplify missing tag cog handlingGravatar ks1292020-06-18-8/+1
| | | | | | | |
| * | | | | | | Source: Refactor Tags cog missing handlingGravatar ks1292020-06-01-20/+16
| | | | | | | |
| * | | | | | | Source: Remove showing aliases for commandsGravatar ks1292020-06-01-2/+1
| | | | | | | |
| * | | | | | | Source: Update `get_source_link` docstringGravatar ks1292020-06-01-1/+1
| | | | | | | |
| * | | | | | | Source: Move calling `get_source_link` to `build_embed`Gravatar ks1292020-06-01-10/+14
| | | | | | | |
| * | | | | | | Source: Simplify tags name and location parsingGravatar ks1292020-06-01-9/+15
| | | | | | | |
| * | | | | | | Tags: Add tag file location storage to cacheGravatar ks1292020-06-01-0/+1
| | | | | | | |
| * | | | | | | Source: Include tag into converter's `BadArgument` raisingGravatar ks1292020-05-31-1/+1
| | | | | | | |
| * | | | | | | Source: Show aliases on title of command source embedGravatar ks1292020-05-31-1/+2
| | | | | | | |
| * | | | | | | Source: Simplify importsGravatar ks1292020-05-31-12/+12
| | | | | | | |
| * | | | | | | Source: In converter move cog checking before commandGravatar ks1292020-05-31-4/+4
| | | | | | | |
| * | | | | | | Source: Add command and cog prefixes to title of embedGravatar ks1292020-05-31-2/+2
| | | | | | | |
| * | | | | | | Source: Few text fixes, made help command detection betterGravatar ks1292020-05-31-3/+3
| | | | | | | |
| * | | | | | | Source: Add thumbnail to source command bot repo embedGravatar ks1292020-05-31-0/+1
| | | | | | | |
| * | | | | | | Source: Show only first line of every source item docstring instead fullGravatar ks1292020-05-31-5/+4
| | | | | | | |
| * | | | | | | Source: Implement file and line showing in source embed footerGravatar ks1292020-05-31-7/+10
| | | | | | | |
| * | | | | | | Source: Move big unions to variable of typeGravatar ks1292020-05-31-3/+5
| | | | | | | |
| * | | | | | | Source: Migrate from os.path to PathGravatar ks1292020-05-31-4/+6
| | | | | | | |
| * | | | | | | Source: Implement tags file showing to source commandGravatar ks1292020-05-31-16/+27
| | | | | | | |
| * | | | | | | Merge remote-tracking branch 'origin/source-command' into source-commandGravatar ks1292020-05-31-439/+1749
| |\ \ \ \ \ \ \
| | * \ \ \ \ \ \ Merge branch 'master' into source-commandGravatar ks1292020-05-31-439/+1749
| | |\ \ \ \ \ \ \
| * | | | | | | | | Source: Direct aliases to their original commandsGravatar ks1292020-05-31-7/+17
| | | | | | | | | |
| * | | | | | | | | Source: Remove checks running from source commandGravatar ks1292020-05-31-5/+2
| |/ / / / / / / /
| * | | | | | | | Source: Fix docstringsGravatar ks1292020-05-31-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Mark <[email protected]>
| * | | | | | | | Source: Fix description of cogGravatar ks1292020-05-20-1/+1
| | | | | | | | |
| * | | | | | | | Source: Rename cog + move checks status from footer to fieldGravatar ks1292020-05-20-6/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Renamed cog from `Source` to `BotSource` for itself (bot will be unable to get cog, because this always return command). - Moved checks status from footer to field and changed it's content.