Auf ausdruecklichen Wunsch jetzt auch die internen Bezeichner, weil die Installation noch keine echten Daten enthaelt: POSTGRES_USER/PASSWORD/DB, der Volume-Name, die Standard-DATABASE_URL, der localStorage-Schluessel und die iOS-Zeichenketten inklusive Keychain-Konto. Das setzt eine leere Datenbank voraus: Der neue Volume-Name legt eine neue, leere Datenbank an. Die alte bleibt als verwaistes Volume liegen und muss von Hand entfernt werden. Die Warnung in docker-compose.yml bleibt stehen, damit eine spaetere Umbenennung nicht versehentlich mit Daten im Volume passiert. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
96 lines
3.4 KiB
Plaintext
96 lines
3.4 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>
|
|
<!-- Von Xcode aus den Build-Einstellungen gefuellt -->
|
|
<!-- Deutsch als Sprache der App: Sonst zeichnet iOS DatePicker und
|
|
Monatsnamen auf Englisch ("10. Dec 2027"). -->
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>de</string>
|
|
<key>CFBundleLocalizations</key>
|
|
<array>
|
|
<string>de</string>
|
|
</array>
|
|
<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>$(PRODUCT_NAME)</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Vorrania</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1</string>
|
|
<key>UILaunchScreen</key>
|
|
<dict/>
|
|
|
|
<!-- Am iPad verlangt das System alle Ausrichtungen, solange die App nicht
|
|
auf Vollbild besteht. Am iPhone bleibt Hochkant plus Querformat. -->
|
|
<key>UISupportedInterfaceOrientations</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
</array>
|
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
</array>
|
|
|
|
<!-- Kamera für den Barcode-Scan -->
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>Die Kamera wird zum Scannen von Barcodes beim Ein- und Auslagern verwendet.</string>
|
|
|
|
<!-- Lokaler Server ohne HTTPS (Heimnetz) -->
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsLocalNetworking</key>
|
|
<true/>
|
|
</dict>
|
|
|
|
<!-- Schnellaktionen beim langen Druck auf das App-Symbol -->
|
|
<key>UIApplicationShortcutItems</key>
|
|
<array>
|
|
<dict>
|
|
<key>UIApplicationShortcutItemType</key>
|
|
<string>com.scarriffle.projectgood.checkin</string>
|
|
<key>UIApplicationShortcutItemTitle</key>
|
|
<string>Einlagern</string>
|
|
<key>UIApplicationShortcutItemIconType</key>
|
|
<string>UIApplicationShortcutIconTypeAdd</string>
|
|
</dict>
|
|
<dict>
|
|
<key>UIApplicationShortcutItemType</key>
|
|
<string>com.scarriffle.projectgood.checkout</string>
|
|
<key>UIApplicationShortcutItemTitle</key>
|
|
<string>Auslagern</string>
|
|
<key>UIApplicationShortcutItemIconType</key>
|
|
<string>UIApplicationShortcutIconTypeRemove</string>
|
|
</dict>
|
|
</array>
|
|
|
|
<!-- projectgood://checkin bzw. projectgood://checkout -->
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleURLName</key>
|
|
<string>com.scarriffle.projectgood</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>projectgood</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
</plist>
|