IQ.Pilot Release Commit @ 98a2c61

This commit is contained in:
IQ.Lvbs CI [bot]
2026-08-19 14:10:31 -05:00
parent dca8172e55
commit 7e3d70380a
55 changed files with 699 additions and 114 deletions

View File

@@ -98,7 +98,7 @@ class ChangelogWidget(Widget):
return
self._last_load = now
paths = [os.path.join(BASEDIR, "docs", "CHANGELOG.md")]
paths = [os.path.join(BASEDIR, "iqpilot", "docs", "CHANGELOG.md")]
content = ""
for p in paths:
try:
@@ -110,7 +110,7 @@ class ChangelogWidget(Widget):
pass
if not content:
content = "No changelog found.\n\nAdd docs/CHANGELOG.md."
content = "No changelog found.\n\nAdd iqpilot/docs/CHANGELOG.md."
ordered = self._reorder_sections_newest_first(content)
self._latest_text = self._build_latest_text(ordered)