Skip to content

Releases: alineacms/alinea

v0.9.13

26 Jun 08:49
Compare
Choose a tag to compare
  • Introduced share previews from metadata fields which are fetched live from the preview iframe window

v0.9.12

20 Jun 10:27
Compare
Choose a tag to compare
  • Media browser display UI fix
  • Media uploads now work correctly when extension is in caps
  • Fixed buggy behaviour of rearranging entries
  • Preview url generated by the alinea preview widget should now be handled correct

v0.9.11

30 Apr 15:06
Compare
Choose a tag to compare
  • Minor dashboard layout changes

v0.9.10

29 Apr 09:13
Compare
Choose a tag to compare
  • Fix the ctrl+s shortkey to publish changes

v0.9.9

26 Apr 13:06
Compare
Choose a tag to compare
  • Use AND to separate search terms so the order of terms does not matter

v0.9.8

26 Apr 12:43
Compare
Choose a tag to compare
  • Add support for tables in Rich Text Fields. This can be enabled using the
    enableTables option.

v0.9.7

25 Apr 14:54
Compare
Choose a tag to compare
  • Add Edit.link and Edit.links to create link values in the Edit api. These
    are currently not optimally typed and will be improved in the future.

    const imageField = Field.link('Image', {
      fields: {
        alt: Field.text('Alt text')
      }
    })
    const imageValue = Edit.link(imageField)
      .addImage(imageId, {alt: 'An image'})
      .value()

v0.9.6

25 Apr 13:30
Compare
Choose a tag to compare
  • Fix double language in urls for entries created through the Edit api

v0.9.5

20 Mar 16:48
Compare
Choose a tag to compare
  • Entries in the dashboard sidebar can now be ordered by a field value.
    Use the orderChildrenBy configuration option to set which field to order by.

    const Type = Config.type('Type', {
      orderChildrenBy: Query.title.asc() // Order by Entry title
      // ...
    })
  • Add subscript and superscript options to rich text Fields.

  • Stop using the porter stemming FTS5 tokenizer in search queries. The algorithm
    does not work well with non-english languages and so is not a good default.

  • Fix select box not showing a checkmark in the explorer while replacing file or
    image links.

  • Unset validation errors when fields are no longer used.

v0.9.4

08 Mar 12:14
Compare
Choose a tag to compare
  • Remove 'use server' directive from the Next.js driver because it does not
    contain server actions at all and newer Next.js version will throw an error
    when it is included.