aboutsummaryrefslogtreecommitdiffstats
path: root/src/toolkit/common.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use pyproject.toml + uv_buildAeliton G. Silva2026-01-131-192/+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 12tassaron2026-01-111-44/+43
| | | | 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.
* relative widgets scale properly when undoing at different resolutionstassaron2017-08-201-0/+1
|
* remove % from log callstassaron2017-08-191-6/+10
|
* fixed issues with undoing relative widgetstassaron2017-08-191-5/+42
|
* undoable edits for normal component settings; TODO: merge small editstassaron2017-08-151-0/+12
|
* component class now tracks colorwidgetstassaron2017-08-011-19/+0
| | | | so adding new color-selection widgets is now simple
* added Spectrum component with many optionstassaron2017-07-301-0/+43
| | | | tweaked Waveform, added some ffmpeg logging, made generic widget functions
* waveform component is working, preview is glitchytassaron2017-07-291-21/+0
|
* starting work on Waveform componenttassaron2017-07-291-9/+28
| | | | split Video class out of Video component for reuse in Waveform
* better component error messagestassaron2017-07-231-0/+8
| | | | fatal errors cancel the export instead of crashing
* components auto-connect & track widgets, less autosave spamtassaron2017-07-231-44/+12
| | | | importing toolkit from live interpreter now works
* ffmpeg functions moved to toolkit, component format simplifiedtassaron2017-07-201-2/+10
| | | | component methods are auto-decorated & settings are now class variables
* combined toolkit.py & frame.py into toolkit packagetassaron2017-07-171-0/+133