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.

Revert tauri-plugin-localhost changes

+2 -2
+1 -1
src-tauri/Cargo.toml
··· 18 18 serde_json = "^1.0" 19 19 serde = { version = "^1.0", features = ["derive"] } 20 20 tauri = { version = "^1.0.5", features = ["dialog-all", "fs-all", "http-all", "path-all", "shell-open", "shell-open-api", "window-all"] } 21 - tauri-plugin-localhost = { git = "https://github.com/icidasset/tauri-plugin-localhost", branch = "127.0.0.1" } 21 + tauri-plugin-localhost = { version = "^0.1.0" } 22 22 tauri-plugin-window-state = { version = "^0.1.0" } 23 23 window-shadows = { version = "^0.2.0" } 24 24 window-vibrancy = { version = "^0.1.3" }
+1 -1
src-tauri/src/main.rs
··· 10 10 let port = 44999; 11 11 let mut context = tauri::generate_context!("tauri.conf.json"); 12 12 13 - let url = format!("http://127.0.0.1:{}", port).parse().unwrap(); 13 + let url = format!("http://localhost:{}", port).parse().unwrap(); 14 14 let window_url = WindowUrl::External(url); 15 15 16 16 context.config_mut().build.dist_dir = AppUrl::Url(window_url.clone());