Skip to content

Commit 384f425

Browse files
committed
fix: rebrand remaining OpenCode references in menu, window title, HTML, and prompt URLs
1 parent 4b059b5 commit 384f425

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

packages/desktop-electron/src/main/menu.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function createMenu(deps: Deps) {
1515

1616
const template: Electron.MenuItemConstructorOptions[] = [
1717
{
18-
label: "OpenCode",
18+
label: "PawWork",
1919
submenu: [
2020
{ role: "about" },
2121
{
@@ -115,18 +115,16 @@ export function createMenu(deps: Deps) {
115115
{
116116
label: "Help",
117117
submenu: [
118-
{ label: "OpenCode Documentation", click: () => shell.openExternal("https://opencode.ai/docs") },
119-
{ label: "Support Forum", click: () => shell.openExternal("https://discord.com/invite/opencode") },
120-
{ type: "separator" },
118+
{ label: "PawWork on GitHub", click: () => shell.openExternal("https://github.com/Astro-Han/pawwork") },
121119
{ type: "separator" },
122120
{
123121
label: "Share Feedback",
124122
click: () =>
125-
shell.openExternal("https://github.com/anomalyco/opencode/issues/new?template=feature_request.yml"),
123+
shell.openExternal("https://github.com/Astro-Han/pawwork/issues/new"),
126124
},
127125
{
128126
label: "Report a Bug",
129-
click: () => shell.openExternal("https://github.com/anomalyco/opencode/issues/new?template=bug_report.yml"),
127+
click: () => shell.openExternal("https://github.com/Astro-Han/pawwork/issues/new"),
130128
},
131129
],
132130
},

packages/desktop-electron/src/main/windows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function createMainWindow(globals: Globals) {
6767
width: state.width,
6868
height: state.height,
6969
show: false,
70-
title: "OpenCode",
70+
title: "PawWork",
7171
icon: iconPath(),
7272
backgroundColor,
7373
...(process.platform === "darwin"

packages/desktop-electron/src/renderer/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1" />
6-
<title>OpenCode</title>
6+
<title>PawWork</title>
77
<link rel="icon" type="image/png" href="./favicon-96x96-v3.png" sizes="96x96" />
88
<link rel="icon" type="image/svg+xml" href="./favicon-v3.svg" />
99
<link rel="shortcut icon" href="./favicon-v3.ico" />

packages/desktop-electron/src/renderer/loading.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1" />
6-
<title>OpenCode</title>
6+
<title>PawWork</title>
77
<link rel="icon" type="image/png" href="./favicon-96x96-v3.png" sizes="96x96" />
88
<link rel="icon" type="image/svg+xml" href="./favicon-v3.svg" />
99
<link rel="shortcut icon" href="./favicon-v3.ico" />

0 commit comments

Comments
 (0)