From 986a4b22b25dd7ffdcc37d34f194994dad58697b Mon Sep 17 00:00:00 2001 From: Davoleo Date: Thu, 30 Sep 2021 14:30:49 +0200 Subject: [PATCH] =?UTF-8?q?Change=20album=20/=20year=20divider=20from=20?= =?UTF-8?q?=E2=80=94=20to=20=20=E2=80=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - The long dash can create confusion on japanese albums that have a similar character in them (used in japanese to express long vocals) https://open.spotify.com/album/129TFxq98ubI8cZfetjs3i?si=261e69f3fca542f8 - This also adds consistency as the same dot separator is also used in Friend Activity to separate song name from artist --- dribbblish-dynamic.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dribbblish-dynamic.js b/dribbblish-dynamic.js index cc941b6..59cb087 100644 --- a/dribbblish-dynamic.js +++ b/dribbblish-dynamic.js @@ -231,7 +231,7 @@ async function songchange() { album_date = album_date.toLocaleString('default', album_date>recent_date ? { year: 'numeric', month: 'short' } : { year: 'numeric' }) album_link = ""+Spicetify.Player.data.track.metadata.album_title+"" - nearArtistSpanText = album_link + " — " + album_date + nearArtistSpanText = album_link + " • " + album_date } else if (Spicetify.Player.data.track.uri.includes('spotify:episode')) { // podcast bgImage = bgImage.replace('spotify:image:', 'https://i.scdn.co/image/') @@ -342,4 +342,4 @@ document.styleSheets[0].addRule('.Root__top-container::before', opacity: calc(0.07 + 0.03 * var(--is_light, 0)); z-index: +3;`) -document.documentElement.style.setProperty('--warning_message', ' '); \ No newline at end of file +document.documentElement.style.setProperty('--warning_message', ' ');