Wagtailmedia Versions Save

A Wagtail module for managing video and audio files within the admin

v0.15.1

3 months ago

This release fixes the action buttons on the media index page. For simplicity, they are moving to show separately, rather than the dropdown

Full Changelog: https://github.com/torchbox/wagtailmedia/compare/v0.15.0...v0.15.1

v0.15.0

3 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/torchbox/wagtailmedia/compare/v0.14.5...v0.15.0

v0.14.5

6 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/torchbox/wagtailmedia/compare/v0.14.4...v0.14.5

v0.14.4

9 months ago

What's Changed

Full Changelog: https://github.com/torchbox/wagtailmedia/compare/v0.14.3...v0.14.4

v0.14.3

9 months ago

What's Changed

Full Changelog: https://github.com/torchbox/wagtailmedia/compare/v0.14.2...v0.14.3

v0.14.2

11 months ago

This release fixes a regression from switching to modern chooser base classes.

And expands the ruff linting rules to be more opinionated

What's Changed

Full Changelog: https://github.com/torchbox/wagtailmedia/compare/v0.14.1...v0.14.2

v0.14.1

1 year ago

This release keeps your logs clean(er) ♻️ with Wagtail 5+

What's Changed

New Contributors

Full Changelog: https://github.com/torchbox/wagtailmedia/compare/v0.14.0...v0.14.1

v0.14.0

1 year ago

This release:

  • 🚀 switches to using ruff instead of isort/flake8
  • 📦 switches to flit for packaging
  • 🛠️ adds support for for Wagtail 5.0 (chiefly by switching to using BaseChoose instead of the now removed AdminChooser)
    • also tests against Python 3.11, and Django 4.2 with Wagtail 5.0
  • 🎨 adds audio/video icons (usable via their ids: wagtailmedia-audio, wagtailmedia-video)

Relevant PRs: https://github.com/torchbox/wagtailmedia/pull/199 and https://github.com/torchbox/wagtailmedia/pull/201

Full Changelog: https://github.com/torchbox/wagtailmedia/compare/v0.13.0...v0.14.0

v0.13.0

1 year ago

This release drops support for Wagtail < 4.1 and tidies up code

What's Changed

New Contributors

Full Changelog: https://github.com/torchbox/wagtailmedia/compare/v0.12.0...v0.13.0

v0.12.0

1 year ago

This release adds an API viewset and serializer for media items.

API

To expose media items in the API, you can follow the Wagtail documentation guide for API configuration with wagtailmedia specifics:

# api.py
from wagtail.api.v2.router import WagtailAPIRouter
from wagtailmedia.api.views import MediaAPIViewSet


# Register the router
api_router = WagtailAPIRouter("wagtailapi")
# add any other enpoints you need, plus the wagtailmedia one

Comparison

Media field (that is, ForeignKey to media) and media chooser blocks are rendered in the revision comparison

Screenshot 2022-10-25 at 18 54 21

What's Changed

New Contributors

Full Changelog: https://github.com/torchbox/wagtailmedia/compare/v0.11.1...v0.12.0