Files
AV-Live/launcher/Resources/Info.plist
T
L'électron rare fac0f7e055 feat(launcher): data-only mode + mode picker
Add ModePickerWindow.swift for live vs data-only.
Update MenuBarContent and ProcessManager for modes.
Bump Info.plist version, update app entry point.
2026-05-13 09:33:47 +02:00

45 lines
1.7 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>en</string>
<key>CFBundleExecutable</key>
<string>AVLiveLauncher</string>
<key>CFBundleIconFile</key>
<string>AppIcon</string>
<key>CFBundleIdentifier</key>
<string>cc.saillant.AVLiveLauncher</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>AV-Live</string>
<key>CFBundleDisplayName</key>
<string>AV-Live</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSMinimumSystemVersion</key>
<string>11.0</string>
<key>LSUIElement</key>
<false/>
<key>NSHighResolutionCapable</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>GPL-3.0-or-later © L'Electron Rare</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<!-- TCC : autorise les sous-processus (data_feeds Python) a ouvrir la
webcam pour la detection de pose YOLO. Sans cette cle, macOS
refuse silencieusement l'acces depuis cv2.VideoCapture. -->
<key>NSCameraUsageDescription</key>
<string>AV-Live utilise la webcam pour la detection de pose temps reel (YOLOv8) en mode data-only.</string>
<!-- Necessaire si une dependance audio est ajoutee (whisper, etc.). -->
<key>NSMicrophoneUsageDescription</key>
<string>AV-Live peut utiliser le micro pour des sources audio temps reel.</string>
</dict>
</plist>