mirror of
https://github.com/SpotX-Official/SpotX.git
synced 2026-04-11 17:37:21 +10:00
- enabled library import on settings page - enabled shuffle settings section in advanced settings - enabled the search results as a list of top results - enabled multi selection in Your Library - enabled profile visibility controls in the settings & profile page - enabled launcher auto start toggle in the settings - enabled option to exclude track from taste profile via context menu - optimizing binary file backups - enabled users to react and reply to comments - optimizing binary file backups - new css classes have been added to hide track download elements - uninstall.bat changed
33 lines
1010 B
Batchfile
33 lines
1010 B
Batchfile
@echo off
|
|
SETLOCAL ENABLEDELAYEDEXPANSION
|
|
|
|
set "SPOTIFY_PATH=%Appdata%\Spotify"
|
|
|
|
if exist "%SPOTIFY_PATH%\chrome_elf.dll.bak" (
|
|
del /s /q "%SPOTIFY_PATH%\chrome_elf.dll" > NUL 2>&1
|
|
move "%SPOTIFY_PATH%\chrome_elf.dll.bak" "%SPOTIFY_PATH%\chrome_elf.dll" > NUL 2>&1
|
|
)
|
|
|
|
if exist "%SPOTIFY_PATH%\Spotify.dll.bak" (
|
|
del /s /q "%SPOTIFY_PATH%\Spotify.dll" > NUL 2>&1
|
|
move "%SPOTIFY_PATH%\Spotify.dll.bak" "%SPOTIFY_PATH%\Spotify.dll" > NUL 2>&1
|
|
)
|
|
|
|
if exist "%SPOTIFY_PATH%\Spotify.bak" (
|
|
del /s /q "%SPOTIFY_PATH%\Spotify.exe" > NUL 2>&1
|
|
move "%SPOTIFY_PATH%\Spotify.bak" "%SPOTIFY_PATH%\Spotify.exe" > NUL 2>&1
|
|
)
|
|
|
|
if exist "%SPOTIFY_PATH%\Apps\xpui.bak" (
|
|
del /s /q "%SPOTIFY_PATH%\Apps\xpui.spa" > NUL 2>&1
|
|
move "%SPOTIFY_PATH%\Apps\xpui.bak" "%SPOTIFY_PATH%\Apps\xpui.spa" > NUL 2>&1
|
|
)
|
|
|
|
if exist "%temp%\SpotX_Temp*" (
|
|
for /d %%i in ("%temp%\SpotX_Temp*") do (
|
|
rd /s/q "%%i" > NUL 2>&1
|
|
)
|
|
)
|
|
|
|
echo Patch successfully removed
|
|
pause |