import IndieAbout /// **The About box's configuration.** /// /// **One box, one copyright line, shown to everyone** (12-editions.md ▸ PIVOT 2026-08-08 — one /// version, everything free): this box once carried a second copyright line naming a paid edition, /// back when the app had editions to name. It has none, so the line is gone and the box is plain. enum AboutBox { /// The About window's content: version/build/date from the stamped Info.plist /// (`update_build_info.sh` — CFBundleVersion, BuildDate, BuildHash), the version line /// opening the bundled CHANGELOG.md, and the bundled ISC LICENSE.md as the one document /// link. Both documents are authored to the Apple inline-Markdown subset — see the files' /// own single-line paragraphs. static var configuration: AppInfoConfiguration { AppInfoConfiguration( copyrightText: "© 2026 rzen", documents: [.license(extension: "md")], changelogDocument: .changelog() ) } }