Files
Firelink/src-tauri/tauri.macos.conf.json
T
NimBold f5e228a589 fix(window): clarify cross-platform window boundaries
- Enable native elevation on macOS and Windows with theme-aware active and inactive contours.

- Track native window focus with race-safe registration and cleanup across main and Properties shells.

- Disable unsupported Linux shadows explicitly and cover focus and platform policies with regression tests.
2026-09-05 15:46:58 +03:30

25 lines
422 B
JSON

{
"app": {
"windows": [
{
"create": false,
"title": "Firelink",
"width": 1280,
"height": 800,
"minWidth": 960,
"minHeight": 640,
"transparent": true,
"decorations": false,
"shadow": true
}
]
},
"bundle": {
"targets": ["app", "dmg"],
"macOS": {
"signingIdentity": "-",
"hardenedRuntime": true
}
}
}