document item_imported plugin event

This commit is contained in:
Adrian Sampson 2011-09-23 11:51:20 -07:00
parent a928ffa4d5
commit 55c72f678e
3 changed files with 5 additions and 2 deletions

View file

@ -12,7 +12,7 @@
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
__version__ = '1.0b10'
__version__ = '1.0b11'
__author__ = 'Adrian Sampson <adrian@radbox.org>'
import beets.library

View file

@ -198,6 +198,9 @@ currently available are:
* *album_imported*: called with an ``Album`` object every time the ``import``
command finishes adding an album to the library
* *item_imported*: called with an ``Item`` object every time the importer adds a
singleton to the library (not called for full-album imports)
The included ``mpdupdate`` plugin provides an example use case for event listeners.
Extend the Autotagger

View file

@ -22,7 +22,7 @@ def _read(fn):
return open(path).read()
setup(name='beets',
version='1.0b10',
version='1.0b11',
description='music tagger and library organizer',
author='Adrian Sampson',
author_email='adrian@radbox.org',