Some updated links, move to current/next branches.

This commit is contained in:
Kyle Simpson
2020-11-13 17:55:36 +00:00
parent a778d24941
commit 09da85bfc3
3 changed files with 8 additions and 9 deletions

View File

@@ -28,4 +28,4 @@ Songbird's logo is based upon the copyright-free image ["Black-Capped Chickadee"
[twilight]: https://github.com/twilight-rs/twilight [twilight]: https://github.com/twilight-rs/twilight
["Black-Capped Chickadee"]: https://www.oldbookillustrations.com/illustrations/black-capped-chickadee/ ["Black-Capped Chickadee"]: https://www.oldbookillustrations.com/illustrations/black-capped-chickadee/
[lavalink]: https://github.com/Frederikam/Lavalink [lavalink]: https://github.com/Frederikam/Lavalink
[this crate's examples directory]: https://github.com/serenity-rs/songbird/tree/master/examples [this crate's examples directory]: https://github.com/serenity-rs/songbird/tree/current/examples

View File

@@ -1,6 +1,6 @@
#![doc( #![doc(
html_logo_url = "https://raw.githubusercontent.com/FelixMcFelix/serenity/voice-rework/songbird/songbird.png", html_logo_url = "https://raw.githubusercontent.com/serenity-rs/songbird/master/songbird.png",
html_favicon_url = "https://raw.githubusercontent.com/FelixMcFelix/serenity/voice-rework/songbird/songbird-ico.png" html_favicon_url = "https://raw.githubusercontent.com/serenity-rs/songbird/master/songbird-ico.png"
)] )]
#![deny(missing_docs)] #![deny(missing_docs)]
//! ![project logo][logo] //! ![project logo][logo]
@@ -21,18 +21,17 @@
//! Songbird's gateway functionality requires you to specify the `GUILD_VOICE_STATES` intent. //! Songbird's gateway functionality requires you to specify the `GUILD_VOICE_STATES` intent.
//! //!
//! ## Examples //! ## Examples
//! Full examples showing various types of functionality and integrations can be found as part of [serenity's examples], //! Full examples showing various types of functionality and integrations can be found
//! and in [this crate's examples directory]. //! in [this crate's examples directory].
//! //!
//! ## Attribution //! ## Attribution
//! //!
//! Songbird's logo is based upon the copyright-free image ["Black-Capped Chickadee"] by George Gorgas White. //! Songbird's logo is based upon the copyright-free image ["Black-Capped Chickadee"] by George Gorgas White.
//! //!
//! [logo]: https://raw.githubusercontent.com/FelixMcFelix/serenity/voice-rework/songbird/songbird.png //! [logo]: https://github.com/serenity-rs/songbird/raw/master/songbird.png
//! [serenity]: https://github.com/serenity-rs/serenity //! [serenity]: https://github.com/serenity-rs/serenity
//! [twilight]: https://github.com/twilight-rs/twilight //! [twilight]: https://github.com/twilight-rs/twilight
//! [serenity's examples]: https://github.com/serenity-rs/serenity/tree/current/examples //! [this crate's examples directory]: https://github.com/serenity-rs/songbird/tree/current/examples
//! [this crate's examples directory]: https://github.com/serenity-rs/serenity/tree/current/songbird/examples
//! ["Black-Capped Chickadee"]: https://www.oldbookillustrations.com/illustrations/black-capped-chickadee/ //! ["Black-Capped Chickadee"]: https://www.oldbookillustrations.com/illustrations/black-capped-chickadee/
//! [`ConnectionInfo`]: struct.ConnectionInfo.html //! [`ConnectionInfo`]: struct.ConnectionInfo.html
//! [lavalink]: https://github.com/Frederikam/Lavalink //! [lavalink]: https://github.com/Frederikam/Lavalink

View File

@@ -16,7 +16,7 @@ use tracing::{info, warn};
/// This makes use of [`TrackEvent`]s to determine when the current /// This makes use of [`TrackEvent`]s to determine when the current
/// song or audio file has finished before playing the next entry. /// song or audio file has finished before playing the next entry.
/// ///
/// `examples/e16_voice_events` demonstrates how a user might manage, /// `examples/serenity/voice_events_queue` demonstrates how a user might manage,
/// track and use this to run a song queue in many guilds in parallel. /// track and use this to run a song queue in many guilds in parallel.
/// This code is trivial to extend if extra functionality is needed. /// This code is trivial to extend if extra functionality is needed.
/// ///