| 1 |
{ |
| 2 |
"$schema": "https://schema.tauri.app/config/2", |
| 3 |
"productName": "GoingsOn", |
| 4 |
"version": "0.4.2", |
| 5 |
"identifier": "com.goingson.app", |
| 6 |
"build": { |
| 7 |
"beforeBuildCommand": "node src-tauri/frontend/build-css.js", |
| 8 |
"beforeDevCommand": "node src-tauri/frontend/build-css.js", |
| 9 |
"frontendDist": "../src-tauri/frontend" |
| 10 |
}, |
| 11 |
"app": { |
| 12 |
"withGlobalTauri": true, |
| 13 |
"windows": [ |
| 14 |
{ |
| 15 |
"label": "main", |
| 16 |
"title": "GoingsOn", |
| 17 |
"width": 1200, |
| 18 |
"height": 800, |
| 19 |
"minWidth": 320, |
| 20 |
"minHeight": 600, |
| 21 |
"resizable": true, |
| 22 |
"fullscreen": false |
| 23 |
} |
| 24 |
], |
| 25 |
"security": { |
| 26 |
"csp": null |
| 27 |
} |
| 28 |
}, |
| 29 |
"bundle": { |
| 30 |
"active": true, |
| 31 |
"createUpdaterArtifacts": true, |
| 32 |
"targets": "all", |
| 33 |
"icon": [ |
| 34 |
"icons/32x32.png", |
| 35 |
"icons/128x128.png", |
| 36 |
"icons/128x128@2x.png", |
| 37 |
"icons/256x256.png", |
| 38 |
"icons/icon.icns", |
| 39 |
"icons/icon.ico" |
| 40 |
], |
| 41 |
"resources": [ |
| 42 |
"../../../MNW/shared/themes/*.toml" |
| 43 |
], |
| 44 |
"iOS": { |
| 45 |
"developmentTeam": "93C54W92UP" |
| 46 |
}, |
| 47 |
"macOS": { |
| 48 |
"minimumSystemVersion": "11.0", |
| 49 |
"hardenedRuntime": true |
| 50 |
} |
| 51 |
}, |
| 52 |
"plugins": { |
| 53 |
"updater": { |
| 54 |
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEIxMkJENjg1MjJFRDUzQ0UKUldUT1UrMGloZFlyc2VTa3NaYzBma0ZtbWtEcEkyS2FlL0JCbXk2Ny9KOFdqWXk4ZGE0Z0JpQWcK", |
| 55 |
"endpoints": [ |
| 56 |
"https://makenot.work/api/v1/sync/ota/goingson/{{target}}/{{arch}}/{{current_version}}" |
| 57 |
] |
| 58 |
} |
| 59 |
} |
| 60 |
} |
| 61 |
|