Skip to content
Snippets Groups Projects
Commit cb797c96 authored by nizune's avatar nizune
Browse files

Merge branch 'master' of https://gitlab.insrt.uk/revolt/revite

parents 766be902 2e7a017b
No related merge requests found
public/assets/icons/masking-512x512.png

4.92 KiB

public/assets/icons/mono-48x48.png

665 B

......@@ -137,7 +137,7 @@ self.addEventListener("push", (event) => {
: JSON.stringify(data.content),
timestamp: decodeTime(data._id),
tag: data.channel,
badge: "https://app.revolt.chat/assets/icons/android-chrome-512x512.png",
badge: "https://app.revolt.chat/assets/icons/mono-48x48.png",
data:
channel?.channel_type === "TextChannel"
? `/server/${channel.server}/channel/${channel._id}`
......
......@@ -38,7 +38,7 @@ function getVersion() {
}
const branch = getGitBranch();
const isNightly = branch !== 'production';
const isNightly = false;//branch !== 'production';
const iconPrefix = isNightly ? 'nightly-' : '';
export default defineConfig({
......@@ -54,8 +54,8 @@ export default defineConfig({
description: isNightly ? "Early preview builds of Revolt." : "User-first, privacy-focused chat platform.",
categories: ["messaging"],
start_url: "/",
orientation: "any",
display: "standalone",
orientation: "portrait",
background_color: "#101823",
icons: [
{
......@@ -67,6 +67,18 @@ export default defineConfig({
"src": `/assets/icons/${iconPrefix}android-chrome-512x512.png`,
"type": "image/png",
"sizes": "512x512"
},
{
"src": `/assets/icons/mono-48x48.png`,
"type": "image/png",
"sizes": "48x48",
"purpose": "monochrome"
},
{
"src": `/assets/icons/masking-512x512.png`,
"type": "image/png",
"sizes": "512x512",
"purpose": "maskable"
}
]
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment