Skip to content

v1.20.0

Compare
Choose a tag to compare
@github-actions github-actions released this 04 Jun 15:22
· 59 commits to main since this release

Feature

  • sidecar: Add configurable sidecar title (59ded22)
  • sidecar: Add support for multiple sidecars (81df340)
  • sidecar: Customizable sidecar formats (6c4759a)

Fix

  • envelope: Make created date optional (18d5873)
  • Notify user if a bucket was not fully used (1709068)
  • target: Fix the previous fix... (0ad360a)

You can now define several sidecars to be displayed on the right of your main tree and fully customize what is shown:

To add one or more sidecar, add the following option:

  • From the command line:
python your_config.py --sidecar="[ideal]" --sidecar="[delta]"
  • From your Python configuration (used to save your preferences):
assistant = Assistant(portfolio, ..., sidecars=["[ideal]", "[delta]"])

You can also add a filter to each sidecar to only show an information if some other information is applicable to the current node. For instance, you can add a sidecar that shows the ideal amounts of the nodes with a non-zero delta (shown in the picture above). Add a , to the sidecar definition and specify your filter:

python your_config.py --sidecar="[ideal],[delta]" --sidecar="[delta]"

Finally, you can customize the titles (only shown if --hide-root is not used) of each sidecar:

python your_config.py --sidecar="[ideal],[delta],MYTITLE" --sidecar="[delta],,MYTITLE"  # no filter for the 2nd sidecar

Note: the previous --hide-deltas is now deprecated but I can't convince myself to bump the major version to 2.0 because of this tiny change 🙂