merge 参数修改

This commit is contained in:
xaoyaoo 2023-12-12 09:59:43 +08:00
parent a1effea78f
commit c3f5990d2d
3 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# 更新日志
## v2.3.9 (2023-12-11)
### 新功能
- 局域网内访问聊天记录
## v2.3.8 (2023-12-11)
### 新功能

View File

@ -216,7 +216,7 @@ class MainShowChatRecords():
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():

View File

@ -3,7 +3,7 @@ from setuptools import setup, find_packages
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",