A second product, not a second edition: dev.rzen.indie.KanbanMobile (iOS 26,
iPhone-only) compiles Kanban/Storage as source files, so a format change that
breaks the phone breaks this build the day it's made. Boards live in
iCloud.dev.rzen.indie.Kanban — named after the Mac bundle id so the Mac app can
adopt the container later without a migration; until then the folder is
"Lanework" in iCloud Drive and the Mac opens boards there through the open
panel.
EchoLedger grows #if os(macOS) gates around its three consumer surfaces
(verdicts/BoardDiff, harvest/HarvestedReceipt, comment retirement/CommentPath)
— the recording side BoardWriter stamps compiles on every platform, and the
gates are the seam a future phone verdict surface lands behind. AgentGuide
stays Mac-only.
The phone's watcher is NSMetadataQuery: BoardIndexStore (one query, package
UTI export makes a .kanban directory one item, equality-gated rescans,
download kicks per pass), BoardSession (materialization sweep before every
fail-fast walk, NSFileCoordinator brackets, perform{} = coordinated write then
awaited reload, ParseMemo threaded), CloudHome (off-main container resolution,
LANEWORK_LOCAL_ROOT DEBUG override for simulator work without an account).
Screens: Boards -> lanes -> cards -> card editor, value-routed by ItemID with
every screen re-reading the live snapshot; leading swipe moves a card via
confirmationDialog, trailing swipe sends it to .trash/; the editor commits
title through the Mac's canonical rename path and body through writeBody, with
drafts that survive reloads; attributes are the three typed style fields
(icon, iconColor, background) — labels is a reserved unknown-field key and
deliberately has no editor. Settings carries IndieBackup (backup root = the
container's Documents, restore rebuild = an index rescan, controller
constructed only once the home resolves).
Arbiter: KanbanMobile green for iOS Simulator, Kanban green for macOS, 3006
unit tests / 517 suites passed (PointerLatencyTests excluded — mid-rework
uncommitted in a parallel session).
Claude-Session: https://claude.ai/code/session_014PtZdPwqZuqEDLc6wZMtEy
124 lines
4.0 KiB
Plaintext
124 lines
4.0 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Lanework</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>$(EXECUTABLE_NAME)</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>Lanework</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>$(MARKETING_VERSION)</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1</string>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>© 2026 rzen</string>
|
|
<key>UILaunchScreen</key>
|
|
<dict/>
|
|
<key>UISupportedInterfaceOrientations</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
</array>
|
|
<!-- Document-based, so App Store Connect requires this (indie-backup skill ▸ Register the
|
|
Backup File Type) — the in-place editing the imported-backup `onOpenURL` handler
|
|
(MobileApp.swift) relies on. -->
|
|
<key>LSSupportsOpeningDocumentsInPlace</key>
|
|
<true/>
|
|
<!-- Same document-type + UTI declaration as the Mac app's Info.plist, and it must stay
|
|
byte-identical in meaning: the package conformance is what makes NSMetadataQuery and the
|
|
Files app treat a `.kanban` directory as one document instead of a folder of loose files.
|
|
The iOS app *exports* the type because it is a separate App Store product — on this
|
|
platform, it is the owner. -->
|
|
<key>CFBundleDocumentTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeName</key>
|
|
<string>Lanework Board</string>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Editor</string>
|
|
<key>LSItemContentTypes</key>
|
|
<array>
|
|
<string>dev.rzen.indie.kanban-board</string>
|
|
</array>
|
|
<key>LSTypeIsPackage</key>
|
|
<true/>
|
|
</dict>
|
|
<!-- The backup archive IndieBackup writes/reads (indie-backup skill), so Files, AirDrop
|
|
and share sheets route a tapped `.kanbanbackup` file to this app's `onOpenURL`
|
|
instead of leaving it unopenable. -->
|
|
<dict>
|
|
<key>CFBundleTypeName</key>
|
|
<string>Lanework Backup</string>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Editor</string>
|
|
<key>LSHandlerRank</key>
|
|
<string>Owner</string>
|
|
<key>LSItemContentTypes</key>
|
|
<array>
|
|
<string>dev.rzen.indie.kanban-backup</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>UTExportedTypeDeclarations</key>
|
|
<array>
|
|
<dict>
|
|
<key>UTTypeConformsTo</key>
|
|
<array>
|
|
<string>com.apple.package</string>
|
|
<string>public.directory</string>
|
|
</array>
|
|
<key>UTTypeDescription</key>
|
|
<string>Lanework Board</string>
|
|
<key>UTTypeIdentifier</key>
|
|
<string>dev.rzen.indie.kanban-board</string>
|
|
<key>UTTypeTagSpecification</key>
|
|
<dict>
|
|
<key>public.filename-extension</key>
|
|
<string>kanban</string>
|
|
</dict>
|
|
</dict>
|
|
<dict>
|
|
<key>UTTypeConformsTo</key>
|
|
<array>
|
|
<string>public.data</string>
|
|
</array>
|
|
<key>UTTypeDescription</key>
|
|
<string>Lanework Backup</string>
|
|
<key>UTTypeIdentifier</key>
|
|
<string>dev.rzen.indie.kanban-backup</string>
|
|
<key>UTTypeTagSpecification</key>
|
|
<dict>
|
|
<key>public.filename-extension</key>
|
|
<array>
|
|
<string>kanbanbackup</string>
|
|
</array>
|
|
</dict>
|
|
</dict>
|
|
</array>
|
|
<!-- Publishes the container's Documents/ as a visible folder in iCloud Drive — on every
|
|
platform, including the Mac's Finder, which is how boards reach the Mac app before it
|
|
adopts the container natively (open panel into iCloud Drive ▸ Lanework). -->
|
|
<key>NSUbiquitousContainers</key>
|
|
<dict>
|
|
<key>iCloud.dev.rzen.indie.Kanban</key>
|
|
<dict>
|
|
<key>NSUbiquitousContainerIsDocumentScopePublic</key>
|
|
<true/>
|
|
<key>NSUbiquitousContainerName</key>
|
|
<string>Lanework</string>
|
|
<key>NSUbiquitousContainerSupportedFolderLevels</key>
|
|
<string>Any</string>
|
|
</dict>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|