Skip to content

Commit

Permalink
bump to v0.1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesPikachu committed Mar 8, 2022
1 parent 256dcf5 commit c4e23bf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@

- 2022-03-01: 完成v0.1.13, 升级桌面宠物,支持语音对话。

- 2022-03-01: 完成v0.1.14, 升级桌面宠物,鲁棒性增强。
- 2022-03-01: 完成v0.1.14, 升级桌面宠物,鲁棒性增强。

- 2022-03-08: 完成v0.1.15, 修复桌面宠物无法语音唤醒冰墩墩的问题。
2 changes: 1 addition & 1 deletion pytools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
'''url'''
__url__ = 'https://github.com/CharlesPikachu/pytools'
'''version'''
__version__ = '0.1.14'
__version__ = '0.1.15'
'''author'''
__author__ = 'Charles'
'''email'''
Expand Down
2 changes: 1 addition & 1 deletion pytools/modules/desktoppet/desktoppet.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def talk(self):
if self.running_talk: return
self.running_talk = True
def _talk(self):
valid_names = {'pikachu': '皮卡丘', 'blackcat': '黑猫', 'whitecat': '白猫', 'fox': '狐狸'}
valid_names = {'pikachu': '皮卡丘', 'blackcat': '黑猫', 'whitecat': '白猫', 'fox': '狐狸', 'bingdwendwen': '冰墩墩'}
while True:
self.speech_api.record()
user_input = self.speech_api.recognition()
Expand Down

0 comments on commit c4e23bf

Please sign in to comment.