mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-02 04:24:46 +00:00
Fix soundcloud embed regex
This commit is contained in:
parent
0d4f670625
commit
4b692d67d5
4 changed files with 4 additions and 1 deletions
|
|
@ -17,6 +17,7 @@ Changelog
|
|||
* Add ability to insert telephone numbers as links in Draftail (rich text) fields (Mikael Engström and Liam Brenner)
|
||||
* Increase delay before search in the snippet chooser, to prevent redundant search request round trips (Robert Rollins)
|
||||
* Add `WAGTAIL_EMAIL_MANAGEMENT_ENABLED` setting to determine whether users can change their email address (Janne Alatalo)
|
||||
* Recognise Soundcloud artist URLs as embeddable (Kiril Staikov)
|
||||
* Fix: Added line breaks to long filenames on multiple image / document uploader (Kevin Howbrook)
|
||||
* Fix: Added https support for Scribd oEmbed provider (Rodrigo)
|
||||
* Fix: Changed StreamField group labels color so labels are visible (Catherine Farman)
|
||||
|
|
|
|||
|
|
@ -397,6 +397,7 @@ Contributors
|
|||
* Janne Alatalo
|
||||
* Colin Klein
|
||||
* Eduard Luca
|
||||
* Kiril Staikov
|
||||
|
||||
Translators
|
||||
===========
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@ Other features
|
|||
* Add ability to insert telephone numbers as links in Draftail (rich text) fields (Mikael Engström and Liam Brenner)
|
||||
* Increase delay before search in the snippet chooser, to prevent redundant search request round trips (Robert Rollins)
|
||||
* Add ``WAGTAIL_EMAIL_MANAGEMENT_ENABLED`` setting to determine whether users can change their email address (Janne Alatalo)
|
||||
* Recognise Soundcloud artist URLs as embeddable (Kiril Staikov)
|
||||
|
||||
|
||||
Bug fixes
|
||||
|
|
|
|||
|
|
@ -221,7 +221,7 @@ twitter = {
|
|||
soundcloud = {
|
||||
"endpoint": "https://soundcloud.com/oembed",
|
||||
"urls": [
|
||||
r'^https://soundcloud\.com/[^#?/]+/.+$',
|
||||
r'^https://soundcloud\.com/.+$',
|
||||
],
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue