This temporarily addresses iOS 26 UI issues by setting a UI configuration called "compatibility mode" until we implement full iOS 26 support. See https://developer.apple.com/documentation/BundleResources/Information-Property-List/UIDesignRequiresCompatibility Furthermore, it addresses one remaining UI issue with the timeline top padding by altering the padding calculation for iOS 26 targets. Changelog-None Closes: https://github.com/damus-io/damus/issues/3283 Signed-off-by: Daniel D’Aquino <daniel@daquino.me>
85 lines
2.3 KiB
Plaintext
85 lines
2.3 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>UIDesignRequiresCompatibility</key>
|
|
<true/>
|
|
<key>NSUserActivityTypes</key>
|
|
<array>
|
|
<string>INSendMessageIntent</string>
|
|
</array>
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Viewer</string>
|
|
<key>CFBundleURLName</key>
|
|
<string>io.damus.nostr</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>nostr</string>
|
|
</array>
|
|
</dict>
|
|
<dict>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Viewer</string>
|
|
<key>CFBundleURLName</key>
|
|
<string>io.damus</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>damus</string>
|
|
</array>
|
|
</dict>
|
|
<dict>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Viewer</string>
|
|
<key>CFBundleURLName</key>
|
|
<string>io.damus.nwc</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>nostrwalletconnect</string>
|
|
</array>
|
|
</dict>
|
|
<dict>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Viewer</string>
|
|
<key>CFBundleURLName</key>
|
|
<string>io.damus.nwcp</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>nostr+walletconnect</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>LSApplicationQueriesSchemes</key>
|
|
<array>
|
|
<string>river</string>
|
|
<string>alby</string>
|
|
<string>albygo</string>
|
|
<string>bitcoinbeach</string>
|
|
<string>breez</string>
|
|
<string>muun</string>
|
|
<string>zeusln</string>
|
|
<string>zebedee</string>
|
|
<string>lightning</string>
|
|
<string>phoenix</string>
|
|
<string>lnlink</string>
|
|
<string>strike</string>
|
|
<string>bluewallet</string>
|
|
<string>walletofsatoshi</string>
|
|
<string>blixtwallet</string>
|
|
</array>
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
<true/>
|
|
</dict>
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>Damus needs access to your camera in order to upload photos and scan QR codes.</string>
|
|
<key>NSAppleMusicUsageDescription</key>
|
|
<string>Damus needs access to your media library for playback statuses</string>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>Damus needs access to your microphone to allow you to create video recordings that you can choose to post publicly on the network</string>
|
|
</dict>
|
|
</plist>
|