Skip to content

Releases: torchbox/wagtail-tinytableblock

v0.3.4 - pasting on pastel pastures

10 Apr 14:44
8e6668d
Compare
Choose a tag to compare

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

10 Apr 13:47
a7c466b
Compare
Choose a tag to compare

This release improves the handling of pasted content with new lines

v0.3.2 - breaking the lines

02 Apr 16:30
d232f0b
Compare
Choose a tag to compare

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?

02 Apr 15:19
fc10a4c
Compare
Choose a tag to compare

This adds the missing "unlink" toolbar button

v0.3 - now with more style

02 Apr 14:20
d9a94c3
Compare
Choose a tag to compare

TinyMCE sets the alignment and width via the style attributes. This release, preserves them for th/td

What's Changed

  • Preserve text align and width params by @zerolab in #10

Full Changelog: v0.2.4...v0.3

v0.2.4 - cell/row props

31 Mar 09:45
ced9960
Compare
Choose a tag to compare

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

19 Mar 12:03
b1e05c0
Compare
Choose a tag to compare

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)

v0.2.2 - the copy/pasta incident

18 Mar 17:21
92cd146
Compare
Choose a tag to compare

This tiny release adds the copy/paste buttons to the toolbar and contextual menu, following real user feedback

v0.2.1 - ruthless link stripper

11 Mar 10:33
a3933ca
Compare
Choose a tag to compare

This is a tidy up for v0.2 which ensures that links are only preserved if the block was defined with allow_links=True. For example:

from wagtail.blocks import StreamBlock
from wagtail_tinytableblock.blocks import TinyTableBlock

class ContentBlocks(StreamBlock):
    table_block = TinyTableBlock(allow_links=True)

It also improves the input sanitization

v0.2 - we live in a linked world (external for now)

09 Mar 17:14
85644a4
Compare
Choose a tag to compare

This releases

  • adds the TinyMCE link plugin and allows enabling it (e.g. table_block = TinyTableBlock(allow_links=True))
  • improves the table header parsing (considers all cells in thead as header cells).
  • improves the README