Enable wayland clipboard support by default on supported platforms (#869)
* Added possibility to Follow/Unfollow artists via the context menu * Formatted code properly. * Wayland support is now automatically built on supported platforms. * Revert "Formatted code properly." This reverts commit ec057f9716574d0a7912ba8b5308c73bb0342f84. * Revert "Added possibility to Follow/Unfollow artists via the context menu" This reverts commit 9ac20514a640b9150fcfa38630d338ad6f097689. * Removed need for separate wayland_clipboard feature. Possibly fixed windows build. * Added more cfg conditions to sharing.rs. This possibly fixes the windows build. * Changed to only build wayland clipboard feature on linux by default.
This commit is contained in:
@@ -45,6 +45,7 @@ tokio-stream = "0.1.9"
|
||||
toml = "0.5"
|
||||
unicode-width = "0.1.9"
|
||||
url = "2.2"
|
||||
[target.'cfg(target_os = "linux")'.dependencies]
|
||||
wl-clipboard-rs = {version = "0.6", optional = true}
|
||||
|
||||
[dependencies.rspotify]
|
||||
@@ -73,10 +74,9 @@ pancurses_backend = ["cursive/pancurses-backend", "pancurses/win32"]
|
||||
portaudio_backend = ["librespot-playback/portaudio-backend"]
|
||||
pulseaudio_backend = ["librespot-playback/pulseaudio-backend"]
|
||||
rodio_backend = ["librespot-playback/rodio-backend"]
|
||||
share_clipboard = ["clipboard"] # Share a link to the system clipboard
|
||||
share_selection = ["clipboard", "wl-clipboard-rs"] # Use the primary selection for sharing - linux only
|
||||
share_clipboard = ["clipboard", "wl-clipboard-rs"] # Share a link to the system clipboard
|
||||
share_selection = ["clipboard", "wl-clipboard-rs"] # Use the primary selection for sharing - linux and bsd only
|
||||
termion_backend = ["cursive/termion-backend"]
|
||||
wayland_clipboard = ["wl-clipboard-rs"] # Support wayland clipboard - linux only
|
||||
|
||||
[package.metadata.deb]
|
||||
assets = [
|
||||
|
||||
Reference in New Issue
Block a user