Skip to content

Commit e71be6e

Browse files
committed
release 2019.01.27
1 parent bf8ebc9 commit e71be6e

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.github/ISSUE_TEMPLATE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
---
88

9-
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2019.01.24*. If it's not, read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected.
10-
- [ ] I've **verified** and **I assure** that I'm running youtube-dl **2019.01.24**
9+
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2019.01.27*. If it's not, read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected.
10+
- [ ] I've **verified** and **I assure** that I'm running youtube-dl **2019.01.27**
1111

1212
### Before submitting an *issue* make sure you have:
1313
- [ ] At least skimmed through the [README](https://github.com/rg3/youtube-dl/blob/master/README.md), **most notably** the [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections
@@ -36,7 +36,7 @@ Add the `-v` flag to **your command line** you run youtube-dl with (`youtube-dl
3636
[debug] User config: []
3737
[debug] Command-line args: [u'-v', u'http://www.youtube.com/watch?v=BaW_jenozKcj']
3838
[debug] Encodings: locale cp1251, fs mbcs, out cp866, pref cp1251
39-
[debug] youtube-dl version 2019.01.24
39+
[debug] youtube-dl version 2019.01.27
4040
[debug] Python version 2.7.11 - Windows-2003Server-5.2.3790-SP2
4141
[debug] exe versions: ffmpeg N-75573-g1d0487f, ffprobe N-75573-g1d0487f, rtmpdump 2.4
4242
[debug] Proxy map: {}

CONTRIBUTING.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -339,14 +339,16 @@ Incorrect:
339339
'PLMYEtVRpaqY00V9W81Cwmzp6N6vZqfUKD4'
340340
```
341341

342-
### Use safe conversion functions
342+
### Use convenience conversion and parsing functions
343343

344344
Wrap all extracted numeric data into safe functions from [`youtube_dl/utils.py`](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/utils.py): `int_or_none`, `float_or_none`. Use them for string to number conversions as well.
345345

346346
Use `url_or_none` for safe URL processing.
347347

348348
Use `try_get` for safe metadata extraction from parsed JSON.
349349

350+
Use `unified_strdate` for uniform `upload_date` or any `YYYYMMDD` meta field extraction, `unified_timestamp` for uniform `timestamp` extraction, `parse_filesize` for `filesize` extraction, `parse_count` for count meta fields extraction, `parse_resolution`, `parse_duration` for `duration` extraction, `parse_age_limit` for `age_limit` extraction.
351+
350352
Explore [`youtube_dl/utils.py`](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/utils.py) for more useful convenience functions.
351353

352354
#### More examples

ChangeLog

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version <unreleased>
1+
version 2019.01.27
22

33
Core
44
+ [extractor/common] Extract season in _json_ld

docs/supportedsites.md

+1
Original file line numberDiff line numberDiff line change
@@ -1069,6 +1069,7 @@
10691069
- **VVVVID**
10701070
- **VyboryMos**
10711071
- **Vzaar**
1072+
- **Wakanim**
10721073
- **Walla**
10731074
- **WalyTV**
10741075
- **washingtonpost**

youtube_dl/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import unicode_literals
22

3-
__version__ = '2019.01.24'
3+
__version__ = '2019.01.27'

0 commit comments

Comments
 (0)