Skip to content

Commit cc9c6a1

Browse files
authored
Merge pull request #8610 from continuedev/continue/con-4806
Remove beta text from CLI intro message
2 parents 3b850ac + e81baaa commit cc9c6a1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

extensions/cli/src/asciiArt.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ describe("asciiArt", () => {
3434
const result = getDisplayableAsciiArt();
3535

3636
expect(result).toContain("██████╗");
37-
expect(result).toContain("(beta)");
37+
3838
expect(result).not.toBe(CONTINUE_ASCII_ART);
3939
// Should be much shorter than the full ASCII art
4040
expect(result.length).toBeLessThan(CONTINUE_ASCII_ART.length / 2);
@@ -47,7 +47,7 @@ describe("asciiArt", () => {
4747
const result = getDisplayableAsciiArt();
4848

4949
expect(result).toContain("██████╗");
50-
expect(result).toContain("(beta)");
50+
5151
expect(result).not.toBe(CONTINUE_ASCII_ART);
5252
});
5353

extensions/cli/src/asciiArt.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ${mind.multiline(` ██████╗ ██████╗ ███╗
1212
██║ ██║ ██║██║╚██╗██║ ██║ ██║██║╚██╗██║██║ ██║██╔══╝
1313
╚██████╗╚██████╔╝██║ ╚████║ ██║ ██║██║ ╚████║╚██████╔╝███████╗
1414
╚═════╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚══════╝`)}
15-
${d("v" + getVersion() + " (beta)")}`;
15+
${d("v" + getVersion())}`;
1616

1717
// ASCII art for just "CN" (first two letters)
1818
const CN_ASCII_ART = `
@@ -22,7 +22,7 @@ ${mind.multiline(` ██████╗███╗ ██╗
2222
██║ ██║╚██╗██║
2323
╚██████╗██║ ╚████║
2424
╚═════╝╚═╝ ╚═══╝`)}
25-
${d("v" + getVersion() + " (beta)")}`;
25+
${d("v" + getVersion())}`;
2626

2727
// Minimum terminal width required to display ASCII art properly
2828
const MIN_WIDTH_FOR_ASCII_ART = 75;

0 commit comments

Comments
 (0)