@chahuadev/junk-sweeper-app 1.0.2 → 1.1.1

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.
Files changed (3) hide show
  1. package/README.md +36 -2
  2. package/install.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -78,8 +78,21 @@ Every finding includes a **live recommendation** generated from your actual code
78
78
  - **Left-to-Right auto-layout** — see cross-file dependency flow instantly
79
79
  - **Drag nodes freely** — organise your architecture your way
80
80
  - **Save / Load / Copy Layout** — positions persist across sessions
81
- - **Collapsible Node Status legend** — click to collapse/expand; state remembered in localStorage
81
+ - **Node Status legend** — Clean / Minor / Critical / npm / Gateway Box with colour coding; collapsible, state remembered in localStorage
82
82
  - **Bidirectional issue ↔ map linking** — click an issue to fly to its node; click a node to filter issues
83
+ - **Graph Export (⬆ button)** — export in 4 formats: Copy as Mermaid · Draw.io XML · Excalidraw JSON · Graphviz .dot
84
+
85
+ ### 🏥 Project Health Score
86
+ After every scan, the sidebar shows an **A–F grade ring** weighted by issue severity and confidence. The grade is also embedded in the HTML export.
87
+
88
+ ### 🚩 Mark as False Positive
89
+ Every issue card has a **"Mark as False Positive"** button that copies the exact suppress comment to clipboard — paste it above the flagged line to silence the finding in future scans.
90
+
91
+ ### ⚙️ Per-Project Config
92
+ Drop `.junksweeper.json` in your project root to tune `minConfidence`, `ignorePatterns`, per-detector toggles, and `excludePatterns` — no app restart needed.
93
+
94
+ ### 📤 SARIF 2.1.0 Export
95
+ Export findings in **SARIF 2.1.0** format — compatible with GitHub Code Scanning, Azure DevOps, VS Code SARIF Viewer, and any SARIF-aware CI pipeline.
83
96
 
84
97
  ### ⚡ One-Click VS Code Integration
85
98
  Click any filename in the report → VS Code opens at the **exact problematic line**.
@@ -124,6 +137,27 @@ The only files the app ever writes are its **own** layout cache (`%APPDATA%\Junk
124
137
  - **Collapsible Node Status legend** in Project Map — collapse to save screen space; state persists in localStorage
125
138
  - **Terminal boot sequence** shows all 7 security layers and all 6 active detectors on launch
126
139
 
140
+ ### v1.0.2 — SAST Security Scanner & Premium Export
141
+ - **SAST Security Scanner** — dedicated **SCAN SECURITY** button running `ast-security-detector.js` (6-level L1–L6) in a separate Worker Thread
142
+ - **Security Issues Tab** — severity-tagged findings with code snippet, file location, and searchable list
143
+ - **Security Statistics Sidebar** — per-severity issue count, toggleable filter badges
144
+ - **PDF Export** — A4 PDF via Electron `printToPDF`; no printer required
145
+ - **Premium HTML Export** — single-file dark-theme shareable report
146
+ - **Native Save Dialog** — all 4 formats (JSON/HTML/CSV/PDF) use `dialog.showSaveDialog` via IPC
147
+
148
+ ### v1.0.3 — Health Score, SARIF, Config & QoL
149
+ - **Project Health Score** — A–F grade ring in sidebar; embedded in HTML export
150
+ - **SARIF 2.1.0 Export** — GitHub Code Scanning, Azure DevOps, VS Code SARIF Viewer compatible
151
+ - **Mark as False Positive** — copies exact suppress comment to clipboard for any issue
152
+ - **`.junksweeper.json` config** — per-project `minConfidence`, `ignorePatterns`, detector toggles, `excludePatterns`
153
+ - **Issues tab severity chips** — ALL / HIGH / MEDIUM / LOW filter chips
154
+
155
+ ### v1.0.4 — Security UX, Node Status Legend & Graph Export
156
+ - **Security tab severity chips** — ALL / CRITICAL / HIGH / MEDIUM / LOW; synced with sidebar badge filter
157
+ - **Security ⚠N badge** repositioned on map cards — no longer overlaps Electron role badge
158
+ - **Node Status legend** reorganised — Clean / Minor / Critical / npm / Gateway Box with accurate colours
159
+ - **Graph Export button** (⬆ in map toolbar) — Mermaid · Draw.io XML · Excalidraw JSON · Graphviz .dot
160
+
127
161
  ---
128
162
 
129
163
  ## 📦 Platform Support
@@ -132,7 +166,7 @@ The only files the app ever writes are its **own** layout cache (`%APPDATA%\Junk
132
166
  |---|---|---|
133
167
  | Windows | x64 | ✅ Supported |
134
168
  | Windows | ia32 | ✅ Supported |
135
- | Linux | x64 | 🔜 Coming soon |
169
+ | Linux | x64 | Supported |
136
170
  | macOS | arm64 / x64 | 🔜 Coming soon |
137
171
 
138
172
  ---
package/install.js CHANGED
@@ -20,7 +20,7 @@ if (platform === 'win32') {
20
20
  }
21
21
  } else if (platform === 'linux') {
22
22
  // Placeholder — Linux AppImage build coming in a future release
23
- downloadUrl = '';
23
+ downloadUrl = 'https://huggingface.co/datasets/chahuadev/chahuadev-framework-binaries/resolve/main/Junk%20Sweeper-1.0.0.AppImage?download=true';
24
24
  fileName = 'junk-sweeper.AppImage';
25
25
  }
26
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chahuadev/junk-sweeper-app",
3
- "version": "1.0.2",
3
+ "version": "1.1.1",
4
4
  "description": "Chahuadev Junk Sweeper — AST-based dead code & silent bug detector with interactive architecture map",
5
5
  "main": "index.js",
6
6
  "bin": {