merge 参数修改
This commit is contained in:
parent
a1effea78f
commit
c3f5990d2d
@ -1,5 +1,11 @@
|
|||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
|
## v2.3.9 (2023-12-11)
|
||||||
|
|
||||||
|
### 新功能
|
||||||
|
|
||||||
|
- 局域网内访问聊天记录
|
||||||
|
|
||||||
## v2.3.8 (2023-12-11)
|
## v2.3.8 (2023-12-11)
|
||||||
|
|
||||||
### 新功能
|
### 新功能
|
||||||
|
@ -216,7 +216,7 @@ class MainShowChatRecords():
|
|||||||
app.register_blueprint(app_show_chat)
|
app.register_blueprint(app_show_chat)
|
||||||
|
|
||||||
print("[+] 请使用浏览器访问 http://127.0.0.1:5000/ 查看聊天记录")
|
print("[+] 请使用浏览器访问 http://127.0.0.1:5000/ 查看聊天记录")
|
||||||
app.run(debug=False)
|
app.run(host='0.0.0.0', port=5000, debug=False)
|
||||||
|
|
||||||
|
|
||||||
class MainExportChatRecords():
|
class MainExportChatRecords():
|
||||||
|
2
setup.py
2
setup.py
@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
|||||||
with open("README.md", "r", encoding="utf-8") as fh:
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
version = "2.3.8"
|
version = "2.3.9"
|
||||||
|
|
||||||
install_requires = [
|
install_requires = [
|
||||||
"psutil",
|
"psutil",
|
||||||
|
Loading…
Reference in New Issue
Block a user