Settings loses its Lanework Pro section and the About box its Pro line — no surface names or sells Pro while the split is re-decided. The machinery underneath (ProEntitlement, ProStorefront, ProSettingsSection, the recorded session tier) stays compiled and tested, documented as dormant since the pivot. CHANGELOG's two 2.0 entries and README's feature list drop the Pro-gated framing while keeping the facts. Claude-Session: https://claude.ai/code/session_01SR4XGjmBE16ZUYWpfFHXwY
26 lines
1.2 KiB
Swift
26 lines
1.2 KiB
Swift
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()
|
|
)
|
|
}
|
|
}
|