Collin Heist
Collin Heist
Sorry I wasn't clear - my question was not why gravity wasn't affecting the draw, it was why the annotate repositioning (`45x45+25+25` in my example) were affecting the draw path....
Where can I find that info? I am able to do `freetype-config --version` on the Mac (incorrect) one, and I get `25.0.19`. Doing `freetype-config --ftversion` gives `2.13.0`.
On the Mac, I have tried it with FreeType version 2.8.0 (Docker container) and 2.12.1 (native install) - both produce the same result. On Linux it is version 2.10.4.
Thanks for following up. I remember looking into how to update my version of Freetype, and then got busy with other things. I can test on arm64 when the fix...
Thanks for the help. How would I make Font adjustments using this method? I removed a majority of them from my original post, but in reality I have adjustments for...
Decided I will not be implementing this. It is quicker to just create cards for the Series directly.
I think a toggleable dark/light mode could *probably* be accomplished like so: ```javascript $('.ui').toggleClass('inverted', true); // Dark mode $('.ui').toggleClass('inverted', false); // Light mode ``` Although any CSS selectors using the...
Task scheduling _might_ be doable with BackgroundTasks objects, but this is limited in terms of periodic scheduling and task monitoring. The [APScheduler](https://apscheduler.readthedocs.io/en/3.x/userguide.html) module looks like a good solution; [here](https://github.com/tiangolo/fastapi/issues/520#issuecomment-716969948) is...
Looks like APScheduler will not be able to write to the database at all, which is problematic. The problem is that SQL Alchemy is not multi thread/process safe; leading to...
Created the https://github.com/CollinHeist/TitleCardMaker-CardTypes/tree/web-ui branch on the TitleCardMaker-CardTypes repository; and added a JSON file in [563e0d1e4e80e0d9fda34daf32352b1aaed6a6d2](https://github.com/CollinHeist/TitleCardMaker-CardTypes/commit/563e0d1e4e80e0d9fda34daf32352b1aaed6a6d2) which defines a JSON file containing card details for all user-created cards. This should be...