| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Use pyproject.toml + uv_build | Aeliton G. Silva | 2026-01-13 | 1 | -254/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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 to Qt 6 and Pillow 12 | tassaron | 2026-01-11 | 1 | -75/+103 |
| | | | | | 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 #78 | tassaron | 2024-09-15 | 1 | -3/+3 |
| | | |||||
| * | remove extra window properties from window objects | tassaron | 2022-04-29 | 1 | -2/+2 |
| | | | | | | instead of windows with properties which are windows, windows now have the UI added directly to them using an argument of `uic.loadUi` Also, DPI scaling moved to MainWindow __init__ | ||||
| * | make pip-installable as a package | tassaron | 2022-04-22 | 1 | -4/+4 |
| | | |||||
| * | file logging can be turned completely off | tassaron | 2017-08-27 | 1 | -7/+14 |
| | | | | | and various changes to log levels and messages everywhere | ||||
| * | don't merge undos when setting text with a button | tassaron | 2017-08-20 | 1 | -0/+2 |
| | | | | | plus changes to life.py for pep8 compliance | ||||
| * | fixed issues with undoing relative widgets | tassaron | 2017-08-19 | 1 | -2/+0 |
| | | |||||
| * | using the builtin logging module | tassaron | 2017-08-10 | 1 | -4/+15 |
| | | |||||
| * | relativeWidgets might as well be a list | tassaron | 2017-08-03 | 1 | -20/+17 |
| | | |||||
| * | relative gradients & last good frame used for preview errors | tassaron | 2017-08-03 | 1 | -11/+4 |
| | | |||||
| * | x/y pixel values update to match output resolution | tassaron | 2017-08-01 | 1 | -0/+3 |
| | | |||||
| * | waveform component is working, preview is glitchy | tassaron | 2017-07-29 | 1 | -5/+5 |
| | | |||||
| * | starting work on Waveform component | tassaron | 2017-07-29 | 1 | -147/+51 |
| | | | | | split Video class out of Video component for reuse in Waveform | ||||
| * | some minor bugfixes | tassaron | 2017-07-27 | 1 | -5/+9 |
| | | |||||
| * | fixed video component eating stdout | tassaron | 2017-07-27 | 1 | -36/+31 |
| | | | | | + made height/width into properties to simplify render methods | ||||
| * | error can be locked within properties() | tassaron | 2017-07-25 | 1 | -20/+15 |
| | | | | | and simplified the componenterrors again | ||||
| * | repeated errors don't cause repeated windows | tassaron | 2017-07-25 | 1 | -2/+2 |
| | | |||||
| * | preset manager uses mainwindow row for every button | tassaron | 2017-07-24 | 1 | -10/+7 |
| | | | | | and minor changes to componenterrors | ||||
| * | ComponentError exception wraps previewRender | tassaron | 2017-07-23 | 1 | -3/+3 |
| | | | | | probably where errors are likeliest to be found | ||||
| * | better component error messages | tassaron | 2017-07-23 | 1 | -12/+12 |
| | | | | | fatal errors cancel the export instead of crashing | ||||
| * | components auto-connect & track widgets, less autosave spam | tassaron | 2017-07-23 | 1 | -69/+29 |
| | | | | | importing toolkit from live interpreter now works | ||||
| * | add component in context menu, del/ins hotkeys | tassaron | 2017-07-20 | 1 | -2/+2 |
| | | | | | + preset manager uses mainwindow component list | ||||
| * | ffmpeg functions moved to toolkit, component format simplified | tassaron | 2017-07-20 | 1 | -12/+11 |
| | | | | | component methods are auto-decorated & settings are now class variables | ||||
| * | combined toolkit.py & frame.py into toolkit package | tassaron | 2017-07-17 | 1 | -1/+1 |
| | | |||||
