A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

at df22eb08f006cc55f4e454a905fb314660883ed9 80 lines 1.6 kB view raw
1{ 2 "package": { 3 "productName": "Diffuse" 4 }, 5 "build": { 6 "distDir": "../build", 7 "devPath": "../build", 8 "beforeDevCommand": "", 9 "beforeBuildCommand": "", 10 "withGlobalTauri": true 11 }, 12 "tauri": { 13 "bundle": { 14 "active": true, 15 "targets": "all", 16 "identifier": "com.icidasset.diffuse", 17 "icon": [ 18 "icons/icon.png", 19 "icons/icon.icns", 20 "icons/icon.ico" 21 ], 22 "resources": [], 23 "externalBin": [], 24 "category": "Music", 25 "deb": { 26 "depends": [] 27 }, 28 "macOS": { 29 "frameworks": [], 30 "minimumSystemVersion": "", 31 "exceptionDomain": "localhost", 32 "signingIdentity": null, 33 "entitlements": null, 34 "license": "LICENSE" 35 }, 36 "windows": { 37 "certificateThumbprint": null, 38 "digestAlgorithm": "sha256", 39 "timestampUrl": "" 40 } 41 }, 42 "updater": { 43 "active": false 44 }, 45 "allowlist": { 46 "clipboard": { 47 "all": true 48 }, 49 "dialog": { 50 "all": true 51 }, 52 "fs": { 53 "all": true 54 }, 55 "globalShortcut": { 56 "all": true 57 }, 58 "http": { 59 "all": true, 60 "request": true 61 }, 62 "path": { 63 "all": true 64 }, 65 "protocol": { 66 "all": true 67 }, 68 "shell": { 69 "open": ".*" 70 }, 71 "window": { 72 "all": true 73 } 74 }, 75 "windows": [], 76 "security": { 77 "csp": "default-src blob: data: filesystem: ws: wss: http: https: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'" 78 } 79 } 80}