import IndieAbout /// **Pro's About-box configuration** — the twin of base's `Kanban/App/EditionAbout.swift`, which /// the Pro target excludes (project.yml): same documents, no signpost line. Base's About carries /// "Lanework Pro adds…" because base is where a user discovers Pro exists (12-editions.md ▸ /// Quiet signposts); Pro pointing at itself would be noise, so its copyright falls back to the /// Info.plist string and the box is one line shorter. enum EditionAbout { /// See base's twin for the full story; the two must keep the same shape so `KanbanApp` can /// read `EditionAbout.configuration` without knowing which edition it is in. static var configuration: AppInfoConfiguration { AppInfoConfiguration( documents: [.license(extension: "md")], changelogDocument: .changelog() ) } }