Releases: torchbox/wagtail-tinytableblock
v0.4.5 - link title and target preserver
Note: this is should have been version 0.4.2, however due to immmutable tags and some issues with the PyPI Trusted Publishing setup after updating GitHub Actions versions, we are now at 0.4.5
What's Changed
- Tooling tweaks by @zerolab in #21 (and follow up fixes to PyPI Trusted publishing)
- Respect title and target attributes in links by @MaciekBaron in #24
New Contributors
- @MaciekBaron made their first contribution in #24
Full Changelog: v0.4.1...v0.4.2
v0.4.1 - with full formal Wagtial 7.3 support
v0.4.0 - TinyMCE 7.9, official Wagtail 7.2
This release updates TinyMCE to version 7.9 (the last before 8.0), and adds official support for Wagtail 7.2
v0.3.4 - pasting on pastel pastures
Further improvements to pasting:
- if the pasted content contains a table, only the table remains
- if the table has a caption, we update the caption field
v0.3.3 - can't catch a (line) break
This release improves the handling of pasted content with new lines
v0.3.2 - breaking the lines
This release fixes line breaks being stripped out, and switches the new line behaviour from inserting paragraphs to new lines.
v0.3.1 - forgot to unlink?
This adds the missing "unlink" toolbar button
v0.3 - now with more style
TinyMCE sets the alignment and width via the style attributes. This release, preserves them for th/td
What's Changed
Full Changelog: v0.2.4...v0.3
v0.2.4 - cell/row props
This adds the missing cell and row properties buttons to the toolbar.
And removes the copy/paste ones
v0.2.3 - it is all contextual
This release disables the TinyMCE contextual menu by default to allow browser native functionality such as paste to work.
To enable the TinyMCE contextual menu, pass enable_context_menu=True to your block definition: TinyTableBlock(enable_context_menu=True)