Skip to content

Commit

Permalink
merge 参数修改
Browse files Browse the repository at this point in the history
  • Loading branch information
xaoyaoo committed Dec 12, 2023
1 parent a1effea commit c3f5990
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# 更新日志

## v2.3.9 (2023-12-11)

### 新功能

- 局域网内访问聊天记录

## v2.3.8 (2023-12-11)

### 新功能
Expand Down
2 changes: 1 addition & 1 deletion pywxdump/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def before_request():
app.register_blueprint(app_show_chat)

print("[+] 请使用浏览器访问 http://127.0.0.1:5000/ 查看聊天记录")
app.run(debug=False)
app.run(host='0.0.0.0', port=5000, debug=False)


class MainExportChatRecords():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

version = "2.3.8"
version = "2.3.9"

install_requires = [
"psutil",
Expand Down

0 comments on commit c3f5990

Please sign in to comment.