fix: record tui input history (#1348) (thanks @vignesh07)
This commit is contained in:
@@ -23,6 +23,7 @@ Docs: https://docs.clawd.bot
|
|||||||
- Skills: add download installs with OS-filtered install options; add local sherpa-onnx-tts skill.
|
- Skills: add download installs with OS-filtered install options; add local sherpa-onnx-tts skill.
|
||||||
- Docs: clarify WhatsApp voice notes and Windows WSL portproxy LAN access notes.
|
- Docs: clarify WhatsApp voice notes and Windows WSL portproxy LAN access notes.
|
||||||
- UI: add copy-as-markdown with error feedback and drop legacy list view. (#1345) — thanks @bradleypriest.
|
- UI: add copy-as-markdown with error feedback and drop legacy list view. (#1345) — thanks @bradleypriest.
|
||||||
|
- TUI: add input history (up/down) for submitted messages. (#1348) — thanks @vignesh07.
|
||||||
### Fixes
|
### Fixes
|
||||||
- Discovery: shorten Bonjour DNS-SD service type to `_clawdbot-gw._tcp` and update discovery clients/docs.
|
- Discovery: shorten Bonjour DNS-SD service type to `_clawdbot-gw._tcp` and update discovery clients/docs.
|
||||||
- Agents: preserve subagent announce thread/topic routing + queued replies across channels. (#1241) — thanks @gnarco.
|
- Agents: preserve subagent announce thread/topic routing + queued replies across channels. (#1241) — thanks @gnarco.
|
||||||
|
|||||||
@@ -70,7 +70,6 @@ const routeSessions: RouteSpec = {
|
|||||||
match: (path) => path[0] === "sessions",
|
match: (path) => path[0] === "sessions",
|
||||||
run: async (argv) => {
|
run: async (argv) => {
|
||||||
const json = hasFlag(argv, "--json");
|
const json = hasFlag(argv, "--json");
|
||||||
const verbose = getVerboseFlag(argv);
|
|
||||||
const store = getFlagValue(argv, "--store");
|
const store = getFlagValue(argv, "--store");
|
||||||
if (store === null) return false;
|
if (store === null) return false;
|
||||||
const active = getFlagValue(argv, "--active");
|
const active = getFlagValue(argv, "--active");
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ const shouldRegisterPrimaryOnly = (argv: string[]) => {
|
|||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
|
||||||
const shouldEagerRegisterSubcommands = (argv: string[]) => {
|
const shouldEagerRegisterSubcommands = (_argv: string[]) => {
|
||||||
return isTruthyEnvValue(process.env.CLAWDBOT_DISABLE_LAZY_SUBCOMMANDS);
|
return isTruthyEnvValue(process.env.CLAWDBOT_DISABLE_LAZY_SUBCOMMANDS);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user