Releases: alineacms/alinea
Releases · alineacms/alinea
v0.9.13
- Introduced share previews from metadata fields which are fetched live from the preview iframe window
v0.9.12
- 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
- Minor dashboard layout changes
v0.9.10
- Fix the ctrl+s shortkey to publish changes
v0.9.9
- Use AND to separate search terms so the order of terms does not matter
v0.9.8
- Add support for tables in Rich Text Fields. This can be enabled using the
enableTables
option.
v0.9.7
-
Add
Edit.link
andEdit.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
- Fix double language in urls for entries created through the Edit api
v0.9.5
-
Entries in the dashboard sidebar can now be ordered by a field value.
Use theorderChildrenBy
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
- 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.