- Refactor authentication flow to require endpoint for login and decouple token saving - Add and integrate search functionality for bookmarks - Simplify and improve server settings setup (remove connection test, direct save & login) - Update sidebar/tab navigation to include search and improve structure - Show placeholder image in BookmarkCardView if no image is available, ensuring consistent layout - Improve BookmarkDetailView header and meta info display - Add utility for domain extraction from URLs - General code cleanup and minor UI/UX improvements
25 lines
556 B
Plaintext
25 lines
556 B
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>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleURLName</key>
|
|
<string>readeck.url-handler</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>readeck</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>UILaunchScreen</key>
|
|
<dict>
|
|
<key>UIColorName</key>
|
|
<string>green</string>
|
|
<key>UIImageName</key>
|
|
<string>readeck</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|