- Converted Tamarin script language to Risor
- Added a "find" and "merge" method to the result set script type.
- Added the ability to copy the table of results to the pasteboard by pressing C
- Added the -q flag, which will run a query and display the results as a CSV file on the command line
- Upgraded Go to 1.21 in Github actions
- Fix issue with missing limits
- Added the '-where' switch to the mark
- Added the 'marked' function to the query expression.
- Added a sampled time and count on the right-side of the mode line
- Added the 'M' key binding to toggle the marked items
- Started working on tab completion for 'sa' and 'da' commands
- Added count and sample time to the right-side of the mode line
- Added Ctrl+V to the prompt to paste the text of the pasteboard with all whitespace characters trimmed
- Fixed failing unit tests
* Added command line history to the command, query and filter prompts.
* Added query planning debugging to the log.
* Fixed bug in query expression which was not treating true and false as boolean literals.
* Fixed a bug in the query planning logic which was incorrectly determine that an expression of the form sort_key ^= "string", with no partition key, could be executed as a query instead of a scan.
* scripting: added service and controller for scripting
* scripting: have got prompts working
Scripts are now running in a separate go-routine. When a prompt is encountered, the
script is paused and the user is prompted for input. This means that the script no
longer needs to worry about synchronisation issues.
* scripting: started working on the session methods
* scripting: added methods to get items and attributes
* scripting: have got loading of scripts working
These act more like plugins and allow defining new commands.
* scripting: have got script scheduling working
Scripts are now executed on a dedicated goroutine and only one script can run at any one time.
* scripting: added session.set_result_set(rs)
* scripting: upgraded tamarin to 0.14
* scripting: started working on set_value
* tamarin: replaced ad-hoc path with query expressions
* scripting: changed value() and set_value() to attr() and set_attr()
Also added 'delete_attr()'
* scripting: added os.exec()
This method is controlled by permissions which govern whether shellouts are allowed
Also fixed a resizing bug with the status window which was not properly handling status messages with newlines
* scripting: added the session.current_item() method
* scripting: added placeholders to query expressions
* scripting: added support for setting and deleteing items with placeholders
Also refactored the dot AST type so that it support placeholders. Placeholders are not yet supported
for subrefs yet, they need to be identifiers.
* scripting: made setting the result-set push the current result-set to the backstack
* scripting: started working on byte encoding of attribute values
* scripting: finished attrcodec
* scripting: integrated codec into expression
* scripting: added equals and hashcode to queryexpr
This finally finishes the work required to store queries in the backstack
* scripting: fixed some bugs with the back-stack
* scripting: upgraded Tamarin
* scripting: removed some commented out code
- Wrapped all table operations in a new foreground job context, which mediates foreground tasks.
- Added cancellation support and partial results for table read operations.
- Added the "mark" command, which can mark, unmark & toggle marked items
- Added support for alias arguments.
- Removed the "unmark" command, and replaced it as an alias to the "marked" command
- Fixed seg faults raised when there is no table shown in the result set.
Added a new popup to modify the columns of the table. With this new popup, the user can:
- Show and hide columns
- Move columns around
- Add new columns which are derived from the value of an expression
- Delete columns
Also got the overlay mechanisms working.
- Fixed a bug which was not properly detecting whether MacOS was in light mode.
- Fixed a bug which was breaking filtering with the table-selection mode.
- Upgraded bubble-tea.
- Added settings to workspace, and added the read-only mode
- Added the `-ro` field which will launch Dynamo-Browse in read-only mode
- Added the `set ro` to enable read-only mode, and `set rw` to enable read-write mode
- Fixed the '-local' flag to accept host and port
- Added a '-debug' flag to accept a file to write debug log messages
- Added some logic which will force the dark background flag on if MacOS is in dark mode