-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug fixes: - Always include filter when sending requests to piped by @xnetcat - Check status code when getting response from piped by @xnetcat - Use piped.video instead of main piped instance by @j3bx in #2172 - Fixed `RuntimeError: Directory 'C:\Users\myuser\.spotdl\web-ui\dist' does not exist` by @R0GUE-A5H in #2173 - Make sync command aware of file name changes by @xnetcat Documentation: - Chore: update downloader.py by @Elto Co-authored-by: kuba <[email protected]> Co-authored-by: Alan <[email protected]> Co-authored-by: Ikko Eltociear Ashimine <[email protected]> Co-authored-by: Ash <[email protected]>
- Loading branch information
Showing
9 changed files
with
636 additions
and
520 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "spotdl" | ||
version = "4.2.7" | ||
version = "4.2.8" | ||
description = "Download your Spotify playlists and songs along with album art and metadata" | ||
license = "MIT" | ||
authors = ["spotDL Team <[email protected]>"] | ||
|
@@ -40,13 +40,13 @@ ytmusicapi = [ | |
pytube = "^15.0.0" | ||
yt-dlp = "^2024.8.6" | ||
mutagen = "^1.47.0" | ||
rich = "^13.7.1" | ||
rich = "^13.8.0" | ||
beautifulsoup4 = "^4.12.3" | ||
requests = "^2.32.3" | ||
rapidfuzz = "^3.9.6" | ||
rapidfuzz = "^3.9.7" | ||
python-slugify = {extras = ["unidecode"], version = "^8.0.4"} | ||
uvicorn = "^0.23.2" | ||
pydantic = "^2.8.2" | ||
pydantic = "^2.9.0" | ||
fastapi = "^0.103.0" | ||
platformdirs = "^4.2.2" | ||
pykakasi = "^2.3.0" | ||
|
@@ -61,22 +61,22 @@ pytest-cov = "^5.0.0" | |
pytest-subprocess = "^1.5.2" | ||
pytest-asyncio = "^0.21.1" | ||
mypy = "^1.11.2" | ||
pylint = "^3.2.6" | ||
pylint = "^3.2.7" | ||
black = "^24.8.0" | ||
mdformat-gfm = "^0.3.5" | ||
types-orjson = "^3.6.2" | ||
types-python-slugify = "^8.0.2.20240310" | ||
types-requests = "==2.31.0.6" | ||
types-setuptools = "^73.0.0.20240822" | ||
types-setuptools = "^74.1.0.20240906" | ||
types-toml = "^0.10.8.7" | ||
types-ujson = "^5.10.0.20240515" | ||
pyinstaller = "^6.10.0" | ||
mkdocs = "^1.6.0" | ||
mkdocs = "^1.6.1" | ||
isort = "^5.13.2" | ||
dill = "^0.3.7" | ||
mkdocs-material = "^9.5.33" | ||
mkdocstrings = "^0.25.1" | ||
mkdocstrings-python = "^1.10.8" | ||
mkdocs-material = "^9.5.34" | ||
mkdocstrings = "^0.26.0" | ||
mkdocstrings-python = "^1.11.1" | ||
pymdown-extensions = "^10.9" | ||
mkdocs-gen-files = "^0.5.0" | ||
mkdocs-literate-nav = "^0.6.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Version module for spotdl. | ||
""" | ||
|
||
__version__ = "4.2.7" | ||
__version__ = "4.2.8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters