Releases: design-first/system-runtime
Releases · design-first/system-runtime
System Runtime v4.4.2
- Fixed: fix issue on admin extension
- Improved: check of components
System Runtime v4.4.1
- Fixed: issue when sending internal event about a
$db
update
System Runtime v4.4.0
- Fixed: issue when trying to create a link with a component with a string.
- Updated: dev dependencies.
System Runtime v4.3.0
- Updated: dev dependencies.
System Runtime v4.2.3
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
Changelogs:
- Fixed: fixed an issue with
$history.load
API.
System Runtime v4.2.1
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
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
Changelogs:
- Fixed: fix an issue when installing a bundle on Windows. #69
System Runtime v4.1.2
Changelogs:
- Improved: add more defensive code.