mirror of
https://github.com/ApfelTeeSaft/LiveSplitOne.git
synced 2026-08-27 03:33:40 +00:00
This introduces a Tauri based desktop version of LiveSplit One. For now very few changes have been done. It's mostly global hotkeys that work now. It's unclear if Tauri is the long term solution for LiveSplit One, but it gets us global hotkeys and auto splitting with very little effort, so we'll use it until something better comes along.
44 lines
811 B
JSON
44 lines
811 B
JSON
{
|
|
"build": {
|
|
"devPath": "target/dist",
|
|
"distDir": "target/dist",
|
|
"withGlobalTauri": true
|
|
},
|
|
"package": {
|
|
"productName": "LiveSplit One",
|
|
"version": "0.1.0"
|
|
},
|
|
"tauri": {
|
|
"allowlist": {
|
|
"all": false,
|
|
"http": {
|
|
"all": true,
|
|
"request": true,
|
|
"scope": ["https://www.speedrun.com/static/*"]
|
|
}
|
|
},
|
|
"windows": [
|
|
{
|
|
"title": "LiveSplit One",
|
|
"width": 850,
|
|
"height": 750
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"identifier": "org.livesplit.one",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/[email protected]",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|
|
}
|