-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: connect to remote media player #121
Conversation
Codecov ReportBase: 54.48% // Head: 48.90% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #121 +/- ##
==========================================
- Coverage 54.48% 48.90% -5.58%
==========================================
Files 90 103 +13
Lines 10706 12243 +1537
==========================================
+ Hits 5833 5988 +155
- Misses 4873 6255 +1382
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
74dc961
to
4f79b3a
Compare
use std::thread; | ||
|
||
use music_player_settings::{read_settings, Settings}; | ||
|
||
pub const SERVICE_NAME: &'static str = "_music-player._tcp.local."; | ||
pub const XBMC_SERVICE_NAME: &'static str = "_xbmc-jsonrpc-h._tcp.local."; |
Check warning
Code scanning / clippy
constants have by default a `'static` lifetime
0d86a85
to
a1a3932
Compare
1066c6d
to
e99ea16
Compare
bae76fb
to
c9bc280
Compare
feat(graphql): add app field
chore(webui): fix broken storybook
…ead of `Local` object
[playback] refactor track loader refacto: use repo crates
chore: fix broken tests chore: fix broken tests chore: fix broken tests
chore(bazel): fix bazel issue chore(bazel): fix bazel issue
fix(server): re-generate proto
a0d343b
to
12903fa
Compare
fs::create_dir_all(&albums).unwrap(); | ||
fs::create_dir_all(&artists).unwrap(); | ||
fs::create_dir_all(&playlists).unwrap(); | ||
fs::create_dir_all(&tracks).unwrap(); | ||
fs::create_dir_all(&covers).unwrap(); | ||
fs::create_dir_all(&cache).unwrap(); |
Check warning
Code scanning / clippy
the borrowed expression implements the required traits
No description provided.