viberadar 0.3.184 → 0.3.185

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.
@@ -1872,7 +1872,9 @@ function escapeHtml(text) {
1872
1872
  return String(text || '')
1873
1873
  .replace(/&/g, '&')
1874
1874
  .replace(/</g, '&lt;')
1875
- .replace(/>/g, '&gt;');
1875
+ .replace(/>/g, '&gt;')
1876
+ .replace(/"/g, '&quot;')
1877
+ .replace(/'/g, '&#39;');
1876
1878
  }
1877
1879
 
1878
1880
 
@@ -3119,6 +3121,7 @@ async function init() {
3119
3121
  document.getElementById('searchInput').value = searchQuery;
3120
3122
 
3121
3123
  document.getElementById('loading').style.display = 'none';
3124
+ if (contextMode === 'probe') { await loadProbeData(); }
3122
3125
  renderStats();
3123
3126
  renderSidebar();
3124
3127
  renderContent();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "viberadar",
3
- "version": "0.3.184",
3
+ "version": "0.3.185",
4
4
  "description": "Live module map with test coverage for vibecoding projects",
5
5
  "main": "./dist/cli.js",
6
6
  "bin": {