You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Restore missing async function autoSave() declaration that caused settings.js to fail parsing, breaking all dynamic UI behavior introduced in v0.6.0 (WiFi section did not appear, mode descriptions did not update).
Move WiFi section directly below the App Mode select so the related controls appear inline.
Auto-request Location Services permission when WiFi Mode is already active on app launch, not only when switching mode.
Notes
This is a hotfix for v0.6.0 — strongly recommended for all users.
Problem: The signed macOS DMG from v0.3.0 would immediately crash (SIGKILL) on launch — no output, no crash report.
Root cause: Tauri v2 uses WKWebView which requires JIT compilation for JavaScript. macOS hardened runtime (required for notarization) disables JIT by default, and AMFI enforcement kills the process instantly.
Fix: Added com.apple.security.cs.allow-jit entitlement to the code signing process.
Changes
Added src-tauri/Entitlements.plist with JIT entitlement