mirror of
https://github.com/beetbox/beets.git
synced 2025-12-10 02:22:25 +01:00
document item_imported plugin event
This commit is contained in:
parent
a928ffa4d5
commit
55c72f678e
3 changed files with 5 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue