aboutsummaryrefslogtreecommitdiff
path: root/src/command.py
AgeCommit message (Collapse)Author
2026-01-13Use pyproject.toml + uv_buildAeliton G. Silva
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
2026-01-11update to Qt 6 and Pillow 12tassaron
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.
2022-05-09move variable declaration closer to usage.tassaron
2022-05-09no components on commandline adds a default visualizertassaron
2022-05-09rename visualisation to visualizationtassaron
2022-05-07fixtassaron
2022-05-07concatenate trimmed ffmpeg logs to the test reporttassaron
2022-05-07--export-project uses -i and -o if providedtassaron
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
2022-05-05show program name as 'avp' when invoked as python -m avptassaron
2022-05-02add commandline option to disable preview during exporttassaron
the weird use of type() is to avoid restructuring the code at this time. I will refactor this in a different pull request
2022-04-30create test report in home folder after `--test`tassaron
2022-04-29use super().__init__ in the modern python3 styletassaron
2022-04-28change call to superclass __init__ to super()tassaron
2022-04-26tests for commandline argument parsingtassaron
2022-04-25add --debug option and rename -e so it's more explicittassaron
2022-04-22add commandline option for tests. add first teststassaron
2017-08-28ctrl-c ends commandline mode properlytassaron
2017-08-14undoable removeComponent actiontassaron
2017-07-27quit if project doesn't exist when exporting from commandlinetassaron
2017-07-23ComponentError exception wraps previewRendertassaron
probably where errors are likeliest to be found
2017-07-23components auto-connect & track widgets, less autosave spamtassaron
importing toolkit from live interpreter now works
2017-07-20ffmpeg functions moved to toolkit, component format simplifiedtassaron
component methods are auto-decorated & settings are now class variables
2017-07-15use -t on inputs so ffmpeg knows when to stop filterstassaron
+ better feedback in cmd mode
2017-07-15Video comp verifies audio streams, videoThread moved into Coretassaron
off-by-1 bug fixed in exporting, & use fewer threads for fewer CPUs
2017-07-06image options to mirror & saturate colourstassaron
and some friendly docstrings
2017-07-04moved functions into toolkit, fixed CMD appearing on Windowstassaron
2017-06-25needs more tuplestassaron
2017-06-25--export commandline optiontassaron
overrides -i and -o to use saved fields from a project file
2017-06-25project files save settings & out/in fieldstassaron
2017-06-23qt5 fixestassaron
also pep8 compliance
2017-06-23QT5 Conversion + Directory StructureDH4