Add TIDAL support to oembed

Adds TIDAL support for embedding playlists/tracks
pull/7538/head
Wout De Puysseleir 2021-09-22 18:05:56 -07:00 zatwierdzone przez LB (Ben Johnston)
rodzic 19ad01ddd5
commit 348aec32e5
4 zmienionych plików z 11 dodań i 1 usunięć

Wyświetl plik

@ -24,6 +24,7 @@ Changelog
* When copying a page, default the 'Publish copied page' field to false (Justin Slay)
* Open Preview and Live page links in the same tab, except where it would interrupt editing a Page (Sagar Agarwal)
* Added `ExcelDateFormatter` to `wagtail.admin.views.mixins` so that dates in Excel exports will appear in the locale's `SHORT_DATETIME_FORMAT` (Andrew Stone)
* Add TIDAL support to the list of oEmbed providers (Wout De Puysseleir)
* Fix: Delete button is now correct colour on snippets and modeladmin listings (Brandon Murch)
* Fix: Ensure that StreamBlock / ListBlock-level validation errors are counted towards error counts (Matt Westcott)
* Fix: InlinePanel add button is now keyboard navigatable (Jesse Menn)

Wyświetl plik

@ -539,6 +539,7 @@ Contributors
* Krzysztof Jeziorny
* Nick Moreton
* Bryan Williams
* Wout De Puysseleir
Translators
===========

Wyświetl plik

@ -35,6 +35,7 @@ Other features
* When copying a page, default the 'Publish copied page' field to false (Justin Slay)
* Open Preview and Live page links in the same tab, except where it would interrupt editing a Page (Sagar Agarwal)
* Added ``ExcelDateFormatter`` to ``wagtail.admin.views.mixins`` so that dates in Excel exports will appear in the locale's ``SHORT_DATETIME_FORMAT`` (Andrew Stone)
* Add TIDAL support to the list of oEmbed providers (Wout De Puysseleir)
Bug fixes
~~~~~~~~~

Wyświetl plik

@ -634,6 +634,13 @@ reddit = {
]
}
tidal = {
'endpoint': 'https://oembed.tidal.com/',
'urls': [
r'^https?://(?:www\.)?tidal\.com/.+$'
]
}
all_providers = [
speakerdeck, app_net, youtube, datastudio, deviantart, blip_tv, dailymotion, flikr,
hulu, nfb, qik, revision3, scribd, viddler, vimeo, dotsub, yfrog,
@ -646,5 +653,5 @@ all_providers = [
vhx_tv, justin_tv, official_fm, huffduffer, spotify, shoudio, mobypicture,
twenty_three_hq, gmep, urtak, cacoo, dailymile, dipity, sketchfab, meetup,
roomshare, crowd_ranking, etsy, audioboom, clikthrough, ifttt, issuu, tumblr, vidyard,
reddit
reddit, tidal
]