-
Notifications
You must be signed in to change notification settings - Fork 752
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish v0.4.4
- Loading branch information
Showing
26 changed files
with
319 additions
and
301 deletions.
There are no files selected for viewing
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,3 +1,6 @@ | ||
`2024.11.10 v0.4.4` | ||
【修复】修复了部分系统上弹窗、浮层等无法出现,或动画表现异常的问题 | ||
|
||
`2024.10.27 v0.4.3` | ||
【修复】修复了部分系统上文字显示不全的问题 | ||
|
||
|
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 @@ | ||
{ | ||
"name": "MusicFree", | ||
"version": "0.4.3", | ||
"version": "0.4.4", | ||
"private": true, | ||
"license": "AGPL", | ||
"author": { | ||
|
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 +1 @@ | ||
{"version":"0.4.3","changeLog":["安装包上传到了飞书云文档,浏览器打开链接后有个下载说明,可以根据这个指引安装apk", "【修复】修复了部分系统上文字显示不全的问题", "以下是更早版本的修复", "1. 【修复】修复本地音乐无法播放的问题", "2. 【修复】修复桌面歌词无法开启的问题","3. 【修复】修复了修改桌面歌词颜色会导致闪退的问题","4. 【修复】回滚了本地音乐部分读取文件的逻辑","5. 【修复】修复了点击【编辑歌单信息】按钮无效的问题"],"download":["https://r0rvr854dd1.feishu.cn/drive/folder/KLqKfWOA3lx8MKdo8xNcYpR8n7t"]} | ||
{"version":"0.4.4","changeLog":["安装包上传到了飞书云文档,浏览器打开链接后有个下载说明,可以根据这个指引安装apk", "【修复】修复了部分系统上弹窗、浮层等无法出现,或动画表现异常的问题", "以下是更早版本的修复", "- 【修复】修复了部分系统上文字显示不全的问题", "- 【修复】修复本地音乐无法播放的问题", "- 【修复】修复桌面歌词无法开启的问题","- 【修复】修复了修改桌面歌词颜色会导致闪退的问题","- 【修复】回滚了本地音乐部分读取文件的逻辑","- 【修复】修复了点击【编辑歌单信息】按钮无效的问题"],"download":["https://r0rvr854dd1.feishu.cn/drive/folder/KLqKfWOA3lx8MKdo8xNcYpR8n7t"]} |
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
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
152 changes: 76 additions & 76 deletions
152
...mponents/homeBodyHorizonal/operations.tsx → ...ponents/homeBodyHorizontal/operations.tsx
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,76 +1,76 @@ | ||
import React from 'react'; | ||
import {StyleSheet} from 'react-native'; | ||
import rpx from '@/utils/rpx'; | ||
import ActionButton from '../ActionButton'; | ||
import {ROUTE_PATH, useNavigate} from '@/entry/router'; | ||
import {ScrollView} from 'react-native-gesture-handler'; | ||
|
||
export default function Operations() { | ||
const navigate = useNavigate(); | ||
|
||
const actionButtons = [ | ||
{ | ||
iconName: 'fire', | ||
title: '推荐歌单', | ||
action() { | ||
navigate(ROUTE_PATH.RECOMMEND_SHEETS); | ||
}, | ||
}, | ||
{ | ||
iconName: 'trophy', | ||
title: '榜单', | ||
action() { | ||
navigate(ROUTE_PATH.TOP_LIST); | ||
}, | ||
}, | ||
{ | ||
iconName: 'clock-outline', | ||
title: '播放记录', | ||
action() { | ||
navigate(ROUTE_PATH.HISTORY); | ||
}, | ||
}, | ||
{ | ||
iconName: 'folder-music-outline', | ||
title: '本地音乐', | ||
action() { | ||
navigate(ROUTE_PATH.LOCAL); | ||
}, | ||
}, | ||
] as const; | ||
|
||
return ( | ||
<ScrollView style={styles.container}> | ||
{actionButtons.map((action, index) => ( | ||
<ActionButton | ||
style={[ | ||
styles.actionButtonStyle, | ||
index % 4 ? styles.actionMarginLeft : null, | ||
]} | ||
key={action.title} | ||
{...action} | ||
/> | ||
))} | ||
</ScrollView> | ||
); | ||
} | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
width: rpx(200), | ||
flexGrow: 0, | ||
flexShrink: 0, | ||
paddingHorizontal: rpx(24), | ||
marginVertical: rpx(32), | ||
flexDirection: 'row', | ||
flexWrap: 'wrap', | ||
}, | ||
actionButtonStyle: { | ||
width: rpx(157.5), | ||
height: rpx(160), | ||
borderRadius: rpx(18), | ||
}, | ||
actionMarginLeft: { | ||
marginTop: rpx(24), | ||
}, | ||
}); | ||
import React from 'react'; | ||
import {StyleSheet} from 'react-native'; | ||
import rpx from '@/utils/rpx'; | ||
import ActionButton from '../ActionButton'; | ||
import {ROUTE_PATH, useNavigate} from '@/entry/router'; | ||
import {ScrollView} from 'react-native-gesture-handler'; | ||
|
||
export default function Operations() { | ||
const navigate = useNavigate(); | ||
|
||
const actionButtons = [ | ||
{ | ||
iconName: 'fire', | ||
title: '推荐歌单', | ||
action() { | ||
navigate(ROUTE_PATH.RECOMMEND_SHEETS); | ||
}, | ||
}, | ||
{ | ||
iconName: 'trophy', | ||
title: '榜单', | ||
action() { | ||
navigate(ROUTE_PATH.TOP_LIST); | ||
}, | ||
}, | ||
{ | ||
iconName: 'clock-outline', | ||
title: '播放记录', | ||
action() { | ||
navigate(ROUTE_PATH.HISTORY); | ||
}, | ||
}, | ||
{ | ||
iconName: 'folder-music-outline', | ||
title: '本地音乐', | ||
action() { | ||
navigate(ROUTE_PATH.LOCAL); | ||
}, | ||
}, | ||
] as const; | ||
|
||
return ( | ||
<ScrollView style={styles.container}> | ||
{actionButtons.map((action, index) => ( | ||
<ActionButton | ||
style={[ | ||
styles.actionButtonStyle, | ||
index % 4 ? styles.actionMarginLeft : null, | ||
]} | ||
key={action.title} | ||
{...action} | ||
/> | ||
))} | ||
</ScrollView> | ||
); | ||
} | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
width: rpx(200), | ||
flexGrow: 0, | ||
flexShrink: 0, | ||
paddingHorizontal: rpx(24), | ||
marginVertical: rpx(32), | ||
flexDirection: 'row', | ||
flexWrap: 'wrap', | ||
}, | ||
actionButtonStyle: { | ||
width: rpx(157.5), | ||
height: rpx(160), | ||
borderRadius: rpx(18), | ||
}, | ||
actionMarginLeft: { | ||
marginTop: rpx(24), | ||
}, | ||
}); |
Oops, something went wrong.