mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:43:20 +00:00
Release 2021.01.10
This commit is contained in:
parent
ba3c9477ee
commit
65156eba45
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -7,10 +7,9 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-18.04]
|
||||||
# TODO: python 2.6
|
# TODO: python 2.6
|
||||||
# 3.3, 3.4 are not running
|
python-version: [2.7, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, pypy-2.7, pypy-3.6, pypy-3.7]
|
||||||
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy-2.7, pypy-3.6, pypy-3.7]
|
|
||||||
python-impl: [cpython]
|
python-impl: [cpython]
|
||||||
ytdl-test-set: [core, download]
|
ytdl-test-set: [core, download]
|
||||||
run-tests-ext: [sh]
|
run-tests-ext: [sh]
|
||||||
|
|
|
@ -6,3 +6,9 @@ GreyAlien502
|
||||||
kyuyeunk
|
kyuyeunk
|
||||||
siikamiika
|
siikamiika
|
||||||
jbruchon
|
jbruchon
|
||||||
|
alexmerkel
|
||||||
|
glenn-slayden
|
||||||
|
Unrud
|
||||||
|
wporr
|
||||||
|
mariuszskon
|
||||||
|
ohnonot
|
11
Changelog.md
11
Changelog.md
|
@ -13,11 +13,20 @@ # Instuctions for creating release
|
||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
### 2020.01.10
|
||||||
|
* [archive.org] Fix extractor and add support for audio and playlists by @wporr
|
||||||
|
* [Animelab] Added by @mariuszskon
|
||||||
|
* [youtube:search] Fix view_count by @ohnonot
|
||||||
|
* [youtube] Show if video is embeddable in info
|
||||||
|
* Update version badge automatically in README
|
||||||
|
* Enable `test_youtube_search_matching`
|
||||||
|
* Create `to_screen` and similar functions in postprocessor/common
|
||||||
|
|
||||||
### 2020.01.09
|
### 2020.01.09
|
||||||
* [youtube] Fix bug in automatic caption extraction
|
* [youtube] Fix bug in automatic caption extraction
|
||||||
* Add `post_hooks` to YoutubeDL by @alexmerkel
|
* Add `post_hooks` to YoutubeDL by @alexmerkel
|
||||||
* Batch file enumeration improvements by @glenn-slayden
|
* Batch file enumeration improvements by @glenn-slayden
|
||||||
* Stop immediately when reaching '--max-downloads' by @glenn-slayden
|
* Stop immediately when reaching `--max-downloads` by @glenn-slayden
|
||||||
* Fix incorrect ANSI sequence for restoring console-window title by @glenn-slayden
|
* Fix incorrect ANSI sequence for restoring console-window title by @glenn-slayden
|
||||||
* Kill child processes when yt-dlc is killed by @Unrud
|
* Kill child processes when yt-dlc is killed by @Unrud
|
||||||
|
|
||||||
|
|
3
Makefile
3
Makefile
|
@ -10,7 +10,8 @@ PREFIX ?= /usr/local
|
||||||
BINDIR ?= $(PREFIX)/bin
|
BINDIR ?= $(PREFIX)/bin
|
||||||
MANDIR ?= $(PREFIX)/man
|
MANDIR ?= $(PREFIX)/man
|
||||||
SHAREDIR ?= $(PREFIX)/share
|
SHAREDIR ?= $(PREFIX)/share
|
||||||
PYTHON ?= /usr/bin/env python
|
# make_supportedsites.py doesnot work correctly in python2
|
||||||
|
PYTHON ?= /usr/bin/env python3
|
||||||
|
|
||||||
# set SYSCONFDIR to /etc if PREFIX=/usr or PREFIX=/usr/local
|
# set SYSCONFDIR to /etc if PREFIX=/usr or PREFIX=/usr/local
|
||||||
SYSCONFDIR = $(shell if [ $(PREFIX) = /usr -o $(PREFIX) = /usr/local ]; then echo /etc; else echo $(PREFIX)/etc; fi)
|
SYSCONFDIR = $(shell if [ $(PREFIX) = /usr -o $(PREFIX) = /usr/local ]; then echo /etc; else echo $(PREFIX)/etc; fi)
|
||||||
|
|
|
@ -48,6 +48,8 @@ # Supported sites
|
||||||
- **AMCNetworks**
|
- **AMCNetworks**
|
||||||
- **AmericasTestKitchen**
|
- **AmericasTestKitchen**
|
||||||
- **anderetijden**: npo.nl, ntr.nl, omroepwnl.nl, zapp.nl and npo3.nl
|
- **anderetijden**: npo.nl, ntr.nl, omroepwnl.nl, zapp.nl and npo3.nl
|
||||||
|
- **AnimeLab**
|
||||||
|
- **AnimeLabShows**
|
||||||
- **AnimeOnDemand**
|
- **AnimeOnDemand**
|
||||||
- **Anvato**
|
- **Anvato**
|
||||||
- **aol.com**
|
- **aol.com**
|
||||||
|
@ -58,7 +60,7 @@ # Supported sites
|
||||||
- **ApplePodcasts**
|
- **ApplePodcasts**
|
||||||
- **appletrailers**
|
- **appletrailers**
|
||||||
- **appletrailers:section**
|
- **appletrailers:section**
|
||||||
- **archive.org**: archive.org videos
|
- **archive.org**: archive.org video and audio
|
||||||
- **ArcPublishing**
|
- **ArcPublishing**
|
||||||
- **ARD**
|
- **ARD**
|
||||||
- **ARD:mediathek**
|
- **ARD:mediathek**
|
||||||
|
|
Loading…
Reference in a new issue