import IndieAbout /// **The About box's configuration.** /// /// **Dormant since the 2026-08-07 pivot** (12-editions.md ▸ PIVOT 2026-08-07 — git leaves the /// paywall): this box used to carry a second copyright line naming Lanework Pro, one of the three /// places 12's pre-pivot "Tier naming" section named the subscription. Git left the paywall, the /// base/Pro split is being re-decided, and until it's ruled, no surface in the app names or sells /// Pro — so the line comes out, and the box goes back to a plain, one-line copyright shown to /// everyone. 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() ) } }