Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ prof/
.venv/
.env/
.vscode/
tests/data/log/
tests/data/settings.ini
tests/data/autosave.avp
*.mkv
*.mp4
*.wav
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "uv_build"
name = "audio-visualizer-python"
description = "Create audio visualization videos from a GUI or commandline"
readme = "README.md"
version = "2.2.1"
version = "2.2.2"
requires-python = ">= 3.12"
license = "MIT"
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion src/avp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import logging


__version__ = "2.2.1"
__version__ = "2.2.2"


class Logger(logging.getLoggerClass()):
Expand Down
5 changes: 5 additions & 0 deletions src/avp/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
import string


from .core import Core

# Core class must store settings as class variables
# before we can use many things in AVP
Core.storeSettings()
log = logging.getLogger("AVP.Main")


Expand Down
1 change: 0 additions & 1 deletion src/avp/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ def parseCompName(self, name):
for i, compFileName in enumerate(compFileNames):
if name.lower() in compFileName:
return self.core.compNames[i]
return

return None

Expand Down
Loading