- Feb 04, 2025
-
-
Andrew Shu authored
-
Bauke authored
Closes tildes-community/tildes-cf#4 See merge request tildes-community/tildes-cf!13
-
talklittle authored
Closes tildes-community/tildes-cf#31 See merge request tildes-community/tildes-cf!15
-
talklittle authored
See merge request tildes-community/tildes-cf!14
-
Bauke authored
Closes tildes-community/tildes-cf#9 See merge request tildes-community/tildes-cf!12
-
talklittle authored
Closes tildes-community/tildes-cf#12 See merge request tildes-community/tildes-cf!10
-
talklittle authored
See merge request tildes-community/tildes-cf!11
-
talklittle authored
See merge request tildes-community/tildes-cf!9
-
talklittle authored
Closes tildes-community/tildes-cf#14 See merge request tildes-community/tildes-cf!8
-
talklittle authored
Closes tildes-community/tildes-cf#3 See merge request tildes-community/tildes-cf!6
-
Andrew Shu authored
The adduser script is recommended over useradd in Debian. Sets Bash as default shell instead of /bin/sh, in particular. Closes tildes-community/tildes-cf#18 See merge request tildes-community/tildes-cf!7
-
Andrew Shu authored
This is needed so systemd services are properly monitored by systemctl3.py in the Docker container. Closes tildes-community/tildes-cf#13 See merge request tildes-community/tildes-cf!4
-
Bauke authored
Closes tildes-community/tildes-cf#8 See merge request tildes-community/tildes-cf!3
-
talklittle authored
See merge request tildes-community/tildes-cf!2
-
talklittle authored
See merge request tildes-community/tildes-cf!1
-
- Mar 11, 2024
-
-
xzi authored
-
- Feb 18, 2024
-
-
Deimos authored
-
- Jul 17, 2023
-
- Jul 11, 2023
-
-
Deimos authored
-
Deimos authored
-
Deimos authored
Now that we have more subgroups, it was an issue that visiting a parent group would always show the topics from all of the subgroups, regardless of whether you were subscribed to them or not. This changes it so that, by default, only topics from subgroups the user is subscribed to will be shown. There is also a link at the top of the listing to toggle to the other view (all subgroups or only subscribed subgroups).
-
- Jun 23, 2023
-
- Jun 21, 2023
-
-
- Jun 20, 2023
-
-
Otherwise Ansible never creates the node_modules directory.
-
- Jun 08, 2023
-
-
Deimos authored
Multiple people have been asking me how they can make a one-time donation without going through GitHub or Patreon, so I'll re-add this for now but will need to keep an eye out for fraud and potentially disable it again soon.
-
- May 09, 2023
-
-
Deimos authored
All of the Stripe payments have been fraud for months now, it's not worth continuing to deal with the refunds and chargebacks.
-
- Jul 22, 2021
- Jul 15, 2021
- Jul 14, 2021
-
-
Deimos authored
This also involved installing some new packages for the type stubs for a few of the major third-party libraries. I also had to change some of the imports in some model files in strange ways, I'm not sure why some of these were necessary. I suspect this might be a bug in mypy, but I'm not sure if I'll be able to build a reproduction of it to be able to report it.
-
- Jul 13, 2021
-
-
Deimos authored
This is kind of dirty, but the prospector tool was broken after updating Python to 3.9, and it seems to no longer be maintained. I forked it to my personal GitHub account, un-pinned its dependencies, fixed a bug that came up after updating pylint, and deleted a few dependencies that I don't use (pylint plugins for Django, Flask, and Celery). This commit also fixes all the new complaints from the updated pylint, which were mostly explicitly re-raising exceptions, and some places where I could use a generator instead of an unnecessary list comprehension. This will work for now, but I probably don't want to leave it in this state. I should probably just stick to using the tools like pylint directly, since this is now the second time I've needed to replace my "tool runner" when it stopped being maintained (the first one was pylama).
-
- Jul 12, 2021
-
-
Deimos authored
There is one special exception in here: the unread_user_ids column in the message_conversations table had to be left as an integer array, since the PostgreSQL intarray extension doesn't work with bigints. The trigger that updates that column also needed a minor tweak. This isn't good, but I don't really like how that was done anyway (it was for the purpose of group messages that don't even exist), so it could probably just be eliminated.
-
Deimos authored
The minimal updates here were to update pygit2 and pip-tools. However, prospector is currently broken as well, so the full code style checks currently will not pass. This is not trivial to fix: - Currently, pylint returns errors from some of the mypy annotations - Upgrading pylint/astroid to the newest version fixes those errors, but breaks prospector - There is no newer release of prospector I'm not totally sure how I want to fix this, I may need to fork prospector.
-