codeep 1.2.84 → 1.2.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/renderer/App.js +3 -3
- package/package.json +1 -1
package/dist/renderer/App.js
CHANGED
|
@@ -1296,7 +1296,7 @@ export class App {
|
|
|
1296
1296
|
y++;
|
|
1297
1297
|
}
|
|
1298
1298
|
// Gradient separator
|
|
1299
|
-
this.screen.writeRaw(separatorLine,
|
|
1299
|
+
this.screen.writeRaw(separatorLine, PRIMARY_COLOR + '─'.repeat(width) + style.reset);
|
|
1300
1300
|
// Input (don't render cursor when menu/settings is open)
|
|
1301
1301
|
this.renderInput(inputLine, width, this.menuOpen || this.settingsOpen);
|
|
1302
1302
|
// Status bar
|
|
@@ -1987,9 +1987,9 @@ export class App {
|
|
|
1987
1987
|
const helpText = ' Esc to stop ';
|
|
1988
1988
|
const helpPadLeft = Math.floor((width - helpText.length) / 2);
|
|
1989
1989
|
const helpPadRight = Math.max(0, width - helpPadLeft - helpText.length);
|
|
1990
|
-
this.screen.write(0, y,
|
|
1990
|
+
this.screen.write(0, y, PRIMARY_COLOR + '─'.repeat(helpPadLeft) + style.reset);
|
|
1991
1991
|
this.screen.write(helpPadLeft, y, helpText, fg.gray);
|
|
1992
|
-
this.screen.write(helpPadLeft + helpText.length, y,
|
|
1992
|
+
this.screen.write(helpPadLeft + helpText.length, y, PRIMARY_COLOR + '─'.repeat(helpPadRight) + style.reset);
|
|
1993
1993
|
}
|
|
1994
1994
|
/**
|
|
1995
1995
|
* Get color for action type
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeep",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.85",
|
|
4
4
|
"description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|