Micha

Results 9 comments of Micha

Thank you for working on this! It's much appreciated :relaxed: >One last hiccup I need to nail down: If a group or user is a moderator in a particular forum,...

I'm very grateful for such a quick and exhaustive answer. >The issue is that Post and User have an existing relationship. Adding a secondary many-to-many relationship on top of that...

Ah, that makes sense. I opted for the solution without `UserLike` so that I wouldn't have to write a data migration for the running totals, which I already have on...

Wait, no, that's not right. When I originally thought the issue was fixed, I forgot to include the `lazy='joined'` arguments where they should have been (very careless of me), leading...

>Add upgrade plugin to both cli and management ui. The primary effect here would be finding any settings that exist for the plugin that are not currently stored and removing...

>Right now the only way to get new settings from a plugin is to uninstall and reinstall via the gui or cli. However this erases the current configuration. Ah, I...

I've made a plugin for this! https://github.com/micha030201/flaskbb-plugin-polls While the ``flaskbb_form_new_topic`` hook (in combination with the relevant event & template hooks) would be sufficient to enable poll creation, there doesn't seem...

In Python 3.12, a DeprecationWarning [is issued](https://docs.python.org/3/library/os.html#os.fork) in `os.fork()` when the forking process has multiple threads. There is a well-referenced discussion linked in the docs, but the gist is: if...

This is a bug caused by this commit: https://github.com/Kozea/pygal/commit/51a96d34bf81c54256539e9528f41b7a8ab95dc2 It's exactly as @cbeytas described it in the comment there -- `stroke_width` set from a `Style` is applied with more specificity...