Files
Firelink/src-tauri/tauri.windows.conf.json
T
NimBold 1ddfaec338 fix(window): refine cross-platform window frames and eliminate Windows shadow bleed
- Set shadow: false on Windows main and Properties window builders to prevent rectangular DWM shadow bleed behind rounded corners.
- Refine active and inactive window frame tokens across themes for subtle, non-glaring boundaries.
- Apply a 0.5px hairline window border rule specifically on macOS to match native Retina AppKit window strokes.
- Synchronize document platform dataset attribute on app boot across main and Properties windows.
- Update and extend window configuration and platform synchronization test suites.
2026-09-05 20:02:31 +03:30

27 lines
470 B
JSON

{
"app": {
"windows": [
{
"create": false,
"title": "Firelink",
"width": 1280,
"height": 800,
"minWidth": 960,
"minHeight": 640,
"transparent": true,
"decorations": false,
"shadow": false
}
]
},
"bundle": {
"targets": ["nsis"],
"windows": {
"nsis": {
"installerIcon": "icons/icon.ico",
"uninstallerIcon": "icons/icon.ico"
}
}
}
}