Build Resonant v0.1 as a polished single-user Tauri/OpenSubsonic music player with demo playback, responsive library browsing, search, favorites, queue, server setup, tests, and docs

Hop-State: A_06FNDQKBYQT60ENR92VY6KG
Hop-Proposal: R_06FNDQJ64YSD232PJ7AT47R
Hop-Task: T_06FNDK6YRGJ4TEATJEC6EQR
Hop-Attempt: AT_06FNDK6YRMRZ1VHNB189B48
This commit is contained in:
2026-07-12 08:07:25 -07:00
committed by Hop
parent 45656d74f1
commit 38b140905f
33 changed files with 13341 additions and 0 deletions
+4383
View File
File diff suppressed because it is too large Load Diff
+18
View File
@@ -0,0 +1,18 @@
[package]
name = "resonant"
version = "0.1.0"
description = "Your library, wherever you listen."
authors = ["GnosysLabs"]
edition = "2021"
[lib]
name = "resonant_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri = { version = "2", features = [] }
+3
View File
@@ -0,0 +1,3 @@
fn main() {
tauri_build::build()
}
+7
View File
@@ -0,0 +1,7 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Default desktop permissions for Resonant",
"windows": ["main"],
"permissions": ["core:default"]
}
File diff suppressed because one or more lines are too long
+1
View File
@@ -0,0 +1 @@
{"default":{"identifier":"default","description":"Default desktop permissions for Resonant","local":true,"windows":["main"],"permissions":["core:default"]}}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

+10
View File
@@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512">
<rect width="512" height="512" rx="116" fill="#d99265"/>
<g fill="none" stroke="#2a1d19" stroke-linecap="round" stroke-width="30">
<path d="M130 272v-32"/>
<path d="M193 327V185"/>
<path d="M256 369V143"/>
<path d="M319 327V185"/>
<path d="M382 272v-32"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 382 B

+6
View File
@@ -0,0 +1,6 @@
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
tauri::Builder::default()
.run(tauri::generate_context!())
.expect("error while running Resonant");
}
+3
View File
@@ -0,0 +1,3 @@
fn main() {
resonant_lib::run();
}
+32
View File
@@ -0,0 +1,32 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Resonant",
"version": "0.1.0",
"identifier": "xyz.gnosyslabs.resonant",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Resonant",
"width": 1280,
"height": 820,
"minWidth": 760,
"minHeight": 600,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": "default-src 'self'; connect-src 'self' http: https:; img-src 'self' asset: http: https: data: blob:; media-src 'self' http: https: blob:; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com data:"
}
},
"bundle": {
"active": false,
"targets": "all"
}
}