Fix
* **sidecar:** Add option to hide renders for expanded folders ([`560d4fa`](https://github.com/MadeInPierre/finalynx/commit/560d4fac58b65e62eee5152c03ba66c73303f597))
* **recommendations:** Sort by total delta ([`5e686ef`](https://github.com/MadeInPierre/finalynx/commit/5e686ef26417611f3cc309c9b71abe962f284d14))
Documentation
* Fix screenshot url ([`4556af7`](https://github.com/MadeInPierre/finalynx/commit/4556af73af91be4af3515d31802e20bb59a45fcc))
* Create tutorials ([`93780d2`](https://github.com/MadeInPierre/finalynx/commit/93780d28c3c81bcf54a0238219413733898d4c45))
:warning: SMALL BREAKING CHANGE :warning:
If you were using the (very recent) sidecar feature introduced in v1.20.0 by setting them in your `Assistant` parameters :
python
Assistant(..., sidecars=[
"[ideal],[delta]",
"[delta]",
])
You must now use the new `Sidecar` class:
python
from finalynx import Sidecar Add this line on the top of your config file
...
Assistant(..., sidecars=[
Sidecar("[ideal]", "[delta]", "MY TITLE", render_folders=False),
Sidecar("[delta]"),
])
Here are the [explanations for this feature](https://finalynx.readthedocs.io/en/latest/quickstart/customization.html#sidecars). Setting sidecars from the command line options remains identical:
bash
python your_config.py --sidecar="[ideal],[delta],MY TITLE,False"