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

Configure Feed

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

Tauri tweaks

+4 -4
+4 -4
src-tauri/src/main.rs
··· 41 41 * Create a window that loads our localhost server. 42 42 */ 43 43 fn create_window(app: &mut App, port: u16) -> tauri::Result<Window> { 44 - return app.create_window( 44 + app.create_window( 45 45 "main", 46 46 WindowUrl::External(format!("http://localhost:{}", port).parse().unwrap()), 47 47 |window_builder, webview_attributes| { ··· 54 54 55 55 (w, webview_attributes) 56 56 }, 57 - ); 57 + ) 58 58 } 59 59 60 60 /** ··· 83 83 .add_native_item(MenuItem::Separator) 84 84 .add_native_item(MenuItem::ShowAll); 85 85 86 - return Menu::new() 86 + Menu::new() 87 87 .add_submenu(Submenu::new("Diffuse", app_menu)) 88 88 .add_submenu(Submenu::new("File", file_menu)) 89 89 .add_submenu(Submenu::new("Edit", edit_menu)) 90 - .add_submenu(Submenu::new("Window", window_menu)); 90 + .add_submenu(Submenu::new("Window", window_menu)) 91 91 }