@delt/claude-alarm 0.6.15 → 0.6.16

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.
@@ -1198,7 +1198,7 @@
1198
1198
  }
1199
1199
  return `<div class="notif-item" data-session="${n.sessionId}" data-index="${i}">
1200
1200
  <div class="notif-title"><span class="notif-level ${n.level}"></span><span class="notif-title-text">${esc(n.title)}</span><button class="notif-dismiss" data-index="${i}">&times;</button></div>
1201
- <div class="notif-message">${esc(n.message)}</div>${permButtons}
1201
+ <div class="notif-message">${renderMarkdown(n.message)}</div>${permButtons}
1202
1202
  <div class="notif-time">${sName} &middot; ${timeStr}</div>
1203
1203
  </div>`;
1204
1204
  }).join('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delt/claude-alarm",
3
- "version": "0.6.15",
3
+ "version": "0.6.16",
4
4
  "description": "Monitor and get notifications from multiple Claude Code sessions via MCP Channels",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -1198,7 +1198,7 @@
1198
1198
  }
1199
1199
  return `<div class="notif-item" data-session="${n.sessionId}" data-index="${i}">
1200
1200
  <div class="notif-title"><span class="notif-level ${n.level}"></span><span class="notif-title-text">${esc(n.title)}</span><button class="notif-dismiss" data-index="${i}">&times;</button></div>
1201
- <div class="notif-message">${esc(n.message)}</div>${permButtons}
1201
+ <div class="notif-message">${renderMarkdown(n.message)}</div>${permButtons}
1202
1202
  <div class="notif-time">${sName} &middot; ${timeStr}</div>
1203
1203
  </div>`;
1204
1204
  }).join('');