Skip to content

Commit

Permalink
feat(card): update the help message, version 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
shuyangzhang committed Jul 3, 2022
1 parent b30533e commit 8b3ea70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/CardStorage.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def MusicListCard(music_list: list[Music]) -> Tuple[Card, Card]:
def HelpCard() -> Card:
card = Card(theme=Types.Theme.INFO, size=Types.Size.LG)
# title
card.append(Module.Header(":watermelon: 镜华Kyouka 操作指南 v0.6.2 20220628 :watermelon:"))
card.append(Module.Header(":watermelon: 镜华Kyouka 操作指南 v0.7.0 20220703 :watermelon:"))
card.append(Module.Section(Element.Text(":bangbang: 播放歌曲前务必先绑定语音频道哦!")))

# base command
Expand All @@ -163,6 +163,7 @@ def HelpCard() -> Card:
`/play {music_name}` - 点歌
`/search {keyword}` - 搜索歌曲
`/msearch {keyword}` - 搜索咪咕音乐中的歌曲
`/qsearch {keyword}` - 搜索QQ音乐中的歌曲
`/osearch {keyword}` - 搜索osu!中的歌曲
`/select {search_list_id}` - 从搜索的列表中选择歌曲
`/bilibili {bili_video_url}` - 点播B站视频 [实验功能, 暂不稳定]
Expand All @@ -172,7 +173,6 @@ def HelpCard() -> Card:
`/album {album_url}` - 导入网易云音乐专辑
`/radio {radio_url}` - 导入网易云电台
`/remove {list_id}` - 删除歌单中的歌曲
`/clear` - 清空歌单
`/top {list_id}` - 播放列表中的歌曲置顶
"""
, type=Types.Text.KMD
Expand Down
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import app.CardStorage as CS


__version__ = "0.6.2"
__version__ = "0.7.0"

# logger
if settings.file_logger:
Expand Down

0 comments on commit 8b3ea70

Please sign in to comment.