version bump to 1.2.74.471

- 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
This commit is contained in:
amd64fox
2025-10-05 05:53:08 +03:00
parent a775edfcdc
commit 10d2e76702
3 changed files with 241 additions and 50 deletions

View File

@@ -1,31 +1,28 @@
@echo off
SETLOCAL ENABLEDELAYEDEXPANSION
if exist "%Appdata%\Spotify\dpapi.dll" (
del /s /q "%Appdata%\Spotify\dpapi.dll" > NUL 2>&1
)
set "SPOTIFY_PATH=%Appdata%\Spotify"
if exist "%Appdata%\Spotify\Spotify.bak" (
del /s /q "%Appdata%\Spotify.exe" > NUL 2>&1
move "%Appdata%\Spotify\Spotify.bak" "%Appdata%\Spotify\Spotify.exe" > NUL 2>&1
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 "%Appdata%\Spotify\config.ini" (
del /s /q "%Appdata%\Spotify\config.ini" > NUL 2>&1
)
if exist "%Appdata%\Spotify\Apps\xpui.bak" (
del /s /q "%Appdata%\Spotify\Apps\xpui.spa" > NUL 2>&1
move "%Appdata%\Spotify\Apps\xpui.bak" "%Appdata%\Spotify\Apps\xpui.spa" > NUL 2>&1
)
if exist "%Appdata%\Spotify\blockthespot_log.txt" (
del /s /q "%Appdata%\Spotify\blockthespot_log.txt" > 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
@@ -33,4 +30,4 @@ if exist "%temp%\SpotX_Temp*" (
)
echo Patch successfully removed
pause
pause