summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop
diff options
context:
space:
mode:
authorRyan Vogel <[email protected]>2026-01-19 15:04:59 -0500
committerGitHub <[email protected]>2026-01-19 15:04:59 -0500
commit889c60d63b585a276080f20c40c2d73ff715ea94 (patch)
treeb550782e54a7138ab3d3039a5cff002c053c6211 /packages/desktop
parentc47699536fe9742cf5aa37f2c51168abeb90cb8d (diff)
downloadopencode-889c60d63b585a276080f20c40c2d73ff715ea94.tar.gz
opencode-889c60d63b585a276080f20c40c2d73ff715ea94.zip
fix(web): rename favicons to v2 for cache busting (#9492)
Diffstat (limited to 'packages/desktop')
-rw-r--r--packages/desktop/index.html8
-rw-r--r--packages/desktop/src/index.tsx2
2 files changed, 5 insertions, 5 deletions
diff --git a/packages/desktop/index.html b/packages/desktop/index.html
index d7d439ab8..f03666d5e 100644
--- a/packages/desktop/index.html
+++ b/packages/desktop/index.html
@@ -4,10 +4,10 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>OpenCode</title>
- <link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
- <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
- <link rel="shortcut icon" href="/favicon.ico" />
- <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
+ <link rel="icon" type="image/png" href="/favicon-96x96-v2.png" sizes="96x96" />
+ <link rel="icon" type="image/svg+xml" href="/favicon-v2.svg" />
+ <link rel="shortcut icon" href="/favicon-v2.ico" />
+ <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-v2.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="theme-color" content="#F8F7F7" />
<meta name="theme-color" content="#131010" media="(prefers-color-scheme: dark)" />
diff --git a/packages/desktop/src/index.tsx b/packages/desktop/src/index.tsx
index 6cd77d7d5..a06270b13 100644
--- a/packages/desktop/src/index.tsx
+++ b/packages/desktop/src/index.tsx
@@ -253,7 +253,7 @@ const createPlatform = (password: Accessor<string | null>): Platform => ({
.then(() => {
const notification = new Notification(title, {
body: description ?? "",
- icon: "https://opencode.ai/favicon-96x96.png",
+ icon: "https://opencode.ai/favicon-96x96-v2.png",
})
notification.onclick = () => {
const win = getCurrentWindow()