aboutsummaryrefslogtreecommitdiff
path: root/src/core.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-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-30raise log level of library logfiletassaron
2022-04-29log ffmpeg bintassaron
2022-04-29remove extra window properties from window objectstassaron
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__
2022-04-29rename videoCreated method to stopVideoThreadtassaron
2022-04-29delay opening logfile until first call to loggertassaron
fix deleting an open file if logger changes after parsing commandline args on Windows deleting an open file raises an exception
2022-04-22make pip-installable as a packagetassaron
2017-08-28ctrl-c ends commandline mode properlytassaron
2017-08-27file logging can be turned completely offtassaron
and various changes to log levels and messages everywhere
2017-08-26fixed too-large Color sizes, fixed a redoing bug, rm pointless thingstassaron
and now Ctrl+Alt+Shift+A gives a bunch of debug info
2017-08-21potential dataDir paths in comments for future referencetassaron
2017-08-19remove % from log callstassaron
2017-08-19fixed issues with undoing relative widgetstassaron
2017-08-17undoable preset open, rename, and delete'tassaron
2017-08-17component updateWrapper and more obvious method namestassaron
2017-08-16undoable component movementtassaron
2017-08-15undoable edits for normal component settings; TODO: merge small editstassaron
2017-08-14undoable removeComponent actiontassaron
2017-08-14faster Spectrum preview & custom VERBOSE loglvltassaron
2017-08-12rv pointless optimization & remove circular imports (again...)tassaron
the last commit does showcase an enlightening bug however
2017-08-10using the builtin logging moduletassaron
2017-08-03save presets as floats so project resolution is not relevanttassaron
unfortunately this breaks old projects and presets
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-07-29generic preview sound for waveform componenttassaron
with secret preference to use the audio file again
2017-07-27quit if project doesn't exist when exporting from commandlinetassaron
2017-07-25repeated errors don't cause repeated windowstassaron
2017-07-23ComponentError exception wraps previewRendertassaron
probably where errors are likeliest to be found
2017-07-23better component error messagestassaron
fatal errors cancel the export instead of crashing
2017-07-23components auto-connect & track widgets, less autosave spamtassaron
importing toolkit from live interpreter now works
2017-07-20add component in context menu, del/ins hotkeystassaron
+ preset manager uses mainwindow component list
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-16new hotkey to preview the ffmpeg commandtassaron
2017-07-16apply complex filters to audio streams from componentstassaron
tons of sound options could be given now, + installation using setup.py
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-13components automatically drawPreview & save currentPresettassaron
this makes a Component easier to program. also more comments
2017-07-13staticComponents list is reversed nowtassaron
2017-07-13added option to include audio from Video 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-04moved functions into toolkit, fixed CMD appearing on Windowstassaron
2017-07-02rm unneeded imports, work on freezingtassaron
2017-06-25renamed Original Audio Visualization to Classic Visualizertassaron