Brianna Rainey

Results 22 comments of Brianna Rainey

@IamDH4 `freeze.py` currently works using whatever "PIL" package is installed. There seem to be no problems with freezing on Linux. I have not managed to build Pillow-SIMD on Windows, since...

I mention alpha_composite because it's [twice as slow using standard Pillow](https://python-pillow.org/pillow-perf/). So the export could probably be faster using standard Pillow if we avoided using alpha_composite when possible. I don't...

I tried testing the Flatpak, having never used one before, on my home system running Lubuntu 16.04 . After running your commands I had to install this runtime: `flatpak --user...

I'm using the official PPA from flatpak.org

Trying to make a package of this application myself was one factor that made me burn out in 2017, which resulted in the project going dormant for a few years....

I tried updating @AsavarTzeth's Flatpak and put my work in a [new branch](https://github.com/djfun/audio-visualizer-python/tree/pkg-flatpak). This Flatpak seems to work for me. I first built the Flatpak using `flatpak-builder` and put it...

Thanks! I like how you added the scribe cost in gold pieces... I forgot about that. However, this cost doesn't apply when leveling up -- it's only for copying spells...

In theory I would like to implement multiclassing, but it would challenge a lot of assumptions made throughout the code. The code treats "level" and "class" as if they are...

Another design could be treating the class as an attribute of the character which itself owns the level. E.g., `character.rogue.level = 1; character.ranger.level = 2; assert character.level == 3` ......

Thanks for that list. As you said, it would be tricky to implement with the current state of the library, but this gives a good idea of what the long-term...