| Commit message (Collapse) | Author | Files | Lines |
|
Allegedly the gui_scripts is only different from console_scripts on Windows, and it has the effect of hiding the console window. This seemed to make the `avp` entrypoint crash, possibly because the app already contains its own logic for hiding the console window(?). I've tested this on Windows 11 and it seems to work better using console_scripts.
|
|
Catching this exception prevents the app from crashing on Windows when cancelling an export in progress, or when finishing the export if components use FFmpeg pipes themselves.
|
|
|
|
|
|
the weird use of type() is to avoid restructuring the code at this time. I will refactor this in a different pull request
|
|
It was nice for consistency with the editing preview, but this slows down the main thread if we're doing the preview synchronously. And it's not really inaccurate to the final product, as far as I know.
|
|
removing the Python thread might not have been necessary. I will test this next
|
|
|
|
|
|
using the default environment, Gnome on Wayland, in a clean virtual machine
|
|
|
|
numpy.floor now returns a float if given a float
|
|
|
|
|
|
|
|
|
|
https://github.com/djfun/audio-visualizer-python/issues/28#issuecomment-314791421
|
|
|
|
It is easier for people to install with pip. We can always go back to SIMD in the future when we have a better install script. Packaged versions can still use Pillow-SIMD
|
|
happens when the video is done exporting sometimes. Not worth fixing
|
|
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__
|
|
|
|
|
|
log before and after method call instead of just after
|
|
fix deleting an open file if logger changes after parsing commandline args
on Windows deleting an open file raises an exception
|