From e161628aeac19a1e32ad10073d992a13312fee22 Mon Sep 17 00:00:00 2001 From: Send_Nukez Date: Fri, 8 Oct 2021 06:38:29 +0200 Subject: [PATCH] fix update button oopsie and set version correctly --- dribbblish-dynamic.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dribbblish-dynamic.js b/dribbblish-dynamic.js index 2571c34..78d86f9 100644 --- a/dribbblish-dynamic.js +++ b/dribbblish-dynamic.js @@ -1,4 +1,4 @@ -let current = '2.3' +let current = '2.4.1' /* css is injected so this works with untouched user.css from Dribbblish */ /* dark theme */ @@ -328,7 +328,7 @@ hookCoverChange(false); upd.innerText = `Theme UPD v${data.tag_name} avail.` upd.classList.add("ellipsis-one-line", "main-type-finale") upd.setAttribute("title", `Changes: ${data.name}`) - upd.style.setProperty("color", "var(--spice-main)"); + upd.style.setProperty("color", "var(--spice-button-active)"); document.querySelector(".main-userWidget-box").append(upd) document.querySelector(".main-userWidget-box").classList.add("update-avail") new Spicetify.Menu.Item("Update Dribbblish", false, () => window.open("https://github.com/JulienMaille/dribbblish-dynamic-theme#install", "_blank")).register();