bravecode-cli 0.1.28 → 0.1.29
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/cli-main.mjs +6 -3
- package/dist/cli-main.mjs.map +2 -2
- package/package.json +1 -1
package/dist/cli-main.mjs
CHANGED
|
@@ -38185,7 +38185,7 @@ var APP_VERSION, APP_NAME;
|
|
|
38185
38185
|
var init_version = __esm({
|
|
38186
38186
|
"src/version.ts"() {
|
|
38187
38187
|
"use strict";
|
|
38188
|
-
APP_VERSION = "0.1.
|
|
38188
|
+
APP_VERSION = "0.1.29";
|
|
38189
38189
|
APP_NAME = "BraveCode";
|
|
38190
38190
|
}
|
|
38191
38191
|
});
|
|
@@ -41972,7 +41972,7 @@ function AgentModelLine({ inline = false }) {
|
|
|
41972
41972
|
/* @__PURE__ */ jsx("text", { fg: colors2.textMuted, children: "\xB7" }),
|
|
41973
41973
|
/* @__PURE__ */ jsx("text", { fg: colors2.textSecondary, children: s(currentModel) }),
|
|
41974
41974
|
/* @__PURE__ */ jsx("text", { fg: colors2.success, children: "Free" }),
|
|
41975
|
-
/* @__PURE__ */ jsx("text", { fg: colors2.accent, children: "
|
|
41975
|
+
/* @__PURE__ */ jsx("text", { fg: colors2.accent, children: "Bravecode" }),
|
|
41976
41976
|
isRunning ? /* @__PURE__ */ jsx("text", { fg: colors2.warning, children: "\xB7 generating\u2026" }) : null
|
|
41977
41977
|
] });
|
|
41978
41978
|
}
|
|
@@ -41993,7 +41993,10 @@ function PixelLogo() {
|
|
|
41993
41993
|
\u2588\u2588\u2588\u2588\u2588\u2588 \u2588\u2588\u2588\u2588\u2588\u2588\u2588 \u2588\u2588\u2588\u2588\u2588\u2588\u2588 \u2588\u2588 \u2588\u2588 \u2588\u2588\u2588\u2588\u2588\u2588\u2588 \u2588\u2588\u2588\u2588\u2588\u2588\u2588 \u2588\u2588 \u2588\u2588 \u2588\u2588\u2588\u2588\u2588\u2588\u2588 \u2588\u2588\u2588\u2588\u2588\u2588\u2588 \u2588\u2588\u2588\u2588\u2588\u2588
|
|
41994
41994
|
`;
|
|
41995
41995
|
const logo = letter.split("\n").filter(Boolean);
|
|
41996
|
-
return /* @__PURE__ */
|
|
41996
|
+
return /* @__PURE__ */ jsxs("box", { alignItems: "center", flexDirection: "column", gap: 0, children: [
|
|
41997
|
+
logo.map((line, i) => /* @__PURE__ */ jsx("text", { fg: colors2.primary, children: s(line) }, s(i))),
|
|
41998
|
+
/* @__PURE__ */ jsx("text", { fg: colors2.textMuted, children: "bravecode" })
|
|
41999
|
+
] });
|
|
41997
42000
|
}
|
|
41998
42001
|
function Sidebar({ compact = false }) {
|
|
41999
42002
|
const { colors: colors2 } = useTheme();
|