- Changed task tracking from @done to @status
- Added optional row log for tracking things, such as dates of attribute changes
- Changed Row: Text Delete to leave an empty row behind with the caret in it
- Added Settings › Extensions › Attributes to configure specific attribute behavior
- Fixed the context menu system shortcut not working.
This release changes how task’s track “done”. Previously this was tracked with a @done attribute and associated date. Now it is tracked with a @status attribute with possible values of todo, started, canceled, done.
This means a few things:
- Outlines using old @done attribute will need to be migrated to use @status. You will be prompted when opening document in the latest Bike.
- Queries that reference @done will need to be updated. Use the new open() and closed() path functions. So before where you said
//task not @doneyou can now say//task not closed()