codeep 1.1.31 → 1.1.32

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.
@@ -1603,6 +1603,9 @@ export class App {
1603
1603
  else if (this.confirmOpen && this.confirmOptions) {
1604
1604
  bottomPanelHeight = this.confirmOptions.message.length + 5; // title + messages + buttons + padding
1605
1605
  }
1606
+ else if (this.statusOpen) {
1607
+ bottomPanelHeight = 16; // Status info panel
1608
+ }
1606
1609
  else if (this.helpOpen) {
1607
1610
  bottomPanelHeight = Math.min(height - 6, 20); // Help takes more space
1608
1611
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeep",
3
- "version": "1.1.31",
3
+ "version": "1.1.32",
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",