viberadar 0.3.121 → 0.3.122

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.
@@ -4614,8 +4614,10 @@ async function renderDocFeatureDetail(c) {
4614
4614
  const versionsHtml = f.docVersions && f.docVersions.length > 0
4615
4615
  ? `<div style="font-size:11px;color:var(--muted);margin-top:6px">Версии: ${f.docVersions.map((v, i) => `<span style="${i === f.docVersions.length - 1 ? 'color:var(--text)' : ''}">${v.split('/').pop()}</span>`).join(' · ')}</div>`
4616
4616
  : '';
4617
- const screenshotHintHtml = f.routes && f.routes.length > 0
4618
- ? `<div style="margin-top:6px;font-size:12px;color:var(--muted)">📸 Перед запуском агента будут автоматически захвачены скриншоты (${f.routes.length} маршрут${f.routes.length === 1 ? '' : f.routes.length < 5 ? 'а' : 'ов'}): ${f.routes.join(', ')}</div>`
4617
+ const featResult = D.features?.find(x => x.key === drillFeatureKey);
4618
+ const featRoutes = featResult?.routes;
4619
+ const screenshotHintHtml = featRoutes && featRoutes.length > 0
4620
+ ? `<div style="margin-top:6px;font-size:12px;color:var(--muted)">📸 Перед запуском агента будут автоматически захвачены скриншоты (${featRoutes.length} маршрут${featRoutes.length === 1 ? '' : featRoutes.length < 5 ? 'а' : 'ов'}): ${featRoutes.join(', ')}</div>`
4619
4621
  : '';
4620
4622
  const detailActionsHtml = `
4621
4623
  <div class="doc-detail-actions">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "viberadar",
3
- "version": "0.3.121",
3
+ "version": "0.3.122",
4
4
  "description": "Live module map with test coverage for vibecoding projects",
5
5
  "main": "./dist/cli.js",
6
6
  "bin": {