diff --git a/README.rst b/README.rst index eec817f94..2b012db02 100644 --- a/README.rst +++ b/README.rst @@ -79,7 +79,7 @@ news and updates. You can install beets by typing ``pip install beets``. Then check out the `Getting Started`_ guide. -.. _its Web site: http://beets.radbox.org/ +.. _its Web site: http://beets.io/ .. _Getting Started: http://beets.readthedocs.org/page/guides/main.html .. _@b33ts: http://twitter.com/b33ts/ diff --git a/beets/autotag/mb.py b/beets/autotag/mb.py index 9403187ef..cc1780365 100644 --- a/beets/autotag/mb.py +++ b/beets/autotag/mb.py @@ -33,7 +33,7 @@ VARIOUS_ARTISTS_ID = '89ad4ac3-39f7-470e-963a-56509c546377' BASE_URL = 'http://musicbrainz.org/' musicbrainzngs.set_useragent('beets', beets.__version__, - 'http://beets.radbox.org/') + 'http://beets.io/') class MusicBrainzAPIError(util.HumanReadableException): diff --git a/beetsplug/discogs.py b/beetsplug/discogs.py index d340fb236..d3088d218 100644 --- a/beetsplug/discogs.py +++ b/beetsplug/discogs.py @@ -41,7 +41,7 @@ import os urllib3_logger = logging.getLogger('requests.packages.urllib3') urllib3_logger.setLevel(logging.CRITICAL) -USER_AGENT = u'beets/{0} +http://beets.radbox.org/'.format(beets.__version__) +USER_AGENT = u'beets/{0} +http://beets.io/'.format(beets.__version__) # Exceptions that discogs_client should really handle but does not. CONNECTION_ERRORS = (ConnectionError, socket.error, httplib.HTTPException, diff --git a/docs/changelog.rst b/docs/changelog.rst index 1110a3043..479546068 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1435,7 +1435,7 @@ previous versions would spit out a warning and then list your entire library. There's more detail than you could ever need `on the beets blog`_. -.. _on the beets blog: http://beets.radbox.org/blog/flexattr.html +.. _on the beets blog: http://beets.io/blog/flexattr.html 1.2.2 (August 27, 2013) @@ -2023,7 +2023,7 @@ begins today on features for version 1.1. unintentionally loading the plugins they contain. .. _The Echo Nest: http://the.echonest.com/ -.. _Tomahawk resolver: http://beets.radbox.org/blog/tomahawk-resolver.html +.. _Tomahawk resolver: http://beets.io/blog/tomahawk-resolver.html .. _mp3gain: http://mp3gain.sourceforge.net/download.php .. _aacgain: http://aacgain.altosdesign.com diff --git a/docs/guides/advanced.rst b/docs/guides/advanced.rst index c83c39f27..119139c50 100644 --- a/docs/guides/advanced.rst +++ b/docs/guides/advanced.rst @@ -78,7 +78,7 @@ including a beets server. Just download Tomahawk and open its settings to connect it to beets. `A post on the beets blog`_ has a more detailed guide. .. _A post on the beets blog: - http://beets.radbox.org/blog/tomahawk-resolver.html + http://beets.io/blog/tomahawk-resolver.html .. _Tomahawk: http://www.tomahawk-player.org @@ -132,7 +132,7 @@ And, unlike :ref:`built-in fields `, such fields can be removed:: Read more than you ever wanted to know about the *flexible attributes* feature `on the beets blog`_. -.. _on the beets blog: http://beets.radbox.org/blog/flexattr.html +.. _on the beets blog: http://beets.io/blog/flexattr.html Choose a path style manually for some music diff --git a/docs/guides/main.rst b/docs/guides/main.rst index b43e0e9b1..6e003705e 100644 --- a/docs/guides/main.rst +++ b/docs/guides/main.rst @@ -4,7 +4,7 @@ Getting Started Welcome to `beets`_! This guide will help you begin using it to make your music collection better. -.. _beets: http://beets.radbox.org/ +.. _beets: http://beets.io/ Installing ---------- diff --git a/docs/index.rst b/docs/index.rst index 57a736a48..9f1eafd8c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -17,7 +17,7 @@ Freenode, send email to `the mailing list`_, or `file a bug`_ in the issue tracker. Please let us know where you think this documentation can be improved. -.. _beets: http://beets.radbox.org/ +.. _beets: http://beets.io/ .. _the mailing list: http://groups.google.com/group/beets-users .. _file a bug: https://github.com/sampsyo/beets/issues diff --git a/extra/_beet b/extra/_beet index 055072943..9e4a3437b 100644 --- a/extra/_beet +++ b/extra/_beet @@ -1,6 +1,6 @@ #compdef beet -# Completion for beets music library manager and MusicBrainz tagger: http://beets.radbox.org/ +# Completion for beets music library manager and MusicBrainz tagger: http://beets.io/ # useful: argument to _regex_arguments for matching any word local matchany=/$'[^\0]##\0'/ diff --git a/setup.py b/setup.py index d6c1fb5f7..f602e3537 100755 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ setup( description='music tagger and library organizer', author='Adrian Sampson', author_email='adrian@radbox.org', - url='http://beets.radbox.org/', + url='http://beets.io/', license='MIT', platforms='ALL', long_description=_read('README.rst'),