Skip to content

Releases: jazzband/django-embed-video

Release 0.10

26 Jul 10:52
Compare
Choose a tag to compare
  • video tag accepts kwargs (#20)
  • video tag will not crash anymore with None passed as url (#24)

Release 0.9

26 Jul 10:54
Compare
Choose a tag to compare
  • Add VideoBackend.template_name and rendering embed code from file.
  • Allow relative sizes in template tag (#19).
  • Fix handling invalid urls of SoundCloud. (#21).
  • Catch VideoDoesntExistException and UnknownBackendException in template tags and admin widget.
  • Add base exception EmbedVideoException.

Release 0.8

26 Jul 10:56
Compare
Choose a tag to compare
  • Add EMBED_VIDEO_TIMEOUT to settings.
  • Fix renderering template tag if no url is provided (#18)
  • If EMBED_VIDEO_TIMEOUT timeout is reached in templates, no exception is raised, error is just logged.
  • Fix default size in template tag. (Read more in commit message.)

Release 0.7

26 Jul 10:56
Compare
Choose a tag to compare
  • Support for sites running on HTTPS.
  • embed filter is deprecated and replaced by video filter.
  • caching for whole backends was removed and replaced by caching properties
  • minor improvements on example project (fixtures, urls)

Release 0.6

26 Jul 10:56
Compare
Choose a tag to compare
  • Ability to overwrite embed code of backend
  • Caching backends properties
  • PyPy compatibility
  • Admin video mixin and video widget

Release 0.5

26 Jul 10:59
Compare
Choose a tag to compare
  • Added Vimeo thumbnails support
  • Added caching of results
  • Added example project
  • Fixed template tag embed
  • Fixed raising UnknownIdException in YouTube detecting.

Release 0.4

26 Jul 10:59
Compare
Choose a tag to compare

Release 0.3

26 Jul 10:58
Compare
Choose a tag to compare
  • Security fix: faked urls are treated as invalid. See this page for more details.
  • Fixes:
    • allow of empty video field.
    • requirements in setup.py
  • Added simplier way to embed video in one-line template tag:
    {{ 'http://www.youtube.com/watch?v=guXyvo2FfLs'|embed:'large' }}
  • backend variable in video template tag. Usage:
    {% video item.video as my_video %}
        Backend: {{ my_video.backend }}
    {% endvideo %}

Release 0.2

26 Jul 10:58
Compare
Choose a tag to compare
  • Support of SoundCloud

Release 0.1

26 Jul 10:58
Compare
Choose a tag to compare
  • Initial release
  • Support for YouTube and Vimeo