Compare commits

..

No commits in common. '0c1013d94f7051689464520faaa83392b9eb139a' and '3b8e50ac6f397b7bbe36587ef8d5a8bfee00ea37' have entirely different histories.

@ -138,6 +138,12 @@ async fn get_or_create_harvester(
} }
} }
// Debug builds only: open the Web Inspector for the harvester so its
// console/DOM can be inspected directly — useful while tuning the
// collector heuristics.
#[cfg(debug_assertions)]
Ok(win) Ok(win)
} }

@ -1,8 +1,8 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "Mana Viewer", "productName": "tauri-app",
"version": "0.1.0", "version": "0.1.0",
"identifier": "com.manaviewer.desktop", "identifier": "com.manaviewer.app",
"build": { "build": {
"beforeDevCommand": "npm run dev", "beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420", "devUrl": "http://localhost:1420",
@ -25,7 +25,7 @@
}, },
"bundle": { "bundle": {
"active": true, "active": true,
"targets": ["app"], "targets": "all",
"icon": [ "icon": [
"icons/32x32.png", "icons/32x32.png",
"icons/128x128.png", "icons/128x128.png",

Loading…
Cancel
Save