platform-codebase/features/conversation-assistant/macos/Sources/AppVersion.swift
Quinn Ftw ce9277d56a feat(landing): device-tier detection + perf optimizations + path fixes
DEVICE TIER DETECTION:
- Add useDeviceTier hook with RAM/CPU/touch detection
- Add useFeatureDefaults for tier-based feature defaults
- Add MotionProvider for tier-aware Framer Motion config
- Particles/sounds/animations off by default on low/mid devices
- Users can override defaults via FloatingSettings
- Show tier indicator badge with reset button

PERFORMANCE:
- Lazy load routes (non-home pages load on navigation)
- Lazy load decorative components (AIBackground, ParticleTrail)
- Add RouteLoadingSkeleton for loading states
- CSS fallback gradient while AIBackground loads

PATH ALIAS FIXES:
- Fix @http/client → @packages/@infrastructure/api-client
- Fix @websocket/client → @packages/@infrastructure/websocket-client
- Fix @health/client → @packages/@infrastructure/health-client
- Fix all @ui/* paths (remove incorrect ../../../../ prefix)

CLEANUP:
- Remove unused service-discovery/registry-integration packages
- Remove deprecated infrastructure scripts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 21:35:07 -08:00

31 lines
662 B
Swift

//
// AppVersion.swift
// Generated from VERSION.json - DO NOT EDIT MANUALLY
//
// Regenerate with: ./generate-version.sh
//
import Foundation
enum AppVersion {
static let version = "0.0.22"
static let major = 0
static let merges = 0
static let builds = 22
static let gitCommit = "28dbcc5"
static let gitBranch = "main"
static let buildTime = "2025-12-29T19:00:37-08:00"
static var displayVersion: String {
"v\(version)"
}
static var fullVersion: String {
"Version \(version) (\(gitCommit))"
}
static var detailedVersion: String {
"v\(version) (\(gitCommit) on \(gitBranch))"
}
}