Skip to content

Commit

Permalink
Update API compatibility for 0.15+ versions of Picard.
Browse files Browse the repository at this point in the history
  • Loading branch information
chadlwilson committed Nov 12, 2011
1 parent 9cc4326 commit a70815b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions titlesort.py
@@ -1,8 +1,8 @@
PLUGIN_NAME = 'Title sort names'
PLUGIN_AUTHOR = 'Jacob Rask'
PLUGIN_DESCRIPTION = 'Guesses title and album sortnames (language specific) and adds as titlesort and albumsort tags.'
PLUGIN_VERSION = "0.1.3"
PLUGIN_API_VERSIONS = ["0.12", "0.12"]
PLUGIN_VERSION = "0.1.4"
PLUGIN_API_VERSIONS = ["0.12", "0.15"]

from picard.metadata import register_track_metadata_processor
from picard.metadata import register_album_metadata_processor
Expand Down
4 changes: 2 additions & 2 deletions titleversion.py
@@ -1,8 +1,8 @@
PLUGIN_NAME = 'Move metadata to version tag'
PLUGIN_AUTHOR = 'Jacob Rask'
PLUGIN_DESCRIPTION = 'Moves song metadata such as "demo", "live" from title and titlesort to version tag.'
PLUGIN_VERSION = "0.1.3"
PLUGIN_API_VERSIONS = ["0.12", "0.12"]
PLUGIN_VERSION = "0.1.4"
PLUGIN_API_VERSIONS = ["0.12", "0.15"]

from picard.metadata import register_track_metadata_processor
import re
Expand Down

0 comments on commit a70815b

Please sign in to comment.