You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added .with_aspects() method call for ChartBuilder examples in readme so aspects are properly calculated and drawn.
Transit timeline strftime on Windows — %-d (strip leading zero) is a Unix-only format code that raises ValueError on Windows. Replaced with f"{d.day}" for cross-platform date formatting in TransitListSection.
preset_detailed() moon phase / chart shape overlap — the auto-hide logic that suppresses the chart shape label when the moon phase occupies the bottom-right corner was not triggering when moon phase position was set to None (auto-detect). Since None resolves to the config default of "bottom-right", the check now treats None equivalently, correctly hiding the chart shape to prevent overlap.