From 3b394a89f4bcc2835db1e954f2ea678152aa54c8 Mon Sep 17 00:00:00 2001 From: photovoltex Date: Sat, 19 Oct 2024 19:15:29 +0200 Subject: [PATCH] core: revert version numbers --- core/src/version.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/version.rs b/core/src/version.rs index dd14b7b9c..d3870473d 100644 --- a/core/src/version.rs +++ b/core/src/version.rs @@ -17,16 +17,16 @@ pub const SEMVER: &str = env!("CARGO_PKG_VERSION"); pub const BUILD_ID: &str = env!("LIBRESPOT_BUILD_ID"); /// The protocol version of the Spotify desktop client. -pub const SPOTIFY_VERSION: u64 = 124200290; +pub const SPOTIFY_VERSION: u64 = 117300517; /// The semantic version of the Spotify desktop client. pub const SPOTIFY_SEMANTIC_VERSION: &str = "1.2.31.1205.g4d59ad7c"; /// The protocol version of the Spotify mobile app. -pub const SPOTIFY_MOBILE_VERSION: &str = "8.9.82.620"; +pub const SPOTIFY_MOBILE_VERSION: &str = "8.6.84"; /// The user agent to fall back to, if one could not be determined dynamically. -pub const FALLBACK_USER_AGENT: &str = "Spotify/124200290 Linux/0 (librespot)"; +pub const FALLBACK_USER_AGENT: &str = "Spotify/117300517 Linux/0 (librespot)"; pub fn spotify_version() -> String { match std::env::consts::OS {