aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use pyproject.toml + uv_buildAeliton G. Silva2026-01-131-316/+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-75/+77
| | | | 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.
* move variable declaration closer to usage.tassaron2022-05-091-6/+4
|
* no components on commandline adds a default visualizertassaron2022-05-091-0/+4
|
* rename visualisation to visualizationtassaron2022-05-091-4/+7
|
* 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
* show program name as 'avp' when invoked as python -m avptassaron2022-05-051-0/+1
|
* add commandline option to disable preview during exporttassaron2022-05-021-1/+8
| | | | the weird use of type() is to avoid restructuring the code at this time. I will refactor this in a different pull request
* create test report in home folder after `--test`tassaron2022-04-301-1/+34
|
* use super().__init__ in the modern python3 styletassaron2022-04-291-1/+1
|
* change call to superclass __init__ to super()tassaron2022-04-281-1/+1
|
* tests for commandline argument parsingtassaron2022-04-261-1/+5
|
* add --debug option and rename -e so it's more explicittassaron2022-04-251-7/+18
|
* add commandline option for tests. add first teststassaron2022-04-221-7/+32
|
* ctrl-c ends commandline mode properlytassaron2017-08-281-0/+9
|
* undoable removeComponent actiontassaron2017-08-141-0/+1
|
* quit if project doesn't exist when exporting from commandlinetassaron2017-07-271-1/+3
|
* ComponentError exception wraps previewRendertassaron2017-07-231-0/+6
| | | | probably where errors are likeliest to be found
* components auto-connect & track widgets, less autosave spamtassaron2017-07-231-2/+0
| | | | importing toolkit from live interpreter now works
* ffmpeg functions moved to toolkit, component format simplifiedtassaron2017-07-201-5/+5
| | | | component methods are auto-decorated & settings are now class variables
* use -t on inputs so ffmpeg knows when to stop filterstassaron2017-07-151-0/+20
| | | | + better feedback in cmd mode
* Video comp verifies audio streams, videoThread moved into Coretassaron2017-07-151-14/+8
| | | | off-by-1 bug fixed in exporting, & use fewer threads for fewer CPUs
* image options to mirror & saturate colourstassaron2017-07-061-0/+5
| | | | and some friendly docstrings