From 04a3dd13f7fd990b1c679923395063e063ffa838 Mon Sep 17 00:00:00 2001 From: brobert Date: Fri, 17 Oct 2025 14:55:22 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20=E2=84=B9=EF=B8=8F=20en=20Uso;=20a?= =?UTF-8?q?=C3=B1adir=20encabezado=20'Tus=20tareas'=20e=20it=C3=A1lica=20e?= =?UTF-8?q?n=20vac=C3=ADos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: aider (openrouter/openai/gpt-5) --- src/services/command.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/services/command.ts b/src/services/command.ts index a888038..1cee166 100644 --- a/src/services/command.ts +++ b/src/services/command.ts @@ -472,7 +472,7 @@ export class CommandService { if (items.length === 0) { return [{ recipient: context.sender, - message: `No hay pendientes en ${groupName}.` + message: italic(`No hay pendientes en ${groupName}.`) }]; } @@ -520,7 +520,7 @@ export class CommandService { byGroup.set(key, arr); } - const sections: string[] = []; + const sections: string[] = [bold('Tus tareas')]; for (const [groupId, arr] of byGroup.entries()) { const groupName = (groupId && GroupSyncService.activeGroupsCache.get(groupId)) || @@ -935,7 +935,7 @@ export class CommandService { if (!m) { return [{ recipient: context.sender, - message: 'Uso: `/t configurar diario|l-v|semanal|off [HH:MM]`' + message: 'ℹ️ Uso: `/t configurar diario|l-v|semanal|off [HH:MM]`' }]; } const hh = Math.max(0, Math.min(23, parseInt(m[1], 10))); @@ -945,7 +945,7 @@ export class CommandService { if (!freq) { return [{ recipient: context.sender, - message: 'Uso: `/t configurar diario|l-v|semanal|off [HH:MM]`' + message: 'ℹ️ Uso: `/t configurar diario|l-v|semanal|off [HH:MM]`' }]; } const ensured = ensureUserExists(context.sender, this.dbInstance);