about summary refs log tree commit diff
path: root/devscripts
Commit message (Collapse)AuthorAgeFilesLines
...
* [devscripts/release.sh] Allow passing buildserver address as cli optionSergey M․2016-05-291-5/+23
|
* [devscripts/release.sh] Check for wheelSergey M․2016-05-291-1/+2
|
* [devscripts/buildserver] Check Wow6432Node first when searching for pythonSergey M․2016-05-291-7/+16
| | | | This allows building releases from 64bit OS
* [devscripts/prepare_manpage] Fix manpage generation on WindowsSergey M․2016-05-291-25/+36
|
* [buildserver] Fix buildserver and make python2 compatibleSergey M․2016-05-291-19/+43
|
* release.sh: also check for python3 rsa modulePhilipp Hagemeister2016-05-211-1/+2
|
* release: check for pandocPhilipp Hagemeister2016-05-211-0/+1
| | | | | Abort releaseing if pandoc is missing. (pandoc was not included in my essential app database, and thus missing on my new machine.)
* [test/test_socks] Test with local SOCKS serversYen Chi Hsuan2016-05-101-0/+8
|
* lazy extractors: Initialize the real info extractorJaime Marquínez Ferrándiz2016-04-081-2/+4
| | | | According to the docs '__init__' is only called automatically if '__new__' returns an instance of the original class.
* lazy extractors: Style fixesJaime Marquínez Ferrándiz2016-04-082-4/+3
| | | | | * Sort extractors alphabetically * Add newlines when needed (youtube_dl/extractors/lazy_extractors.py pass the flake8 test now)
* lazy extractors: Fix building with python2.6Jaime Marquínez Ferrándiz2016-04-081-3/+3
|
* lazy extractors: specify the encodingJaime Marquínez Ferrándiz2016-04-081-0/+1
| | | | When building with python3 the unicode characters are not escaped, python2 needs to know the encoding.
* Add experimental support for lazy loading the info extractorsJaime Marquínez Ferrándiz2016-04-082-0/+80
| | | | '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.
* Makefile: use full path for the ISSUE_TEMPLATE.md fileJaime Marquínez Ferrándiz2016-04-061-1/+1
|
* [devscripts/make_issue_template] Fix __version__ againSergey M․2016-03-291-3/+1
|
* [devscripts/make_issue_template] Fix NameError under python3Sergey M․2016-03-291-0/+2
|
* [devscripts/release.sh] Make ISSUE_TEMPLATE.md and commit itSergey M․2016-03-291-3/+3
|
* [devscripts/make_issue_template] Rework to use ISSUE_TEMPLATE.tmpl (Closes ↵Sergey M․2016-03-291-14/+11
| | | | #8785)
* Add initial ISSUE_TEMPLATESander van den Oever2016-03-281-0/+32
| | | | | | | | | | | | | | 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
* Fix typosJakub Wilk2016-01-101-1/+1
| | | | Closes #8200.
* [doc] Better formatting of youtube-dl.1 (closes #6510)Yen Chi Hsuan2015-10-031-0/+31
|
* Use `insert` for all sys.path manipulationsYen Chi Hsuan2015-09-265-5/+5
| | | | Closes #6867.
* Don't use bare 'except:'Jaime Marquínez Ferrándiz2015-03-271-1/+1
| | | | They catch any exception, including KeyboardInterrupt, we don't want to catch it.
* [test/aes] Test aes_decrypt_text with 256 bitJaime Marquínez Ferrándiz2015-03-221-1/+7
|
* [test] Add tests for aesJaime Marquínez Ferrándiz2015-03-211-0/+36
|
* PEP8: W503Philipp Hagemeister2015-02-211-4/+4
|
* [descripts/release] Regenerate auxiliary documentation on build as wellPhilipp Hagemeister2015-02-031-3/+3
|
* [Makefile] Simplify clean/cleanallPhilipp Hagemeister2015-02-031-1/+1
|
* Fix build with python 2.6Jaime Marquínez Ferrándiz2015-01-071-2/+2
| | | | | | | * Packages cannot be executed * '.format' needs the index of the argument (Reported in https://github.com/Homebrew/homebrew/issues/35616)
* [/__init__] Define public APIPhilipp Hagemeister2015-01-071-1/+1
|
* Add documentation about supported sites (Fixes #4503)Philipp Hagemeister2014-12-301-0/+45
|
* [README] Add table of contents (Closes #4458)Philipp Hagemeister2014-12-161-2/+13
|
* [devscripts/make_contributing] Switch to optparse (Fixes #4483)Philipp Hagemeister2014-12-161-10/+10
|
* [CONTRIBUTING.md] Remove the section about embedding; that is not applicable ↵Philipp Hagemeister2014-12-121-1/+2
| | | | for youtube-dl contributors
* [Makefile] Add CONTRIBUTING.md (Fixes #2984)Philipp Hagemeister2014-12-121-0/+31
|
* [test_unicode_literals] Arm unicode_literals checkPhilipp Hagemeister2014-11-2611-3/+18
| | | | | | | | | From now on, the line from __future__ import unicode_literals should be contained in every single Python file lest we run into any more 2.x/3.x issues. Going forward, we're likely to develop on 3.x only and would likely miss subtle bugs otherwise.
* Fix all PEP8 issues except E501Philipp Hagemeister2014-11-231-1/+1
|
* Remove outdated transition helper scriptsPhilipp Hagemeister2014-11-233-162/+0
|
* remove useless line, the result is never usedJouke Waleson2014-11-231-1/+0
|
* PEP8: applied even more rulesJouke Waleson2014-11-232-2/+2
|
* PEP8: E225,E227Jouke Waleson2014-11-231-1/+1
|
* PEP8: more appliedJouke Waleson2014-11-232-4/+1
|
* PEP8 appliedJouke Waleson2014-11-2310-26/+37
|
* support zsh completionXu Cheng2014-10-072-0/+74
|
* Add a completion script generator for the fish shellJaime Marquínez Ferrándiz2014-09-142-0/+53
|
* [devscripts/release] Do not restore youtube-dl{,.exe} binariesPhilipp Hagemeister2014-09-141-1/+0
|
* [devscripts/release] Do not commit CHANGELOGPhilipp Hagemeister2014-05-301-2/+2
|
* add prepare_manpagePhilipp Hagemeister2014-05-131-0/+20
|
* Split man and README (Fixes #2892)Philipp Hagemeister2014-05-131-1/+1
|
* [devscripts/release] Check version numberPhilipp Hagemeister2014-03-241-0/+6
|