summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-09-03 12:34:20 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2015-09-03 12:34:20 +0200
commitbd6742137f532d2a3c09c8b89543618ae982abf5 (patch)
tree5678e08e2a3bb0ff1cffdf04fa9749acf1067a04
parente8dcfa3d698fd328760e40f6a76f99c45dfcdc85 (diff)
downloadyoutube-dl-bd6742137f532d2a3c09c8b89543618ae982abf5.tar.gz
youtube-dl-bd6742137f532d2a3c09c8b89543618ae982abf5.tar.xz
youtube-dl-bd6742137f532d2a3c09c8b89543618ae982abf5.zip
release 2015.09.03 2015.09.03
-rw-r--r--CONTRIBUTING.md2
-rw-r--r--docs/supportedsites.md2
-rw-r--r--youtube_dl/version.py2
3 files changed, 4 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 42333c450..f8ab29631 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -125,7 +125,7 @@ If you want to add support for a new site, you can follow this quick list (assum
     ```
 5. Add an import in [`youtube_dl/extractor/__init__.py`](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/__init__.py).
 6. Run `python test/test_download.py TestDownload.test_YourExtractor`. This *should fail* at first, but you can continually re-run it until you're done. If you decide to add more than one test, then rename ``_TEST`` to ``_TESTS`` and make it into a list of dictionaries. The tests will be then be named `TestDownload.test_YourExtractor`, `TestDownload.test_YourExtractor_1`, `TestDownload.test_YourExtractor_2`, etc.
-7. Have a look at [`youtube_dl/common/extractor/common.py`](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/common.py) for possible helper methods and a [detailed description of what your extractor should and may return](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/common.py#L62-L200). Add tests and code for as many as you want.
+7. Have a look at [`youtube_dl/extractor/common.py`](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/common.py) for possible helper methods and a [detailed description of what your extractor should and may return](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/common.py#L62-L200). Add tests and code for as many as you want.
 8. If you can, check the code with [flake8](https://pypi.python.org/pypi/flake8).
 9. When the tests pass, [add](http://git-scm.com/docs/git-add) the new files and [commit](http://git-scm.com/docs/git-commit) them and [push](http://git-scm.com/docs/git-push) the result, like this:
 
diff --git a/docs/supportedsites.md b/docs/supportedsites.md
index 328a819b3..04b9959ac 100644
--- a/docs/supportedsites.md
+++ b/docs/supportedsites.md
@@ -220,6 +220,7 @@
  - **imdb**: Internet Movie Database trailers
  - **imdb:list**: Internet Movie Database lists
  - **Imgur**
+ - **ImgurAlbum**
  - **Ina**
  - **Indavideo**
  - **IndavideoEmbed**
@@ -303,6 +304,7 @@
  - **MPORA**
  - **MSNBC**
  - **MTV**
+ - **mtv.de**
  - **mtviggy.com**
  - **mtvservices:embedded**
  - **MuenchenTV**: münchen.tv
diff --git a/youtube_dl/version.py b/youtube_dl/version.py
index a07bc9233..6bc689b75 100644
--- a/youtube_dl/version.py
+++ b/youtube_dl/version.py
@@ -1,3 +1,3 @@
 from __future__ import unicode_literals
 
-__version__ = '2015.08.28'
+__version__ = '2015.09.03'