version bump

This commit is contained in:
Pedram Amini
2025-12-28 12:56:01 -06:00
parent aa1ae5a2fc
commit 617bf91033
2 changed files with 11 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "maestro",
"version": "0.12.3",
"version": "0.13.0",
"description": "Maestro hones fractured attention into focused intent.",
"main": "dist/main/index.js",
"author": {

View File

@@ -1445,8 +1445,16 @@ function setupIpcHandlers() {
});
}
child.on('close', (code) => {
console.log('[TTS Main] Process exited with code:', code);
child.on('close', (code, signal) => {
console.log('[TTS Main] Process exited with code:', code, 'signal:', signal);
// Always log close event for debugging production issues
logger.info('TTS process closed', 'TTS', {
ttsId,
exitCode: code,
signal,
stderr: stderrOutput || '(none)',
command: fullCommand,
});
if (code !== 0 && stderrOutput) {
console.error('[TTS Main] stderr:', stderrOutput);
logger.error('TTS process error output', 'TTS', {