Skip to content

Commit

Permalink
feat(card): updated the help message, version 0.6.2 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
shuyangzhang committed Jun 27, 2022
1 parent df6e771 commit e65c179
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion 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.1 20220624 :watermelon:"))
card.append(Module.Header(":watermelon: 镜华Kyouka 操作指南 v0.6.2 20220628 :watermelon:"))
card.append(Module.Section(Element.Text(":bangbang: 播放歌曲前务必先绑定语音频道哦!")))

# base command
Expand All @@ -162,6 +162,7 @@ def HelpCard() -> Card:
:musical_note: **音乐指令** :musical_note:
`/play {music_name}` - 点歌
`/search {keyword}` - 搜索歌曲
`/msearch {keyword}` - 搜索咪咕音乐中的歌曲
`/osearch {keyword}` - 搜索osu!中的歌曲
`/select {search_list_id}` - 从搜索的列表中选择歌曲
`/bilibili {bili_video_url}` - 点播B站视频 [实验功能, 暂不稳定]
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.1"
__version__ = "0.6.2"

# logger
if settings.file_logger:
Expand Down

0 comments on commit e65c179

Please sign in to comment.