v1.20.2
Fix
- sidecar: Add option to hide renders for expanded folders (
560d4fa
) - recommendations: Sort by total delta (
5e686ef
)
Documentation
⚠️ SMALL BREAKING CHANGE ⚠️
If you were using the (very recent) sidecar feature introduced in v1.20.0 by setting them in your Assistant
parameters :
Assistant(..., sidecars=[
"[ideal],[delta]",
"[delta]",
])
You must now use the new Sidecar
class:
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. Setting sidecars from the command line options remains identical:
python your_config.py --sidecar="[ideal],[delta],MY TITLE,False"