From 7005874c4eae1f0dea4ae0128c6ac27f6dbb9d2b Mon Sep 17 00:00:00 2001 From: gitbobobo Date: Tue, 19 Mar 2024 17:17:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E9=9F=B3=E4=B9=90=E6=9C=8D?= =?UTF-8?q?=E5=8A=A1=E6=94=B6=E8=97=8F=E5=8A=9F=E8=83=BD=E6=AF=94=E8=BE=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/features.md | 4 +++- docs/services.md | 12 +++++++----- src/pages/index.js | 11 ++++++----- src/pages/index.module.css | 5 +++-- 4 files changed, 19 insertions(+), 13 deletions(-) diff --git a/docs/features.md b/docs/features.md index ce390d1..8aa2ffc 100644 --- a/docs/features.md +++ b/docs/features.md @@ -43,9 +43,11 @@ sidebar_position: 3 | 自定义内容 ||✅| | 备用线路 ||✅| | DLNA 播放5 ||✅| +| CarPlay6 ||✅| 1. **回放增益** 功能仅支持能查询到回放增益值的服务端,目前仅限 Navidrome。 2. 通过**长音频**偏好配置,您可在播放普通音乐时排除长音频,或单独保存长音频的播放进度,以备下次播放时回到原来的进度。 3. 通过**主题**切换,您可解锁纯色主题(可跟随系统明暗切换)与毛玻璃音乐控制栏,并可将推荐页作为启动时的第一屏。 4. 通过**歌词**配置,您可开启通知栏组件的歌词通知,并可在安卓端开启桌面歌词或系统级状态栏歌词,在 macOS 开启状态栏歌词。 -5. **DLNA 功能**目前仅可在手机端使用,且兼容性较差,请等待后续更新升级~ \ No newline at end of file +5. **DLNA 功能**目前仅可在手机端使用,且兼容性较差,请等待后续更新升级~ +6. 目前 CarPlay 需要手机上打开 APP 才能使用。 \ No newline at end of file diff --git a/docs/services.md b/docs/services.md index 5930599..519e845 100644 --- a/docs/services.md +++ b/docs/services.md @@ -20,13 +20,15 @@ sidebar_position: 2 | | Subsonic | Navidrome | Audio Station | Emby | Jellyfin | | ------- | ------- | ------- | --- | --- | --- | -| 内嵌歌词 | | ✅ | | ✅ | | -| 外置歌词 | | | ✅ | ✅ | | -| 在线歌词 | | | ✅ | ✅ | | +| 内嵌歌词 | - | ✅ | | ✅ | | +| 外置歌词 | - | | ✅ | ✅ | | +| 在线歌词 | - | | ✅ | ✅ | | | 歌手简介 | - | ✅ | ✅ | ✅ | ✅ | | 歌手头像 | - | *1 | *2 | ✅ | ✅ | | 多艺术家 | - | | - | ✅ | ✅ | | 回放增益标签 | - | ✅ | | | | +| 收藏功能 | ✅ | ✅ | *3 | ✅ | ✅ | -1. Navidrome 若要显示歌手头像,需要配置 Spotify API,或在歌手文件夹下放一张名为 `artist.*` 的图片。[Artwork location resolution](https://www.navidrome.org/docs/usage/artwork/#artists) -2. Audio Station 的歌手头像用的是音乐库中的专辑图片。 \ No newline at end of file +1. Navidrome 若要显示歌手头像,需要配置 Spotify API(国内环境即使配置了也很难有作用),或在歌手文件夹下放一张名为 `artist.*` 的图片。[Artwork location resolution](https://www.navidrome.org/docs/usage/artwork/#artists) +2. Audio Station 的歌手头像用的是音乐库中的专辑图片。 +3. Audio Station 没有收藏功能,音流是通过歌单接口间接实现的此功能。此外,Emby 和 Jellyfin 收藏后不记录收藏时间,因此无法实现按收藏时间倒序的功能。 \ No newline at end of file diff --git a/src/pages/index.js b/src/pages/index.js index ef1fba7..fc82182 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -21,11 +21,12 @@ function HomepageHeader() {

{siteConfig.tagline}

- - -
- -
+ + + + + +
diff --git a/src/pages/index.module.css b/src/pages/index.module.css index 3d77f35..a418966 100644 --- a/src/pages/index.module.css +++ b/src/pages/index.module.css @@ -20,9 +20,10 @@ display: flex; align-items: center; justify-content: center; + flex-wrap: wrap; } -.buttonSpacing { - margin-left: 2rem; +.buttonWrapper { + margin: 0.5rem 1rem; } \ No newline at end of file