mirror of
https://github.com/beetbox/beets.git
synced 2025-12-07 17:16:07 +01:00
plugin renames: fuzzy and random
Renamed fuzzy_search to fuzzy and rdm to random. These names should be easier to remember since they are the same as the commands they provide. --HG-- rename : beetsplug/fuzzy_search.py => beetsplug/fuzzy.py rename : beetsplug/rdm.py => beetsplug/random.py rename : docs/plugins/fuzzy_search.rst => docs/plugins/fuzzy.rst rename : docs/plugins/rdm.rst => docs/plugins/random.rst
This commit is contained in:
parent
6b000983c3
commit
51e9c519d4
6 changed files with 20 additions and 11 deletions
|
|
@ -88,7 +88,7 @@ fuzzy_cmd.func = fuzzy_list
|
|||
|
||||
class Fuzzy(BeetsPlugin):
|
||||
def __init__(self):
|
||||
super(Fuzzy, self).__init__('fuzzy')
|
||||
super(Fuzzy, self).__init__()
|
||||
self.config.add({
|
||||
'threshold': 0.7,
|
||||
})
|
||||
|
|
@ -14,6 +14,7 @@
|
|||
|
||||
"""Get a random song or album from the library.
|
||||
"""
|
||||
from __future__ import absolute_import
|
||||
from beets.plugins import BeetsPlugin
|
||||
from beets.ui import Subcommand, decargs, print_obj
|
||||
from beets.util.functemplate import Template
|
||||
|
|
@ -6,6 +6,14 @@ Changelog
|
|||
|
||||
This release entirely revamps beets' configuration system.
|
||||
|
||||
* Renamed plugins: The ``rdm`` plugin has been renamed to ``random`` and
|
||||
``fuzzy_search`` has been renamed to ``fuzzy``.
|
||||
* Renamed config options: Many plugins have a flag dictating whether their
|
||||
action runs at import time. This option had many names (``autofetch``,
|
||||
``autoembed``, etc.) but is now consistently called ``auto``.
|
||||
* Reorganized import config options: The various ``import_*`` options are now
|
||||
organized under an ``import:`` heading and their prefixes have been removed.
|
||||
|
||||
1.0rc2 (in development)
|
||||
-----------------------
|
||||
|
||||
|
|
@ -35,7 +43,7 @@ begins today on features for version 1.1.
|
|||
* New plugin: :doc:`/plugins/convert` **transcodes** music and embeds album art
|
||||
while copying to a separate directory. Thanks to Jakob Schnitzer and Andrew G.
|
||||
Dunn.
|
||||
* New plugin: :doc:`/plugins/fuzzy_search` lets you find albums and tracks
|
||||
* New plugin: :doc:`/plugins/fuzzy` lets you find albums and tracks
|
||||
using **fuzzy string matching** so you don't have to type (or even remember)
|
||||
their exact names. Thanks to Philippe Mongeau.
|
||||
* New plugin: :doc:`/plugins/echonest_tempo` fetches **tempo** (BPM) information
|
||||
|
|
@ -277,7 +285,7 @@ release.
|
|||
and delete the originals, which is inefficient if the source and destination
|
||||
are on the same filesystem. Use the ``import_move`` configuration option and
|
||||
see :doc:`/reference/config` for more details. Thanks to Domen Kožar.
|
||||
* New :doc:`/plugins/rdm`: Randomly select albums and tracks from your library.
|
||||
* New :doc:`/plugins/random`: Randomly select albums and tracks from your library.
|
||||
Thanks to Philippe Mongeau.
|
||||
* The :doc:`/plugins/mbcollection` by Jeffrey Aylesworth was added to the core
|
||||
beets distribution.
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
Fuzzy Search Plugin
|
||||
===================
|
||||
|
||||
The ``fuzzy_search`` plugin provides a command that search your library using
|
||||
The ``fuzzy`` plugin provides a command that search your library using
|
||||
fuzzy pattern matching. This can be useful if you want to find a track with complicated characters in the title.
|
||||
|
||||
First, enable the plugin named ``fuzzy_search`` (see :doc:`/plugins/index`).
|
||||
First, enable the plugin named ``fuzzy`` (see :doc:`/plugins/index`).
|
||||
You'll then be able to use the ``beet fuzzy`` command::
|
||||
|
||||
$ beet fuzzy Vareoldur
|
||||
|
|
@ -50,11 +50,11 @@ disabled by default, but you can turn them on as described above.
|
|||
inline
|
||||
scrub
|
||||
rewrite
|
||||
rdm
|
||||
random
|
||||
mbcollection
|
||||
importfeeds
|
||||
the
|
||||
fuzzy_search
|
||||
fuzzy
|
||||
zero
|
||||
ihate
|
||||
convert
|
||||
|
|
@ -97,8 +97,8 @@ Miscellaneous
|
|||
'''''''''''''
|
||||
|
||||
* :doc:`web`: An experimental Web-based GUI for beets.
|
||||
* :doc:`rdm`: Randomly choose albums and tracks from your library.
|
||||
* :doc:`fuzzy_search`: Search albums and tracks with fuzzy string matching.
|
||||
* :doc:`random`: Randomly choose albums and tracks from your library.
|
||||
* :doc:`fuzzy`: Search albums and tracks with fuzzy string matching.
|
||||
* :doc:`mbcollection`: Maintain your MusicBrainz collection list.
|
||||
* :doc:`ihate`: Automatically skip albums and tracks during the import process.
|
||||
* :doc:`bpd`: A music player for your beets library that emulates `MPD`_ and is
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
Random Plugin
|
||||
=============
|
||||
|
||||
The ``rdm`` plugin provides a command that randomly selects tracks or albums
|
||||
The ``random`` plugin provides a command that randomly selects tracks or albums
|
||||
from your library. This can be helpful if you need some help deciding what to
|
||||
listen to.
|
||||
|
||||
First, enable the plugin named ``rdm`` (see :doc:`/plugins/index`). You'll then
|
||||
First, enable the plugin named ``random`` (see :doc:`/plugins/index`). You'll then
|
||||
be able to use the ``beet random`` command::
|
||||
|
||||
$ beet random
|
||||
Loading…
Reference in a new issue