aboutsummaryrefslogtreecommitdiff
path: root/src/components/image.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-04-22make pip-installable as a packagetassaron
2017-08-20don't merge undos when setting text with a buttontassaron
plus changes to life.py for pep8 compliance
2017-08-19fixed issues with undoing relative widgetstassaron
2017-08-10fixed relative image scale bug & Life preset bugtassaron
dicts must be alphabetized in AV files
2017-08-03image scale needs to be relativetassaron
2017-08-03max spinbox vals scale relatively & less errors when spamming res changetassaron
w/h attrs are locked during render so preview thread always get correctly-sized frame
2017-08-03relativeWidgets might as well be a listtassaron
2017-08-01x/y pixel values update to match output resolutiontassaron
2017-07-27fixed video component eating stdouttassaron
+ made height/width into properties to simplify render methods
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-17combined toolkit.py & frame.py into toolkit packagetassaron
2017-07-13components automatically drawPreview & save currentPresettassaron
this makes a Component easier to program. also more comments
2017-07-13more error messages for blank componentstassaron
2017-07-13merge consecutive static componentstassaron
2017-07-11fixed various bugstassaron
2017-07-09separated creation of ffmpeg commandtassaron
for future use to sllow editing the command before starting the export
2017-07-09a basic Sound component for mixing soundstassaron
to be greatly expanded...
2017-07-09more comments + warnings for outdated dependenciestassaron
2017-07-06image options to mirror & saturate colourstassaron
and some friendly docstrings
2017-07-05added basic rotate option to imagestassaron
2017-07-02frame-drawing tools for components to sharetassaron
2017-07-02renamed component basetassaron
2017-06-25project files save settings & out/in fieldstassaron
2017-06-24fixing bugstassaron
2017-06-23qt5 fixestassaron
also pep8 compliance
2017-06-23QT5 Conversion + Directory StructureDH4