Skip to content

Commit b5e85ec

Browse files
committed
feat: rename codeflare hello to codeflare explore and "Welcome to X" to "X Explorer"
1 parent 8a1ddcd commit b5e85ec

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

plugins/plugin-client-default/notebooks/hello.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Hello
2+
title: CodeFlare Explorer
33
className: codeflare--welcome-guidebook
44
layout:
55
1:

plugins/plugin-client-default/src/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,22 @@ import "../web/scss/components/Client.scss"
4646
// }
4747

4848
export default function renderMain(props: KuiProps) {
49-
// toplevel={!Capabilities.inBrowser() && <Search />}
49+
const explorer = productTitle + " Explorer"
5050
return (
5151
<Kui
5252
noHelp
5353
version={version}
54-
productName={props.title || "Welcome to " + productTitle}
54+
productName={props.title || explorer}
5555
lightweightTables
5656
noNewTabButton
5757
noNewSplitButton
5858
noTopTabs
5959
guidebooks={false}
6060
{...props}
61-
initialTabTitle="Hello"
61+
initialTabTitle={explorer}
6262
isPopup={false}
6363
quietExecCommand={false}
64-
commandLine={process.env.RUNNING_KUI_TEST ? undefined : props.commandLine || ["codeflare", "hello"]}
64+
commandLine={process.env.RUNNING_KUI_TEST ? undefined : props.commandLine || ["codeflare", "explore"]}
6565
>
6666
<ContextWidgets>
6767
<GitHubIcon />

plugins/plugin-codeflare/src/controller/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ export default function registerCodeflareCommands(registrar: Registrar) {
6060
outputOnly: true,
6161
})
6262

63-
// launch our hello guidebook
64-
registrar.listen("/codeflare/hello", (args) => import("./hello").then((_) => _.default(args)), {
63+
// launch our explore guidebook
64+
registrar.listen("/codeflare/explore", (args) => import("./hello").then((_) => _.default(args)), {
6565
needsUI: true,
6666
outputOnly: true,
6767
width: 1200,

plugins/plugin-codeflare/src/tray/menus/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default async function buildContextMenu(
3535
{ type: "separator" },
3636
{ label: `Codeflare ${version}`, enabled: false },
3737
{
38-
label: `Getting Started`,
38+
label: `CodeFlare Explorer`,
3939
icon: gettingStartedIcon,
4040
click: () => createWindow([], { width: 1200, height: 800 }),
4141
},

0 commit comments

Comments
 (0)