Aaron Leopold
Aaron Leopold
A rough implementation for smart lists was added as part of https://github.com/stumpapp/stump/pull/241. The basic, QOL items which remain include: - [ ] Create and update a smart list's filters via...
Is there any metadata you'd want to be able to associate with the relations, as well? For example, add a notes field or something that provides extra details on the...
I've been thinking about this recently and wanted to dump an idea I had here for when I am able to try and support this down the road. Basically, the...
This is definitely something I've considered a few times since starting Stump, and coincidentally something that was recently chatted about on the Discord server. In general, before I would seriously...
I've implemented the first functionality in the linked PR: ``` Have an additional menu item in the library options dropdown to "clean" a library ``` It won't exist in the...
Hey @ShadowXCC, I don't actually use a Pi to compile for those platforms. I don't even want to think about how much longer that would take 😅 If you take...
Could also try some sort of caching: https://blog.mgattozzi.dev/caching-rust-docker-builds/ Trying it out here https://github.com/aaronleopold/stump/tree/docker-opt-59
My latest changes on [that branch](https://github.com/aaronleopold/stump/tree/docker-opt-59) are *close* to working as I want. It seems to only work on the server app directly, meaning when I make a small change...
> How/where are Docker image builds managed from, docker hub? Yeah it goes to docker hub, you can find the docker things here: https://github.com/aaronleopold/stump/tree/develop/scripts/release > The past links in this...
I use `buildx` to build for multiple platforms in _parallel_, not sequentially. Then, those images get pushed to https://hub.docker.com/r/aaronleopold/stump-preview. I rarely build the ARM image because without any caching of...