From e309370862e904a12e8f2a30193eb92eb62bbf7d Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Mon, 27 Apr 2026 16:03:56 -0700 Subject: [PATCH] Source picker: rename Soulseek icon to "Basic Search" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit That source icon hits /api/search — raw slskd file results, the same flow the UI historically labelled "Basic Search" before the source-icon row replaced the dropdown. Reverting the label avoids implying it returns Soulseek-flavoured metadata results in the same shape as the other source icons. Backend route + endpoint name unchanged; this is display-only. --- webui/static/shared-helpers.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webui/static/shared-helpers.js b/webui/static/shared-helpers.js index 348944ea..26b1c060 100644 --- a/webui/static/shared-helpers.js +++ b/webui/static/shared-helpers.js @@ -72,8 +72,9 @@ const SOURCE_LABELS = { tabClass: 'enh-tab-youtube', badgeClass: 'enh-badge-youtube', }, soulseek: { - // No canonical brand logo available — stick with a basic music glyph. - text: 'Soulseek', icon: '🎼', + // Routes through /api/search (raw slskd file results) — historically + // called "Basic Search" in the UI before the source picker landed. + text: 'Basic Search', icon: '🎼', tabClass: 'enh-tab-soulseek', badgeClass: 'enh-badge-soulseek', }, };