-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtauri.conf.json
More file actions
96 lines (96 loc) Β· 2.94 KB
/
Copy pathtauri.conf.json
File metadata and controls
96 lines (96 loc) Β· 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "WaveFlow",
"version": "1.7.0",
"identifier": "app.waveflow",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../../../dist"
},
"app": {
"windows": [
{
"label": "main",
"title": "WaveFlow",
"width": 1440,
"height": 900,
"minWidth": 1000,
"minHeight": 650,
"center": true,
"visible": false
},
{
"label": "splashscreen",
"url": "splash.html",
"title": "WaveFlow",
"width": 360,
"height": 240,
"center": true,
"resizable": false,
"decorations": false,
"alwaysOnTop": true,
"skipTaskbar": true,
"focus": false,
"shadow": false,
"backgroundColor": "#121212"
}
],
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": [
"$APPDATA/waveflow/profiles/**",
"$APPLOCALDATA/waveflow/profiles/**",
"$APPDATA/waveflow/metadata_artwork/**",
"$APPLOCALDATA/waveflow/metadata_artwork/**",
"$APPDATA/waveflow/motion_cache/**",
"$APPLOCALDATA/waveflow/motion_cache/**",
"$APPDATA/waveflow/canvas_cache/**",
"$APPLOCALDATA/waveflow/canvas_cache/**"
]
}
}
},
"bundle": {
"active": true,
"targets": "all",
"createUpdaterArtifacts": true,
"publisher": "InstaZDLL",
"copyright": "Copyright Β© 2026 InstaZDLL. Licensed under GPL-3.0-only.",
"category": "Music",
"shortDescription": "Local-first music player with a Spotify-inspired UI.",
"longDescription": "WaveFlow is a local music player desktop app built with Tauri 2 and React 19. It scans your local audio folders, organizes tracks by album/artist/genre, and plays them with a real-time audio engine β no streaming, no cloud, your music stays on your machine.",
"homepage": "https://waveflow.app",
"licenseFile": "../../../LICENSE",
"resources": {
"../../resources/plugins/web-radio/plugin.wasm": "plugins/web-radio/plugin.wasm",
"../../resources/plugins/web-radio/manifest.toml": "plugins/web-radio/manifest.toml"
},
"icon": [
"icons/32x32.png",
"icons/64x64.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"macOS": {
"entitlements": "waveflow.entitlements"
}
},
"plugins": {
"updater": {
"active": true,
"endpoints": [
"https://github.com/InstaZDLL/WaveFlow/releases/latest/download/latest.json"
],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDY3QkUyODExMTcwQjVFM0MKUldROFhnc1hFU2krWitudmcvdHNIamo5RHVjV0tzaWJsS2ZVa3g5QUdKa3B0NXJ1dzF1QU1oNGgK",
"windows": {
"installMode": "passive"
}
}
}
}