| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2022-02-13 | Listen for thread create and unarchive events | -0/+20 | ||
| 2022-02-13 | Ignore threads in forum channels | -2/+6 | ||
| Discord.py doesn't support forum channels, so ignore them to avoid tracebacks. | ||||
| 2022-02-13 | Only sync thread archive status on startup | -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. | ||||
| 2021-12-21 | Fix on_thread_update as it takes 2 args, not one | -1/+1 | ||
| 2021-12-21 | Correctly use string IDs for threads | -2/+2 | ||
| 2021-12-21 | Bump version number | -2/+2 | ||
| 2021-12-21 | flake8 ignore line break before/after binary operator | -1/+5 | ||
| 2021-12-21 | Store what thread a message was sent in | -0/+3 | ||
| Taking care not to trigger on thread creation system messages. | ||||
| 2021-12-21 | Update stored thread data on thread update | -0/+11 | ||
| 2021-12-21 | Upsert threads when syncing channels | -5/+50 | ||
| 2021-12-21 | Add discord.py thread models & migration | -6/+86 | ||
| 2021-12-21 | Use tz-aware datetimes throughout project | -4/+5 | ||
| 2021-12-21 | db type that supports aware datetimes in user-land | -0/+36 | ||
| 2021-12-21 | Support new guild specific avatars | -8/+44 | ||
| 2021-11-03 | Expose psql port in docker-compose | -0/+2 | ||
| This allows for alembic to generate migrations by connecting to the docker-compose postgres instance. | ||||
| 2021-11-03 | Bump d.py to 2.0a0 | -179/+303 | ||
| 2021-09-14 | Detect and copy config files passed by bot compose | -0/+5 | ||
| 2021-09-13 | Explicitly define the metricity database name in docker-compose | -1/+1 | ||
| 2021-09-11 | Remove double negative from env var | -1/+1 | ||
| 2021-09-09 | Capitalise SKIP_METRICITY env var name | -1/+1 | ||
| 2021-09-09 | Use case-insentivite compare to true to determine metricity skip | -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. | ||||
| 2021-09-09 | Create database before migrating and running | -1/+7 | ||