Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-27 | [Makefile,devscripts/run_tests.sh] Actually exclude network tests | Yen Chi Hsuan | |
Closes #14858 | |||
2017-09-19 | [devscripts/check-porn] Fix gettestcases import | Kareem Moussa | |
2017-06-17 | [devscripts/prepare_manpage] Fix deprecated escape sequence on py36 | Yen Chi Hsuan | |
2017-02-24 | [devscripts/make_lazy_extractors] Fix making lazy extractors on python 3 ↵ | Sergey M․ | |
under Windows | |||
2017-02-23 | [devscripts/run_tests] Exclude youtube lists tests from core build | Sergey M․ | |
2017-02-19 | [travis] Run tests in parallel | Yen Chi Hsuan | |
[test_download] Print test names in case of network errors [test_download] Add comments for nose parameters [test_download] Modify outtmpl to prevent info JSON filename conflicts Thanks @jaimeMF for the idea. [travis] Only download tests should be run in parallel | |||
2017-02-16 | [devscripts/run_tests.sh] Change permission for script to 755 | Anisse Astier | |
2017-02-13 | [travis] Separate builds for core and download | Sergey M․ | |
2016-12-31 | [devscripts/buildserver] Remove unreachable except block | Chris Gavin | |
2016-11-18 | [devscripts/create-github-release] Fill release body from ChangeLog (closes ↵ | Sergey M․ | |
#11094) | |||
2016-11-17 | Update coding style after pycodestyle 2.1.0 | Yen Chi Hsuan | |
In pycodestyle 2.1.0, E305 was introduced, which requires two blank lines after top level declarations, too. See https://github.com/PyCQA/pycodestyle/issues/400 See also #10689; thanks @stepshal for first mentioning this issue and initial patches | |||
2016-10-03 | Unify coding cookie | Déstin Reed | |
2016-09-11 | [devscripts/release.sh] Add missing fi | Sergey M․ | |
2016-09-11 | [devscripts/release.sh] Add ChangeLog reminder prompt | Sergey M․ | |
2016-08-09 | [devscripts/prepare_manpage] Fix description strings starting with dash ↵ | Sergey M․ | |
(Closes #10273) | |||
2016-07-30 | Add ChangeLog | Yen Chi Hsuan | |
2016-07-27 | [devscripts/show-downloads-statistics] Add support for paging | Sergey M․ | |
2016-07-13 | [travis] Skip downloading srelay | Yen Chi Hsuan | |
SOCKS tests never run on Travis CI due to unknown reasons, and downloading them broke some tests (e.g. https://travis-ci.org/rg3/youtube-dl/builds/144306425) | |||
2016-07-12 | [devscripts/generate-download] Remove MD5 and SHA1 | Philipp Hagemeister | |
2016-07-03 | [devscripts/show-downloads-statictics] Add script for displaying downloads ↵ | Sergey M․ | |
statistics | |||
2016-06-22 | lazy-extractors: Fix after commit 6e6b9f600f2f447604f6108fb6486b73cc25def1 | Jaime Marquínez Ferrándiz | |
The problem was in the following code: class ArteTVPlus7IE(ArteTVBaseIE): ... @classmethod def suitable(cls, url): return False if ArteTVPlaylistIE.suitable(url) else super(ArteTVPlus7IE, cls).suitable(url) And its sublcasses like ArteTVCinemaIE. Since in the lazy_extractors.py file ArteTVCinemaIE was not a subclass of ArteTVPlus7IE, super(ArteTVPlus7IE, cls) failed. To fix it we have to make it a subclass. Since the order of _ALL_CLASSES is arbitrary we must sort them so that the base classes are defined first. We also must add base classes like YoutubeBaseInfoExtractor. | |||
2016-06-14 | [devscripts/release.sh] Add flag for gpg-sign commits | Sergey M․ | |
2016-06-06 | [devscripts/create-github-release] Make full published releases by default | Sergey M․ | |
2016-06-05 | [devscripts/release.sh] Release to GitHub | Sergey M․ | |
2016-06-05 | [devscripts/create-github-release] Add script for releasing on GitHub | Sergey M․ | |
Yet only Basic authentication is supported either via .netrc or by manual input | |||
2016-06-05 | [devscripts/buildserver] Use compat_input from compat | Sergey M․ | |
2016-06-04 | disable uploading to yt-dl.org for now | Philipp Hagemeister | |
2016-05-30 | [devscripts/buildserver] Listen on all interfaces | Sergey M․ | |
2016-05-29 | [devscripts/release.sh] Allow passing buildserver address as cli option | Sergey M․ | |
2016-05-29 | [devscripts/release.sh] Check for wheel | Sergey M․ | |
2016-05-29 | [devscripts/buildserver] Check Wow6432Node first when searching for python | Sergey M․ | |
This allows building releases from 64bit OS | |||
2016-05-29 | [devscripts/prepare_manpage] Fix manpage generation on Windows | Sergey M․ | |
2016-05-29 | [buildserver] Fix buildserver and make python2 compatible | Sergey M․ | |
2016-05-21 | release.sh: also check for python3 rsa module | Philipp Hagemeister | |
2016-05-21 | release: check for pandoc | Philipp Hagemeister | |
Abort releaseing if pandoc is missing. (pandoc was not included in my essential app database, and thus missing on my new machine.) | |||
2016-05-10 | [test/test_socks] Test with local SOCKS servers | Yen Chi Hsuan | |
2016-04-08 | lazy extractors: Initialize the real info extractor | Jaime Marquínez Ferrándiz | |
According to the docs '__init__' is only called automatically if '__new__' returns an instance of the original class. | |||
2016-04-08 | lazy extractors: Style fixes | Jaime Marquínez Ferrándiz | |
* Sort extractors alphabetically * Add newlines when needed (youtube_dl/extractors/lazy_extractors.py pass the flake8 test now) | |||
2016-04-08 | lazy extractors: Fix building with python2.6 | Jaime Marquínez Ferrándiz | |
2016-04-08 | lazy extractors: specify the encoding | Jaime Marquínez Ferrándiz | |
When building with python3 the unicode characters are not escaped, python2 needs to know the encoding. | |||
2016-04-08 | Add experimental support for lazy loading the info extractors | Jaime Marquínez Ferrándiz | |
'make lazy-extractors' creates the youtube_dl/extractor/lazy_extractors.py (imported by youtube_dl/extractor/__init__.py), which contains simplified classes that only have the 'suitable' class method and that load the appropiate class with the '__new__' method when a instance is created. | |||
2016-04-06 | Makefile: use full path for the ISSUE_TEMPLATE.md file | Jaime Marquínez Ferrándiz | |
2016-03-29 | [devscripts/make_issue_template] Fix __version__ again | Sergey M․ | |
2016-03-29 | [devscripts/make_issue_template] Fix NameError under python3 | Sergey M․ | |
2016-03-29 | [devscripts/release.sh] Make ISSUE_TEMPLATE.md and commit it | Sergey M․ | |
2016-03-29 | [devscripts/make_issue_template] Rework to use ISSUE_TEMPLATE.tmpl (Closes ↵ | Sergey M․ | |
#8785) | |||
2016-03-28 | Add initial ISSUE_TEMPLATE | Sander van den Oever | |
Add auto-updating of youtube-dl version in ISSUE_TEMPLATE Move parts of template text and adopt makefile to new format Moved the 'kind-of-issue' section and rephrased a bit Rephrased and moved Example URL section upwards Moved ISSUE_TEMPLATE inside .github folder. Update makefile to match new folderstructure | |||
2016-01-10 | Fix typos | Jakub Wilk | |
Closes #8200. | |||
2015-10-03 | [doc] Better formatting of youtube-dl.1 (closes #6510) | Yen Chi Hsuan | |
2015-09-26 | Use `insert` for all sys.path manipulations | Yen Chi Hsuan | |
Closes #6867. |