From aa13940aa7734c28ba96e51d17d6c7c52cec00ab Mon Sep 17 00:00:00 2001 From: Uyanide Date: Fri, 3 Apr 2026 22:13:08 +0200 Subject: [PATCH] fix: adjust fetcher groups, sequentially fetch from sp and lrclib --- lrx_cli/fetchers/__init__.py | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lrx_cli/fetchers/__init__.py b/lrx_cli/fetchers/__init__.py index 53f0c29..bd99afa 100644 --- a/lrx_cli/fetchers/__init__.py +++ b/lrx_cli/fetchers/__init__.py @@ -33,7 +33,8 @@ FetcherMethodType = Literal[ _FETCHER_GROUPS: list[list[FetcherMethodType]] = [ ["local"], ["cache-search"], - ["spotify", "lrclib"], + ["spotify"], + ["lrclib"], ["lrclib-search", "netease", "qqmusic"], ] diff --git a/pyproject.toml b/pyproject.toml index 296b6ff..f781708 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "lrx-cli" -version = "0.4.0" +version = "0.4.1" description = "Fetch line-synced lyrics for your music player." readme = "README.md" requires-python = ">=3.13"