Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
LC044 committed Nov 25, 2023
1 parent 7a7ed1a commit 7632585
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion app/util/emoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,15 @@ def parser_xml(xml_string):
encrypturl = emoji.get('encrypturl')
thumburl = emoji.get('thumburl')
externurl = emoji.get('externurl')
androidmd5 = emoji.get('androidmd5')
width = emoji.get('width')
height = emoji.get('height')
return {
'width': width,
'height': height,
'cdnurl': cdnurl,
'thumburl': thumburl if thumburl else cdnurl,
'md5': md5
'md5': md5 if md5 else androidmd5,
}


Expand Down
Binary file added doc/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion main_pc.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ViewController(QWidget):
def __init__(self):
super().__init__()
self.setWindowTitle('解密')
self.setWindowIcon(QIcon(':/icons/icons/logo.svg'))
self.setWindowIcon(QIcon(':/icons/icons/logo.png'))
self.viewMainWIndow = None
self.viewDecrypt = None
# 创建加载动画
Expand Down
6 changes: 4 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# 微信聊天记录可视化

<h1 align="center">我的数据我做主</h1>
<div align="center">
<img src="https://img.shields.io/badge/WeChat-解密-blue.svg">
<a href="https://github.com/LC044/WeChatMsg/stargazers">
Expand All @@ -15,7 +14,10 @@
<img src="https://img.shields.io/github/license/LC044/WeChatMsg" />
</a>
</div>
<div align="center">

<a><img src="./doc/images/logo.png" height="240"/></a>
</div>
## 功能

- 破解📱手机微信数据库
Expand Down

0 comments on commit 7632585

Please sign in to comment.