- Add light/dark mode toggle demonstration with screenshots in README
- Add multi-theme UI showcase (Bubblegum, Cosmic Night, Quantum Rose) with screenshots
- Remove KNOWN_ISSUES.md documentation file
- Replace IconInnerShadowTop with IconRadar in app sidebar logo
- Update GitHub help link from placeholder to actual repository URL
- Update site header GitHub link to point to xingrin repository
- Add @fontsource/noto-sans-sc dependency (weights 400, 500, 700)
- Import Noto Sans SC font files in root layout
- Update fontFamily to prioritize Noto Sans SC before system fonts
- Replace system-ui fallback comment with local font loading description
- Replace single-sample CPU calculation with two-sample delta method
- Add 0.5 second sleep between CPU stat samples to calculate actual usage
- Parse all 7 CPU time fields (user, nice, sys, idle, iowait, irq, softirq) from /proc/stat
- Calculate CPU percentage as (1 - idle_diff/total_diff) * 100
- Add zero division protection when total_diff is 0
- Fix incorrect CPU usage reporting caused by using cumulative stat values
- Add conditional step to generate self-signed SSL certificates before building xingrin-nginx image
- Create docker/nginx/ssl directory and generate privkey.pem and fullchain.pem files
- Use OpenSSL to create 365-day RSA 2048-bit certificate with CN=localhost
- Only execute when building nginx image to avoid unnecessary certificate generation
- Import toast and getErrorMessage in use-nuclei-repos hook
- Add success toast messages for create, update, delete, and refresh repository operations
- Add error toast messages with error details for all repository operations
- Extract markNotificationsAsRead from useNotificationSSE hook in notification drawer
- Call markNotificationsAsRead in markAllAsRead success handler to update SSE notification
- Add error_message field to ScanHistorySerializer fields list
- Update scheduled scan execution order: calculate next_run_time before triggering scan to prevent duplicate triggers
- Add error handling comment explaining retry behavior for failed scheduled scans
- Add errorMessage field to ScanProgressData and ScanRecord types in frontend
- Display error message in red alert box when scan fails in progress dialog
- Document generic
- Change `except:` to `except Exception:` in process.kill() error handling (line 145)
- Change `except:` to `except Exception:` in log_file_handle.close() error handling (line 324)
- Add documentation for bare except code style issue in KNOWN_ISSUES.md
- Replace `= None` with `| None = None` type hint in scan repository
- Remove unused `get_by_ids` method from target repository
- Add organization name retrieval before soft deletion in organization service
- Add target name retrieval before soft deletion in target service
- Include deleted names in deletion operation return values