diff --git a/App.tsx b/App.tsx index 249b9e55..74772846 100644 --- a/App.tsx +++ b/App.tsx @@ -72,7 +72,7 @@ export default function App() { const handleSaveEventName = async () => { if (!settings) return; - const newName = tempEventName.trim() || 'Event'; + const newName = tempEventName.trim() || 'Schnappix-Party'; const updated = { ...settings, eventText: newName }; await saveSettings(updated); setSettings(updated); @@ -233,7 +233,7 @@ export default function App() { Subtext (Footer) - {footerText} + {footerText === 'Display tippen! • Lächeln! • Foto schnappen!' ? ( + + Display tippen! • + Lächeln! • + Foto schnappen! + + ) : ( + footerText + )} @@ -607,12 +617,7 @@ export default function CameraScreen({ )} - {/* Source indicator */} - - - Kamera: {isUsbConnected ? 'Externe USB-Kamera' : 'Tablet-Frontkamera (Fallback)'} - - + {/* Source indicator removed per request */} {/* Burst progress indicator */} {(burstCount || 1) > 1 && ( diff --git a/src/services/settings.ts b/src/services/settings.ts index 0ae8f430..01bd60ea 100644 --- a/src/services/settings.ts +++ b/src/services/settings.ts @@ -43,11 +43,11 @@ const DEFAULT_SETTINGS: AppSettings = { availableFrameIds: FRAMES.map(f => f.id), dateOverlay: 'off', dateOverlayTransform: { x: 0, y: 0, rotation: 0, scale: 1 }, - eventText: 'Schnappix-Party', + eventText: '', burstCount: 1, burstIntervalSec: 5, welcomeText: 'Zeit für ein Erinnerungsfoto!', - footerText: '👆 Display tippen! • 😊 Lächeln! • 📸 Foto schnappen!', + footerText: 'Display tippen! • Lächeln! • Foto schnappen!', useFrontCamera: false, enableLogs: true, };