Skip to content

Releases: design-first/system-runtime

System Runtime v4.4.2

29 May 15:27
Compare
Choose a tag to compare
  • Fixed: fix issue on admin extension
  • Improved: check of components

System Runtime v4.4.1

29 May 09:53
Compare
Choose a tag to compare
  • Fixed: issue when sending internal event about a $db update

System Runtime v4.4.0

28 May 19:21
Compare
Choose a tag to compare
  • Fixed: issue when trying to create a link with a component with a string.
  • Updated: dev dependencies.

System Runtime v4.3.0

03 Jan 16:47
Compare
Choose a tag to compare
  • Updated: dev dependencies.

System Runtime v4.2.3

11 Jan 21:54
Compare
Choose a tag to compare

Changelogs:

  • Changed: runtime.require('db).collections().XXX.update API now returns an array of the updated documents id.
  • Fixed: runtime.require('db).collections().XXX.insert API now returns the _id of the inserted document, even if a document with that _id already exists.
  • Updated: dev dependencies.

System Runtime v4.2.2

30 Dec 14:04
Compare
Choose a tag to compare

Changelogs:

  • Fixed: fixed an issue with $history.load API.

System Runtime v4.2.1

29 Dec 22:44
Compare
Choose a tag to compare

Changelogs:

  • Impoved: $history.get API now accept negative values to navigate from the end of the stack. Example:
// get the last item of the stack
runtime.require('history').get(-1)

// get the item before the last
runtime.require('history').get(-2)

System Runtime v4.2.0

17 Nov 15:05
Compare
Choose a tag to compare

Changelogs:

  • Added: Add undo/redo functionality. #70
// get the history component
const history = runtime.require('history')

// start historization
history.start()

// go back in the history
history.from(-1) // set the cursor at the index we want, -1 means to start from the end of the history stack
history.back()

// go forward the in history
history.forward()

// dump the current history
const dump = history.dump()

// load an history and inject the modifications to the current system
history.load(dump)

// stop historization
history.stop()

See an example here.

  • Fixed: issue on model validation.
  • Fixed: issue on collection management.
  • Updated: dev dependencies.

System Runtime v4.1.3

22 Dec 11:14
Compare
Choose a tag to compare

Changelogs:

  • Fixed: fix an issue when installing a bundle on Windows. #69

System Runtime v4.1.2

11 Dec 21:13
Compare
Choose a tag to compare

Changelogs:

  • Improved: add more defensive code.