| Commit message (Collapse) | Author | Age | Lines | ||
|---|---|---|---|---|---|
| ... | |||||
| * | Merge pull request #13 from python-discord/threadfixes | 2022-02-18 | -9/+34 | ||
| |\ | | | | | Various fixes related to thread support | ||||
| | * | Bump metricity version following bug fixes | 2022-02-13 | -1/+1 | ||
| | | | |||||
| | * | Listen for thread create and unarchive events | 2022-02-13 | -0/+20 | ||
| | | | |||||
| | * | Ignore threads in forum channels | 2022-02-13 | -2/+6 | ||
| | | | | | | | | | Discord.py doesn't support forum channels, so ignore them to avoid tracebacks. | ||||
| | * | Only sync thread archive status on startup | 2022-02-13 | -6/+7 | ||
| |/ | | | | Since we can update threads during bot runtime, there is no need to sync archive status every time, just do this on startup. | ||||
| * | Merge pull request #12 from python-discord/fix-thread-update-event | 2021-12-22 | -1/+1 | ||
| |\ | | | | | Fix on_thread_update as it takes 2 args, not one | ||||
| | * | Fix on_thread_update as it takes 2 args, not one | 2021-12-21 | -1/+1 | ||
| |/ | |||||
| * | Merge pull request #10 from python-discord/thread-support | 2021-12-21 | -204/+546 | ||
| |\ | | | | | Thread & Discord.py 2.0a0 support | ||||
| | * | Correctly use string IDs for threads | 2021-12-21 | -2/+2 | ||
| | | | |||||
| | * | Bump version number | 2021-12-21 | -2/+2 | ||
| | | | |||||
| | * | flake8 ignore line break before/after binary operator | 2021-12-21 | -1/+5 | ||
| | | | |||||
| | * | Store what thread a message was sent in | 2021-12-21 | -0/+3 | ||
| | | | | | | | | | Taking care not to trigger on thread creation system messages. | ||||
| | * | Update stored thread data on thread update | 2021-12-21 | -0/+11 | ||
| | | | |||||
| | * | Upsert threads when syncing channels | 2021-12-21 | -5/+50 | ||
| | | | |||||
| | * | Add discord.py thread models & migration | 2021-12-21 | -6/+86 | ||
| | | | |||||
| | * | Use tz-aware datetimes throughout project | 2021-12-21 | -4/+5 | ||
| | | | |||||
| | * | db type that supports aware datetimes in user-land | 2021-12-21 | -0/+36 | ||
| | | | |||||
| | * | Support new guild specific avatars | 2021-12-21 | -8/+44 | ||
| | | | |||||
| | * | Expose psql port in docker-compose | 2021-11-03 | -0/+2 | ||
| | | | | | | | | | This allows for alembic to generate migrations by connecting to the docker-compose postgres instance. | ||||
| | * | Bump d.py to 2.0a0 | 2021-11-03 | -179/+303 | ||
| |/ | |||||
| * | Detect and copy config files passed by bot compose | 2021-09-14 | -0/+5 | ||
| | | |||||
| * | Explicitly define the metricity database name in docker-compose | 2021-09-13 | -1/+1 | ||
| | | |||||
| * | Merge pull request #8 from python-discord/remove-double-negative-from-env-var | 2021-09-11 | -1/+1 | ||
| |\ | | | | | Remove double negative from env var | ||||
| | * | Remove double negative from env var | 2021-09-11 | -1/+1 | ||
| |/ | |||||
| * | Merge pull request #7 from python-discord/metricity-creates-own-database | 2021-09-10 | -1/+99 | ||
| |\ | |||||
| | * | Capitalise SKIP_METRICITY env var name | 2021-09-09 | -1/+1 | ||
| | | | |||||
| | * | Use case-insentivite compare to true to determine metricity skip | 2021-09-09 | -1/+4 | ||
| | | | | | | | | | This is rather than checking for the presence of the env var at all, since people might set it to false thinking that it won't skip. | ||||
| | * | Create database before migrating and running | 2021-09-09 | -1/+7 | ||
| | | | |||||
| | * | Add a script to create metricity db if it doesn't exist | 2021-09-09 | -0/+46 | ||
| | | | |||||
| | * | Add a docker compose for local dev | 2021-09-09 | -0/+43 | ||
| |/ | |||||
| * | Merge pull request #6 from python-discord/sync-channels-guard-no-category | 2021-08-22 | -8/+6 | ||
| |\ | | | | | Prevent error on uncategorized channel. | ||||
| | * | Prevent error on uncategorized channel. | 2021-08-22 | -8/+6 | ||
| |/ | | | | | If the channel is not part of a category, `channel.category` will be `None`, and the check would fail with an `AttributeError`. | ||||
| * | Merge pull request #5 from python-discord/drop-deps | 2021-07-06 | -150/+126 | ||
| |\ | |||||
| | * | Bumps Project Version | 2021-07-07 | -2/+2 | ||
| | | | |||||
| | * | Locks Python Version | 2021-07-07 | -145/+124 | ||
| | | | | | | | | | | | Locks the python version in the Dockerfile to 3.9.5, and updates the version specified in the poetry file to limit support up to 3.9. | ||||
| | * | Removes Unnecessary Docker Packages | 2021-07-07 | -3/+0 | ||
| |/ | | | | | Removes GCC and git from the docker setup process, as they are not needed for the program. | ||||
| * | Merge pull request #4 from vcokltfre/vcokltfre/chore/cleanup | 2021-05-17 | -14/+3 | ||
| |\ | | | | | chore: remove unneeded env variables and command processing | ||||
| | * | fix: remove unused Union import | 2021-05-17 | -1/+1 | ||
| | | | |||||
| | * | chore: remove unneeded env variables and command processing | 2021-05-17 | -13/+2 | ||
| |/ | |||||
| * | Merge pull request #3 from python-discord/remove-opt-out | 2021-04-18 | -226/+288 | ||
| |\ | |||||
| | * | Remove unused Context import | 2021-04-09 | -1/+1 | ||
| | | | |||||
| | * | Various version upgrades for discord.py | 2021-04-09 | -179/+258 | ||
| | | | |||||
| | * | Remove opt_out from bot logic and opt out commands | 2021-04-09 | -45/+1 | ||
| | | | |||||
| | * | Remove opt_out column | 2021-04-09 | -1/+28 | ||
| |/ | |||||
| * | Chage from GHCR_TOKEN secret to GITHUB_TOKEN for Docker image publish | 2021-04-05 | -1/+1 | ||
| | | |||||
| * | Use .gitattributes to normalise line endings on check-in | 2021-03-13 | -0/+1 | ||
| | | |||||
| * | master => main | 2021-03-13 | -7/+7 | ||
| | | |||||
| * | Cascade delete channels on category deletion | 2021-03-04 | -1/+31 | ||
| | | |||||
| * | Merge pull request #2 from python-discord/add-bulk-deletion | 2021-01-30 | -2/+10 | ||
| |\ | |||||
| | * | Increase line length limit to 120 | 2021-01-30 | -1/+1 | ||
| | | | |||||
