Files
vibetorrent/frontend/manifest.json
spinline bffc72391a feat: Add iOS push notification support (iOS 16.4+)
- Platform detection utilities (is_ios, is_standalone, supports_push)
- iOS-specific meta tags and Apple touch icons
- Auto-detect iOS and show user-friendly message when not in standalone mode
- Enhanced Service Worker with iOS-compatible notification options
- Comprehensive iOS push notification documentation
- manifest.json scope for PWA compliance
- Only works when added to Home Screen (iOS Safari limitation)
2026-02-05 23:57:08 +03:00

42 lines
1.1 KiB
JSON

{
"name": "VibeTorrent",
"short_name": "VibeTorrent",
"description": "Modern web-based torrent client with real-time updates",
"start_url": "/",
"scope": "/",
"display": "standalone",
"background_color": "#1d232a",
"theme_color": "#1d232a",
"orientation": "any",
"categories": ["productivity", "utilities"],
"icons": [
{
"src": "icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
}
],
"screenshots": [
{
"src": "icon-512.png",
"sizes": "512x512",
"type": "image/png",
"form_factor": "wide",
"label": "Desktop Home Screen"
},
{
"src": "icon-192.png",
"sizes": "192x192",
"type": "image/png",
"form_factor": "narrow",
"label": "Mobile Home Screen"
}
]
}