fluxflow-cli 1.6.0 → 1.6.1
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/fluxflow.js +5 -5
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -136,7 +136,7 @@ var init_ChatLayout = __esm({
|
|
|
136
136
|
if (content.startsWith("\\text{") && content.endsWith("}")) {
|
|
137
137
|
content = content.slice(6, -1);
|
|
138
138
|
}
|
|
139
|
-
const mathContent = content.replace(/\\multiply/g, "\xD7").replace(/\\
|
|
139
|
+
const mathContent = content.replace(/\\multiply/g, "\xD7").replace(/\\mul/g, "\xD7").replace(/\\div/g, "\xF7");
|
|
140
140
|
return /* @__PURE__ */ React2.createElement(Text2, { key: j, color: "white", backgroundColor: "#4c0099", bold: true, italic: true }, " ", mathContent, " ");
|
|
141
141
|
}
|
|
142
142
|
if (part.startsWith("[") && (part.includes("](") || part.includes("] ("))) {
|
|
@@ -2749,7 +2749,7 @@ function App() {
|
|
|
2749
2749
|
id: "update-" + Date.now(),
|
|
2750
2750
|
role: "system",
|
|
2751
2751
|
text: `\u{1F680} **New version 'v${latestVersion}' is available!**
|
|
2752
|
-
Type \`/update\` to upgrade immediately.
|
|
2752
|
+
Type \`/update latest\` to upgrade immediately.
|
|
2753
2753
|
Check what's new using \`/changelog\` command.`,
|
|
2754
2754
|
isUpdateNotification: true,
|
|
2755
2755
|
isMeta: true
|
|
@@ -3053,7 +3053,7 @@ Check what's new using \`/changelog\` command.`,
|
|
|
3053
3053
|
{ cmd: "/changelog", desc: "View latest updates" },
|
|
3054
3054
|
{ cmd: "/update", desc: "Check/Install updates", subs: [
|
|
3055
3055
|
{ cmd: "check", desc: "Check for new version" },
|
|
3056
|
-
{ cmd: "
|
|
3056
|
+
{ cmd: "latest", desc: "Install Latest Version" }
|
|
3057
3057
|
] }
|
|
3058
3058
|
];
|
|
3059
3059
|
const handleSubmit = (value) => {
|
|
@@ -3306,7 +3306,7 @@ ${list || "No saved chats found."}`, isMeta: true }];
|
|
|
3306
3306
|
performVersionCheck(true);
|
|
3307
3307
|
break;
|
|
3308
3308
|
}
|
|
3309
|
-
const isForce = parts.includes("--
|
|
3309
|
+
const isForce = parts.includes("--latest");
|
|
3310
3310
|
setActiveView("update");
|
|
3311
3311
|
break;
|
|
3312
3312
|
}
|
|
@@ -4298,7 +4298,7 @@ var init_app = __esm({
|
|
|
4298
4298
|
init_setup();
|
|
4299
4299
|
SESSION_START_TIME = Date.now();
|
|
4300
4300
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog.html";
|
|
4301
|
-
versionFluxflow = "1.6.
|
|
4301
|
+
versionFluxflow = "1.6.1";
|
|
4302
4302
|
updatedOn = "2026-05-02";
|
|
4303
4303
|
ResolutionModal = ({ data, onResolve, onEdit }) => /* @__PURE__ */ React10.createElement(Box10, { flexDirection: "column", borderStyle: "round", borderColor: "magenta", paddingX: 2, paddingY: 1, width: "100%" }, /* @__PURE__ */ React10.createElement(Text10, { color: "magenta", bold: true, underline: true }, "\u{1F7E3} STEERING HINT RESOLUTION"), /* @__PURE__ */ React10.createElement(Text10, { marginTop: 1 }, "The agent already finished the task (turn: finish) before your hint was consumed."), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1, backgroundColor: "#222", paddingX: 1, width: "100%" }, /* @__PURE__ */ React10.createElement(Text10, { italic: true, color: "gray" }, '"', data, '"')), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1 }, /* @__PURE__ */ React10.createElement(Text10, { color: "cyan" }, "How would you like to proceed?")), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1 }, /* @__PURE__ */ React10.createElement(
|
|
4304
4304
|
CommandMenu,
|