- Rename package, bundle ID, and all display strings from "Claude Session Viewer" to "Claude Session Analysis" - Bundle ID: com.svrnty.claudeSessionAnalysis - Add App Store category (developer-tools) to Info.plist - Add PrivacyInfo.xcprivacy privacy manifest (required by Apple) - Bump deployment target from macOS 10.15 to 13.0 - Fix App Sandbox: resolve real home directory so ~/.claude/projects is accessible in sandboxed release builds - Make project name parsing dynamic (no hardcoded username) - Auto-detect Claude Code data directory at ~/.claude/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
483 B
Swift
18 lines
483 B
Swift
import Cocoa
|
|
import FlutterMacOS
|
|
|
|
class MainFlutterWindow: NSWindow {
|
|
override func awakeFromNib() {
|
|
let flutterViewController = FlutterViewController()
|
|
let windowFrame = self.frame
|
|
self.contentViewController = flutterViewController
|
|
self.setFrame(windowFrame, display: true)
|
|
self.minSize = NSSize(width: 1200, height: 700)
|
|
self.title = "Claude Session Analysis"
|
|
|
|
RegisterGeneratedPlugins(registry: flutterViewController)
|
|
|
|
super.awakeFromNib()
|
|
}
|
|
}
|