spicetify-apps icon indicating copy to clipboard operation
spicetify-apps copied to clipboard

[Stats] the play button in Tracks not working

Open hyunicode opened this issue 1 year ago • 3 comments

clickable but unresponsive, and no errors in devtools-console image

version: latest stats Spotify for macOS (Apple Silicon) 1.2.44.405.g81fd6352 Spicetify v2.37.1 Theme: Hazy / Base Extensions: fullAppDisplay.js, beautiful-lyrics.mjs, playNextWrapper.js, adblock.js, hazy.js Custom apps: marketplace, stats, library, lyrics-plus, visualizer Runtime: Chrome Build System: Bazel

hyunicode avatar Aug 24 '24 07:08 hyunicode

I have the same issue! image Same for the settings wheel

I applied the temporary CSS to fix the topbar layout issues here But both those buttons weren't working before as well

BertV1 avatar Sep 09 '24 18:09 BertV1

I have the same issue! image Same for the settings wheel

I applied the temporary CSS to fix the topbar layout issues here But both those buttons weren't working before as well

@BertV1 everything on latest version(spotify, spicetify and stats), it works well

image

hyunicode avatar Sep 10 '24 05:09 hyunicode

@hyunicode I believe i'm on the latest version for all three: image I pulled stats yesterday! The only thing that doesn't work is

  • the settings wheel (any view)
  • unable to play the track directly (Top Tracks view)

BertV1 avatar Sep 10 '24 11:09 BertV1

just fixed it, made a pr, hopefully get accepted soon https://github.com/harbassan/spicetify-apps/pull/156 turns out all the code in the function to play the track was just commented out so that it did nothing

MrBiscuit921 avatar Oct 27 '24 04:10 MrBiscuit921

@MrBiscuit921

Thanks!

To make use of it, can you please tell me the steps for building the project?

CanYouJustWorkPlease avatar Nov 25 '24 18:11 CanYouJustWorkPlease

To build the project you must fork my repository then clone it to your machine then you must open the folder with your preferred code editor, then open up the terminal and then run cd stats that will put your terminal in the correct folder then run npm i that will install all the required dependencies then you can run npm run build and it will build for you and automatically put the files in the correct directory

then you will most likely need to run

spicetify config custom_apps stats
spicetify apply

lmk if you have any issues

MrBiscuit921 avatar Nov 25 '24 21:11 MrBiscuit921

Thanks! It worked! :)

Before I came across your fix, I made my own, where I added the Play button to the context menu. Maybe you'll find it useful sometime:

https://github.com/harbassan/spicetify-apps/issues/164#issuecomment-2498376479

CanYouJustWorkPlease avatar Nov 26 '24 09:11 CanYouJustWorkPlease

To build the project you must fork my repository then clone it to your machine then you must open the folder with your preferred code editor, then open up the terminal and then run cd stats that will put your terminal in the correct folder then run npm i that will install all the required dependencies then you can run npm run build and it will build for you and automatically put the files in the correct directory

then you will most likely need to run

spicetify config custom_apps stats
spicetify apply

lmk if you have any issues

followed your steps, didn't work... image image

eccovirtua avatar Nov 29 '24 16:11 eccovirtua

To build the project you must fork my repository then clone it to your machine then you must open the folder with your preferred code editor, then open up the terminal and then run cd stats that will put your terminal in the correct folder then run npm i that will install all the required dependencies then you can run npm run build and it will build for you and automatically put the files in the correct directory then you will most likely need to run

spicetify config custom_apps stats
spicetify apply

lmk if you have any issues

followed your steps, didn't work... image image

for that error run npx update-browserslist-db@latest however it should've worked as it does say build succeded image

MrBiscuit921 avatar Dec 01 '24 06:12 MrBiscuit921

@hyunicode

Could you please tell me how you managed to make all the app icons show up without any navigation arrows?

image

As for me it shows up like this:

image

CanYouJustWorkPlease avatar Dec 01 '24 17:12 CanYouJustWorkPlease

@hyunicode

Nevermind, I made this snippet:

.custom-navlinks-scrollable_container {
    max-width: none !important; /* Overrides the previous max-width value */
    -webkit-app-region: no-drag;
}

.search-searchCategory-carouselButton.GwVDOOhNp0LMO_SFOqVp,
.search-searchCategory-carouselButton.vzVooVFhdI7BIyM3fq0v {
    display: none !important; /* Hides specific buttons */
}

It's looking like this now:

image

Note to self:

Reorder app icons by going to config-xpui.ini and change the order of:

custom_apps           = stats|marketplace|better-local-files|visualizer|lyrics-plus|history-in-sidebar

then issue in CMD:

spicetify apply

CanYouJustWorkPlease avatar Dec 01 '24 18:12 CanYouJustWorkPlease