From 2620ab47b042475b55ca85d9482c92da89a95d02 Mon Sep 17 00:00:00 2001 From: lyswhut Date: Sun, 21 Jan 2024 16:12:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BB=A3=E7=A0=81=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 2 +- src/components/common/DrawerLayoutFixed.tsx | 2 +- .../components/SettingPopup/settings/SettingPlaybackRate.tsx | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 54f1c7c..8c020fd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -178,7 +178,7 @@ jobs: android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-x86_64.apk android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-x86.apk android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-universal.apk - android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-android_5-universal.apk android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-sl-arm64-v8a.apk + # android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-android_5-universal.apk env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/src/components/common/DrawerLayoutFixed.tsx b/src/components/common/DrawerLayoutFixed.tsx index 07475cc..6f198bd 100644 --- a/src/components/common/DrawerLayoutFixed.tsx +++ b/src/components/common/DrawerLayoutFixed.tsx @@ -18,7 +18,7 @@ export interface DrawerLayoutFixedType { const DrawerLayoutFixed = forwardRef(({ visibleNavNames, widthPercentage, widthPercentageMax, children, ...props }, ref) => { const drawerLayoutRef = useRef(null) - const [w, setW] = useState('100%') + const [w, setW] = useState('100%') const [drawerWidth, setDrawerWidth] = useState(0) const changedRef = useRef({ width: 0, changed: false }) diff --git a/src/screens/PlayDetail/components/SettingPopup/settings/SettingPlaybackRate.tsx b/src/screens/PlayDetail/components/SettingPopup/settings/SettingPlaybackRate.tsx index 3c3a4fd..39aa0e7 100644 --- a/src/screens/PlayDetail/components/SettingPopup/settings/SettingPlaybackRate.tsx +++ b/src/screens/PlayDetail/components/SettingPopup/settings/SettingPlaybackRate.tsx @@ -17,7 +17,7 @@ import settingState from '@/store/setting/state' const MIN_VALUE = 60 const MAX_VALUE = 200 -const Volume = () => { +export default () => { const theme = useTheme() const playbackRate = Math.trunc(useSettingValue('player.playbackRate') * 100) const [sliderSize, setSliderSize] = useState(playbackRate) @@ -71,4 +71,3 @@ const Volume = () => { ) } -export default Volume