v0.7.0: Fix broken image display
What's Fixed
Images loaded and graded correctly but showed broken image icons in the UI. The root cause was that Tauri's convertFileSrc() generates asset:// protocol URLs to serve local files, but:
- The
protocol-assetCargo feature was not enabled on thetauridependency - The
assetProtocolscope was not configured intauri.conf.json
Without these, the asset protocol handler was never registered, so all image URLs failed to resolve in the webview.
Changes
- Enabled
protocol-assetfeature insrc-tauri/Cargo.toml - Added
assetProtocolscope configuration intauri.conf.jsonto allow serving local files - Bumped version to 0.7.0