Skip to content

Releases: alineacms/alinea

v0.5.10

22 Jan 13:43
Compare
Choose a tag to compare
  • Fix Entry fields showing up as type unkown in TypeScript.
  • The readOnly option that is included in all fields will now show a lock item
    next to the field label. The option is passed down in nested fields such as
    the List and Rich text fields.

v0.5.9

17 Jan 10:17
Compare
Choose a tag to compare
  • Changing entry order by dragging them in the sidebar is now applied
    immediately making changes much smoother.

v0.5.8

16 Jan 16:24
Compare
Choose a tag to compare
  • Fix navigation missing when selecting internal pages in Link fields.

v0.5.7

16 Jan 15:48
Compare
Choose a tag to compare
  • The interval at which Alinea polls the backend for content updates is
    now configurable. It can be set in config.syncInterval and overwritten
    per query.

    // Poll for updates every 60 seconds
    const results = await cms.syncInterval(60).find(Entry())
    // Disable syncing all for this query in case you want results fast,
    // but not necessarily up to date
    const matches = await cms.disableSync().find(Entry().search('fast'))

v0.5.6

15 Jan 17:24
Compare
Choose a tag to compare
  • Pages can be queried with search terms.
    Any (rich) text field with the searchable option set to true is indexed.

    const results = await cms.find(Page().search('search', 'terms'))

v0.5.5

15 Jan 15:55
Compare
Choose a tag to compare
  • A source entry can be chosen in the modal where new entries are created.
    All data from that entry will be copied to the new entry.

v0.5.4

12 Jan 15:12
Compare
Choose a tag to compare
  • Introduce the shared option for Fields. Fields can be persisted over all
    locales if your content is localised by setting the shared option to true.
    When the entry is published the field data is copied to other locales.
    This is currently only supported on the root level, not on nested fields.

    const Type = alinea.type('Persist', {
      // Persist field data over all locales
      sharedField: alinea.text('Shared text', {shared: true})
    })

v0.5.3

12 Jan 10:48
Compare
Choose a tag to compare
  • Fix number field not reflecting up value changes
  • Fix creating new entries not picking up selected parent

v0.5.2

11 Jan 14:47
Compare
Choose a tag to compare
  • Add an edit button to Link field rows.
  • Fix extra fields defined on Link fields not saving data.

v0.5.1

11 Jan 13:27
Compare
Choose a tag to compare
  • Preview panel was missing in production deploys.