summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop
diff options
context:
space:
mode:
authorAdam <[email protected]>2026-01-21 14:36:21 -0600
committerAdam <[email protected]>2026-01-21 14:36:21 -0600
commitb7b2eae20c7c4276343e5f1f0e5feaeb5ac3a0ef (patch)
tree4b5a54cf429e1ebb2792af016e058ceb742724da /packages/desktop
parent1b98f26794664a464489414d8767897a03f9ee14 (diff)
downloadopencode-b7b2eae20c7c4276343e5f1f0e5feaeb5ac3a0ef.tar.gz
opencode-b7b2eae20c7c4276343e5f1f0e5feaeb5ac3a0ef.zip
fix(web): favicon rename again
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 7bed1e8bd..6a81ef4a5 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-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="icon" type="image/png" href="/favicon-96x96-v3.png" sizes="96x96" />
+ <link rel="icon" type="image/svg+xml" href="/favicon-v3.svg" />
+ <link rel="shortcut icon" href="/favicon-v3.ico" />
+ <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-v3.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 e36644b05..ac21b3c28 100644
--- a/packages/desktop/src/index.tsx
+++ b/packages/desktop/src/index.tsx
@@ -270,7 +270,7 @@ const createPlatform = (password: Accessor<string | null>): Platform => ({
.then(() => {
const notification = new Notification(title, {
body: description ?? "",
- icon: "https://opencode.ai/favicon-96x96-v2.png",
+ icon: "https://opencode.ai/favicon-96x96-v3.png",
})
notification.onclick = () => {
const win = getCurrentWindow()