aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Use pyproject.toml + uv_buildAeliton G. Silva2026-01-1353-76/+347
|/ | | | | | | | | | | | | | | | | | | | | | | | | This replaces setup.py by a modern pyproject.toml using uv_build backend. Dependencies are being also managed by uv, so to install dependencies and run the project one can execute: ``` uv sync uv run pytest # optional python -m avp ``` To build the both source and binary (wheel) distribution package run: ``` uv build ``` Uv can be installed with `pip install uv`. The directory structure has been changed to reflect best practices. - src/* -> src/avp/ - src/tests -> ../tests
* update readme and create requirements.txt for v2.1.0tassaron2026-01-122-4/+8
|
* update for Pillow 12 and Qt 6tassaron2026-01-122-3/+2
|
* update to Qt 6 and Pillow 12tassaron2026-01-1130-2240/+2558
| | | | and yeah, I accidentally ran black on the codebase. I don't want to spend more free time fixing that. All of these changes are simple renames or removals, nothing too major.
* fix #78tassaron2024-09-152-3/+6
|
* update readme for Ubuntu 24.04Brianna Rainey2024-04-101-21/+5
| | | also remove outdated macOS instructions, which probably don't work anymore
* pin pillow version to one with qt5 supportBrianna Rainey2024-04-101-1/+1
|
* fix #75 by computing evolution during frameRenderBrianna Rainey2023-02-171-24/+12
| | | | instead of pre-computing the entire evolution during preFrameRender, it creates 60 ticks' worth of grid data at a time during the rendering process, deleting old data as it goes. This works with the current render process and should still work if the render process changes, as long as render threads don't become extremely de-synchronized (which would probably be an issue anyway)
* ignore cells that are 40+ coords out of frameBrianna Rainey2023-02-171-0/+11
|
* fix typoBrianna Rainey2023-02-171-1/+1
|
* Add comments to Life componentBrianna Rainey2023-02-171-1/+14
| | | | added comments to preFrameRender and gridForTick methods
* change screenshot, remove unused filetassaron2022-05-102-59/+0
|
* log name of missing/unreadable audio filetassaron2022-05-102-1/+2
|
* move variable declaration closer to usage.tassaron2022-05-092-7/+5
|
* use pytest-qt to test actual export processtassaron2022-05-092-1/+31
|
* no components on commandline adds a default visualizertassaron2022-05-091-0/+4
|
* include test data in package, pytest-qt plugin for testing Qt event loop, ↵tassaron2022-05-095-25/+22
| | | | remove useless pytest fixtures
* rename visualisation to visualizationtassaron2022-05-092-6/+9
|
* demote error message to debug messagetassaron2022-05-091-1/+1
| | | | it's worth noting, but not important enough for 'error'
* reorganize Classic Visualizer widgets to be more left-alignedtassaron2022-05-081-29/+68
| | | | Looks less weird when window is maximized
* Add sensitivity option to classic visualizertassaron2022-05-082-39/+51
| | | | Allows to decide how balanced the up/down smoothing is. The default (0) is the same as before; increasing sensitivity makes the up/down values closer to each other (less smooth, more sensitive)
* fixtassaron2022-05-071-1/+1
|
* concatenate trimmed ffmpeg logs to the test reporttassaron2022-05-071-8/+29
|
* --export-project uses -i and -o if providedtassaron2022-05-071-32/+49
| | | | | Also remove unneeded instance variables `parser` and `args`, and quit if input/output can't be determined. Also, --debug and --test are now mutually exclusive
* Fix drawing of "peace" shape. Rename a shape to pietassaron2022-05-072-9/+6
|