aboutsummaryrefslogtreecommitdiff
path: root/devscripts
AgeCommit message (Collapse)Author
2023-07-25[build] Fix typo in `devscripts/fish-completion.py` (fix 2285605)dirkf
2023-07-25[build] Extend use of `devscripts/utils`dirkf
2023-07-25[compat] Use `compat_open()`dirkf
2023-07-25[build] Add and use `devscripts/utils`dirkf
2023-07-25[build] Fix various Jython CI and test issuesdirkf
2023-07-19[InfoExtractor] Add `_match_valid_url()` class method and refactordirkf
* API compatible with yt-dlp * also support Sequence of patterns in _VALID_URL * one place to compile _VALID_URL * TODO: remove existing extractor shims
2023-07-05[workflows/ci.yml] Fix test support for Py 2.6dirkf
2023-07-05[workflows/ci.yml] Restore test support for Py 3.2dirkf
2023-04-05[devscripts] Improve hack to convert command-line options to API optionsdirkf
* define equality for DateRange * don't show default DateRange
2023-03-14[devscripts] Add a hack to convert command-line options to API optionsdirkf
2023-02-13[YouTube] Refresh compat/utils usagedirkf
* import parse_qs() * import parse_qs in lazy_extractors (clears old TODO) * clean up old compiled lazy_extractors for Py2 * use update_url()
2021-01-05[workflows/ci.yml] Add support for jythonSergey M․
2020-12-20Switch to GitHub actions for CISergey M․
Travis CI has ignored our requests and does not look to be interested in providing OSS credits for youtube-dl
2020-11-16[devscripts/make_lazy_extractors] Correct a spelling mistake (#26991)Edward Betts
2020-01-06[devscripts/create-github-release] Remove unused importnmeum
2020-01-01[devscripts/create-github-release] Switch to using PAT for authenticationSergey M․
Basic authentication will be deprecated soon
2019-05-11Fix W504 and disable W503 (closes #20863)Sergey M․
2019-04-27Issue template overhaulSergey M․
2019-03-11Start moving to ytdl-orgSergey M․
2018-06-04[devscripts/update-copyright] Update copyright yearSergey M․
2018-04-25[devscripts/gh-pages/generate-download.py] Use program checksum from ↵Sergey M․
versions.json
2018-01-02[travis] Add Jython buildSergey M․
2017-11-27[Makefile,devscripts/run_tests.sh] Actually exclude network testsYen Chi Hsuan
Closes #14858
2017-09-19[devscripts/check-porn] Fix gettestcases importKareem Moussa
2017-06-17[devscripts/prepare_manpage] Fix deprecated escape sequence on py36Yen 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 buildSergey M․
2017-02-19[travis] Run tests in parallelYen 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 755Anisse Astier
2017-02-13[travis] Separate builds for core and downloadSergey M․
2016-12-31[devscripts/buildserver] Remove unreachable except blockChris Gavin
2016-11-18[devscripts/create-github-release] Fill release body from ChangeLog (closes ↵Sergey M․
#11094)
2016-11-17Update coding style after pycodestyle 2.1.0Yen 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-03Unify coding cookieDéstin Reed
2016-09-11[devscripts/release.sh] Add missing fiSergey M․
2016-09-11[devscripts/release.sh] Add ChangeLog reminder promptSergey M․
2016-08-09[devscripts/prepare_manpage] Fix description strings starting with dash ↵Sergey M․
(Closes #10273)
2016-07-30Add ChangeLogYen Chi Hsuan
2016-07-27[devscripts/show-downloads-statistics] Add support for pagingSergey M․
2016-07-13[travis] Skip downloading srelayYen 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 SHA1Philipp Hagemeister
2016-07-03[devscripts/show-downloads-statictics] Add script for displaying downloads ↵Sergey M․
statistics
2016-06-22lazy-extractors: Fix after commit 6e6b9f600f2f447604f6108fb6486b73cc25def1Jaime 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 commitsSergey M․
2016-06-06[devscripts/create-github-release] Make full published releases by defaultSergey M․
2016-06-05[devscripts/release.sh] Release to GitHubSergey M․
2016-06-05[devscripts/create-github-release] Add script for releasing on GitHubSergey M․
Yet only Basic authentication is supported either via .netrc or by manual input
2016-06-05[devscripts/buildserver] Use compat_input from compatSergey M․
2016-06-04disable uploading to yt-dl.org for nowPhilipp Hagemeister
2016-05-30[devscripts/buildserver] Listen on all interfacesSergey M․