ruvector/examples/pwa-loader/manifest.json
Claude 2698993eae feat: QR encoder, PWA loader, no_std fixes (swarm WIP)
QR encoder (feature-gated behind `qr`):
- Pure-Rust QR code encoder with GF(2^8) Reed-Solomon
- SVG and ASCII renderers
- Version 1-5 support, byte mode, EC level M
- Example: qr_seed_encode

PWA loader:
- Browser-based RVF seed decoder (HTML/JS/CSS)
- Service worker for offline support
- Camera QR scanner via getUserMedia

no_std fixes:
- quality.rs test alloc import cleanup
- Cargo.toml feature gate for qr encoder

https://claude.ai/code/session_01RnwD4x5cbpB7FPvoyYQz8G
2026-02-15 18:37:19 +00:00

17 lines
641 B
JSON

{
"name": "RVF Seed Decoder",
"short_name": "RVF",
"description": "Decode RVF cognitive seeds and witness bundles in-browser using WASM",
"start_url": ".",
"display": "standalone",
"background_color": "#0f1117",
"theme_color": "#6c8cff",
"orientation": "any",
"icons": [
{
"src": "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><rect width='64' height='64' rx='12' fill='%230f1117'/><text x='32' y='42' font-size='28' text-anchor='middle' fill='%236c8cff' font-family='monospace' font-weight='bold'>RV</text></svg>",
"sizes": "any",
"type": "image/svg+xml"
}
]
}