diff --git a/app/app.py b/app/app.py index b00054a..0e151b6 100644 --- a/app/app.py +++ b/app/app.py @@ -468,9 +468,9 @@ def _parse_changelog(): elif line.startswith("### ") and current is not None: if current_group: current["groups"].append(current_group) - current_group = {"title": line[4:], "items": []} + current_group = {"title": line[4:], "entries": []} elif line.startswith("- ") and current_group is not None: - current_group["items"].append(line[2:]) + current_group["entries"].append(line[2:]) if current: if current_group: diff --git a/app/templates/changelog.html b/app/templates/changelog.html index b0b1b90..7fcbb05 100644 --- a/app/templates/changelog.html +++ b/app/templates/changelog.html @@ -18,7 +18,7 @@