diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 07028b42..6230913a 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -1,5 +1,11 @@ # 更新日志 +## v2.3.9 (2023-12-11) + +### 新功能 + +- 局域网内访问聊天记录 + ## v2.3.8 (2023-12-11) ### 新功能 diff --git a/pywxdump/cli.py b/pywxdump/cli.py index 93bf405c..b7edb1fa 100644 --- a/pywxdump/cli.py +++ b/pywxdump/cli.py @@ -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(): diff --git a/setup.py b/setup.py index 28d59b3f..2d2dac53 100644 --- a/setup.py +++ b/setup.py @@ -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",