The 2026-08-08 one-version ruling (12-editions.md ▸ PIVOT 2026-08-08) carried out: Kanban/Tier/ deleted wholesale (Tier, ProEntitlement, ProProducts, ProStorefront, the never-rendered ProSettingsSection) with TierTests and Configuration.storekit, whose project.yml resource entry and scheme storeKitConfiguration go with it. AppModel loses the entitlement, the currentTier seam, BoardSession.tier, and the purchase flow's reopenOpenBoards (its only caller was the storefront); AppDelegate's launch keeps only the appearance application. The three tests pinning the recorded tier and the reopen are deleted with their subject. The network-client entitlement stays — the sync capability to come needs it regardless — and the HistoryProviding seam stands untouched. 2,686 unit tests green (2,707 minus the 21 that tested what left). Claude-Session: https://claude.ai/code/session_014PtZdPwqZuqEDLc6wZMtEy
23 lines
1020 B
Swift
23 lines
1020 B
Swift
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()
|
|
)
|
|
}
|
|
}
|