Skip to main content

max / balanced_breakfast

1.4 KB · 54 lines History Blame Raw
1 {
2 "$schema": "https://schema.tauri.app/config/2",
3 "productName": "BalancedBreakfast",
4 "version": "0.3.3",
5 "identifier": "com.balancedbreakfast.app",
6 "build": {
7 "frontendDist": "../src-tauri/frontend"
8 },
9 "app": {
10 "withGlobalTauri": true,
11 "windows": [
12 {
13 "label": "main",
14 "title": "Balanced Breakfast",
15 "width": 1200,
16 "height": 800,
17 "minWidth": 320,
18 "minHeight": 600,
19 "resizable": true,
20 "fullscreen": false
21 }
22 ],
23 "security": {
24 "csp": "default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' https: data:; connect-src ipc: http://ipc.localhost http://127.0.0.1"
25 }
26 },
27 "bundle": {
28 "active": true,
29 "createUpdaterArtifacts": true,
30 "targets": "all",
31 "resources": [
32 "../plugins/*.rhai",
33 "../../../MNW/shared/themes/*.toml"
34 ],
35 "icon": [
36 "icons/32x32.png",
37 "icons/128x128.png",
38 "icons/icon.icns",
39 "icons/icon.ico"
40 ],
41 "iOS": {
42 "developmentTeam": "93C54W92UP"
43 }
44 },
45 "plugins": {
46 "updater": {
47 "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDFERkY1NDNFNTc4MDg2RkYKUldUL2hvQlhQbFQvSFM5N29oRFJpR2kzNFp2enJqZzhSamdOME5IUEhOV3JsOW1TWmZubE1ZRUcK",
48 "endpoints": [
49 "https://makenot.work/api/v1/sync/ota/balanced-breakfast/{{target}}/{{arch}}/{{current_version}}"
50 ]
51 }
52 }
53 }
54