Files
once-campfire/app/views/pwa/manifest.json.erb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

63 lines
1.8 KiB
Plaintext

{
"name": "<%= Current.account&.name || "Campfire" %>",
"icons": [
{
"src": "<%= fresh_account_logo_path(size: :small) %>",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "<%= fresh_account_logo_path %>",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "<%= fresh_account_logo_path %>",
"type": "image/png",
"sizes": "512x512",
"purpose": "maskable"
}
],
"start_url": "/",
"display": "standalone",
"scope": "/",
"description": "A chat app from the makers of Basecamp and HEY.",
"categories": ["social", "business", "productivity"],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"shortcuts": [
{
"name": "New chat room",
"description": "Open Campfire and start a new chat room",
"url": "rooms/opens/new",
"icons": [{ "src": "<%= image_url("add.svg") %>", "sizes": "any" }]
},
{
"name": "My profile",
"description": "Open Campfire and view your profile",
"url": "/users/me/profile",
"icons": [{ "src": "<%= image_url("person.svg") %>", "sizes": "any" }]
}
],
"screenshots": [
{
"src": "<%= image_url("screenshots/android-chat.png") %>",
"sizes": "1080x2400",
"form_factor": "narrow",
"label": "Campfire is an installable, self-hosted group chat system."
},
{
"src": "<%= image_url("screenshots/android-sidebar.png") %>",
"sizes": "1080x2400",
"form_factor": "narrow",
"label": "Easily invite people. Make rooms. @mentions, DMs, and mobile support."
},
{
"src": "<%= image_url("screenshots/android-dark-mode.png") %>",
"sizes": "1080x2400",
"form_factor": "narrow",
"label": "Full support for dark mode, customizable to your brand."
}
]
}