| Commit message (Collapse) | Author | Age | Lines | |
|---|---|---|---|---|
| * | Fix emoji replacement in UwU cog (#1634) | 2025-03-28 | -11/+12 | |
| | | | | | | | | | | * better emojis replacement * Update uwu.py Hot fix: wrong function call typo. * Update emoji raw text to normal emojis. | |||
| * | Wrong function called in UwU cog (#1633) | 2024-11-23 | -1/+1 | |
| | | | | | | | | * better emojis replacement * Update uwu.py Hot fix: wrong function call typo. | |||
| * | better emojis replacement (#1596) | 2024-11-23 | -0/+20 | |
| | | ||||
| * | Use the cleaned content in the uwu command (#1606) | 2024-09-13 | -1/+1 | |
| | | ||||
| * | Bump ruff from 0.0.269 to 0.0.270 (#1286) | 2023-05-29 | -1/+1 | |
| | | | | | | Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xithrius <[email protected]> | |||
| * | Apply fixes for ruff linting | 2023-05-09 | -3/+3 | |
| | | | | | | Co-authored-by: wookie184 <[email protected]> Co-authored-by: Amrou Bellalouna <[email protected]> | |||
| * | Support discord.py's new async cog loading | 2022-09-21 | -2/+2 | |
| | | ||||
| * | Refactored get_discord_message to not unnecessarily log, and cleaned up ↵ | 2022-08-08 | -17/+9 | |
| | | | | | uwu_command | |||
| * | Refactored methods _get_discord_message, _get_text_and_embed, and ↵ | 2022-08-08 | -4/+4 | |
| | | | | | _convert_embed into bot/utils/messages.py | |||
| * | Add a check for whether an embed is already available via the embeds list, ↵ | 2022-08-08 | -9/+10 | |
| | | | | | and to use that | |||
| * | Pulled changes from main and fixed conflicts | 2022-08-08 | -1/+49 | |
| |\ | ||||
| | * | Updated docstring for _ext_emoji_replace | 2022-07-20 | -1/+1 | |
| | | | | | | | Co-authored-by: ChrisJL <[email protected]> | |||
| | * | Improved REGEX Emoji match | 2022-07-20 | -1/+1 | |
| | | | | | | | Co-authored-by: ChrisJL <[email protected]> | |||
| | * | Improved numerical matching safety | 2022-07-14 | -2/+2 | |
| | | | | | | | | | | | - Added ASCII flag to match pattern - Changed `isdigit` check to `isdecimal` | |||
| | * | Updated usage of REGEX_EMOJI | 2022-07-14 | -1/+1 | |
| | | | | | | | | | Updated usage for new naming | |||
| | * | Normalized REGEX_EMOJI naming | 2022-07-14 | -1/+1 | |
| | | | | | | | | | Updated pattern to follow similar naming convention of `REGEX_*` instead of `RE_*` as rest of file. | |||
| | * | Updated docstrings | 2022-07-12 | -1/+3 | |
| | | | | | | | | | | | - Added docstring to `Emoji` class. - Added period to end of `_ext_emoji_replace` docstring. | |||
| | * | Added external emoji replacement filter | 2022-07-12 | -0/+46 | |
| | | | | | | | | | | | | | | | - Added pattern `RE_EMOJI` to capture emoji markdowns - Implemented dataclass for emoji information - Added function `_ext_emoji_replace` to replace external undisplayable emojis with random emoticons - Added call to said function in `_uwuify` | |||
| | * | Removed redundant character class | 2022-07-12 | -1/+1 | |
| | | | | | | | | | The regex character class for the single character [w] is redundant. The character can be directly used. | |||
| | * | Type annotations for fun_cog | 2022-07-12 | -1/+5 | |
| | | | ||||
| * | | Fixed conflicts from PR 1078 | 2022-08-08 | -1/+5 | |
| | | | ||||
| * | | Ran lints :p | 2022-07-17 | -4/+4 | |
| | | | ||||
| * | | Fix issue with .uwu failing to uwuify embeds in replies | 2022-07-13 | -6/+18 | |
| |/ | ||||
| * | Update .uwu to work with replies (#1070) | 2022-07-09 | -2/+15 | |
| | | ||||
| * | Doublefixed indentation and removed unused import. | 2022-02-25 | -2/+1 | |
| | | ||||
| * | Fixed indentation. | 2022-02-25 | -2/+2 | |
| | | ||||
| * | Fixed docstring. | 2022-02-25 | -1/+1 | |
| | | ||||
| * | Update bot/exts/fun/uwu.py | 2022-02-25 | -1/+1 | |
| | | | | Co-authored-by: Bluenix <[email protected]> | |||
| * | Update bot/exts/fun/uwu.py | 2022-02-24 | -5/+8 | |
| | | | | Co-authored-by: Bluenix <[email protected]> | |||
| * | run isort | 2022-02-23 | -1/+0 | |
| | | ||||
| * | Fix invalid regex | 2022-02-23 | -2/+2 | |
| | | | | | | | | Use just one group instead of two distinct ones Don't compile the substitution regex because the backreference doesn't exist yet. Use correct syntax for backreferences. | |||
| * | Use random.choice to select an item from a list | 2022-02-23 | -1/+1 | |
| | | ||||
| * | rename variables | 2022-02-23 | -4/+4 | |
| | | ||||
| * | Compile all regex(s) | 2022-02-23 | -1/+1 | |
| | | ||||
| * | Remove unused import | 2022-02-23 | -1/+0 | |
| | | ||||
| * | Update bot/exts/fun/uwu.py | 2021-10-09 | -1/+1 | |
| | | | | Co-authored-by: ToxicKidz <[email protected]> | |||
| * | Update bot/exts/fun/uwu.py | 2021-10-09 | -1/+1 | |
| | | | | Co-authored-by: ToxicKidz <[email protected]> | |||
| * | Update bot/exts/fun/uwu.py | 2021-10-09 | -1/+1 | |
| | | | | Co-authored-by: ToxicKidz <[email protected]> | |||
| * | Update bot/exts/fun/uwu.py | 2021-10-09 | -2/+1 | |
| | | | | Co-authored-by: Bluenix <[email protected]> | |||
| * | Update bot/exts/fun/uwu.py | 2021-10-09 | -1/+1 | |
| | | | | Co-authored-by: Bluenix <[email protected]> | |||
| * | Update bot/exts/fun/uwu.py | 2021-10-09 | -1/+1 | |
| | | | | Co-authored-by: Bluenix <[email protected]> | |||
| * | Update bot/exts/fun/uwu.py | 2021-10-09 | -2/+2 | |
| | | | | Co-authored-by: Bluenix <[email protected]> | |||
| * | Reverting accidental revert. | 2021-10-02 | -1/+1 | |
| | | ||||
| * | Refactored cog. | 2021-10-02 | -66/+57 | |
| | | ||||
| * | Update bot/exts/fun/uwu.py | 2021-09-30 | -1/+1 | |
| | | | | Co-authored-by: Bluenix <[email protected]> | |||
| * | Refactoring and changed emoji regex and weight | 2021-09-22 | -45/+35 | |
| | | ||||
| * | Further linting | 2021-09-22 | -25/+24 | |
| | | ||||
| * | Linting | 2021-09-22 | -16/+24 | |
| | | ||||
| * | Uwuification done. | 2021-09-22 | -0/+4 | |
| | | ||||
| * | Replaced the old implementation for uwuification with a smarter approach | 2021-09-21 | -0/+143 | |