aboutsummaryrefslogtreecommitdiff
path: root/devscripts
AgeCommit message (Collapse)Author
2016-05-29[devscripts/release.sh] Allow passing buildserver address as cli optionSergey M․
2016-05-29[devscripts/release.sh] Check for wheelSergey M․
2016-05-29[devscripts/buildserver] Check Wow6432Node first when searching for pythonSergey M․
This allows building releases from 64bit OS
2016-05-29[devscripts/prepare_manpage] Fix manpage generation on WindowsSergey M․
2016-05-29[buildserver] Fix buildserver and make python2 compatibleSergey M․
2016-05-21release.sh: also check for python3 rsa modulePhilipp Hagemeister
2016-05-21release: check for pandocPhilipp 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 serversYen Chi Hsuan
2016-04-08lazy extractors: Initialize the real info extractorJaime Marquínez Ferrándiz
According to the docs '__init__' is only called automatically if '__new__' returns an instance of the original class.
2016-04-08lazy extractors: Style fixesJaime Marquínez Ferrándiz
* Sort extractors alphabetically * Add newlines when needed (youtube_dl/extractors/lazy_extractors.py pass the flake8 test now)
2016-04-08lazy extractors: Fix building with python2.6Jaime Marquínez Ferrándiz
2016-04-08lazy extractors: specify the encodingJaime Marquínez Ferrándiz
When building with python3 the unicode characters are not escaped, python2 needs to know the encoding.
2016-04-08Add experimental support for lazy loading the info extractorsJaime 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-06Makefile: use full path for the ISSUE_TEMPLATE.md fileJaime Marquínez Ferrándiz
2016-03-29[devscripts/make_issue_template] Fix __version__ againSergey M․
2016-03-29[devscripts/make_issue_template] Fix NameError under python3Sergey M․
2016-03-29[devscripts/release.sh] Make ISSUE_TEMPLATE.md and commit itSergey M․
2016-03-29[devscripts/make_issue_template] Rework to use ISSUE_TEMPLATE.tmpl (Closes ↵Sergey M․
#8785)
2016-03-28Add initial ISSUE_TEMPLATESander 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-10Fix typosJakub Wilk
Closes #8200.
2015-10-03[doc] Better formatting of youtube-dl.1 (closes #6510)Yen Chi Hsuan
2015-09-26Use `insert` for all sys.path manipulationsYen Chi Hsuan
Closes #6867.
2015-03-27Don't use bare 'except:'Jaime Marquínez Ferrándiz
They catch any exception, including KeyboardInterrupt, we don't want to catch it.
2015-03-22[test/aes] Test aes_decrypt_text with 256 bitJaime Marquínez Ferrándiz
2015-03-21[test] Add tests for aesJaime Marquínez Ferrándiz
2015-02-21PEP8: W503Philipp Hagemeister
2015-02-03[descripts/release] Regenerate auxiliary documentation on build as wellPhilipp Hagemeister
2015-02-03[Makefile] Simplify clean/cleanallPhilipp Hagemeister
2015-01-07Fix build with python 2.6Jaime Marquínez Ferrándiz
* Packages cannot be executed * '.format' needs the index of the argument (Reported in https://github.com/Homebrew/homebrew/issues/35616)
2015-01-07[/__init__] Define public APIPhilipp Hagemeister
2014-12-30Add documentation about supported sites (Fixes #4503)Philipp Hagemeister
2014-12-16[README] Add table of contents (Closes #4458)Philipp Hagemeister
2014-12-16[devscripts/make_contributing] Switch to optparse (Fixes #4483)Philipp Hagemeister
2014-12-12[CONTRIBUTING.md] Remove the section about embedding; that is not applicable ↵Philipp Hagemeister
for youtube-dl contributors
2014-12-12[Makefile] Add CONTRIBUTING.md (Fixes #2984)Philipp Hagemeister
2014-11-26[test_unicode_literals] Arm unicode_literals checkPhilipp Hagemeister
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.
2014-11-23Fix all PEP8 issues except E501Philipp Hagemeister
2014-11-23Remove outdated transition helper scriptsPhilipp Hagemeister
2014-11-23remove useless line, the result is never usedJouke Waleson
2014-11-23PEP8: applied even more rulesJouke Waleson
2014-11-23PEP8: E225,E227Jouke Waleson
2014-11-23PEP8: more appliedJouke Waleson
2014-11-23PEP8 appliedJouke Waleson
2014-10-07support zsh completionXu Cheng
2014-09-14Add a completion script generator for the fish shellJaime Marquínez Ferrándiz
2014-09-14[devscripts/release] Do not restore youtube-dl{,.exe} binariesPhilipp Hagemeister
2014-05-30[devscripts/release] Do not commit CHANGELOGPhilipp Hagemeister
2014-05-13add prepare_manpagePhilipp Hagemeister
2014-05-13Split man and README (Fixes #2892)Philipp Hagemeister
2014-03-24[devscripts/release] Check version numberPhilipp Hagemeister