Skip to content

Commit

Permalink
update version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LC044 committed Feb 11, 2024
1 parent 68bceb4 commit fac0226
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 14 deletions.
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/1_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ body:
attributes:
label: '💻 微信版本'
options:
- 3.9.8.25
- 3.9.8.15
- 最新版
- Other(更新到最新版再试试)
- type: dropdown
attributes:
Expand Down
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = '1.1.0'
version = '1.1.1'
contact = '701805520'
github = 'https://github.com/LC044/WeChatMsg'
website = 'https://memotrace.lc044.love/'
Expand Down
1 change: 1 addition & 0 deletions app/resources/data/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="no-referrer"/>
<style>
* {
padding: 0;
Expand Down
Binary file modified app/ui/menu/about_dialog.cp310-win_amd64.pyd
Binary file not shown.
Binary file modified app/ui/menu/about_dialog.cp311-win_amd64.pyd
Binary file not shown.
Binary file modified app/ui/menu/about_dialog.cp312-win_amd64.pyd
Binary file not shown.
8 changes: 4 additions & 4 deletions app/ui/menu/export.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
import sys
import sys as sys_
import time
from typing import List
from PyQt5 import QtWidgets
Expand Down Expand Up @@ -58,7 +58,7 @@ def __init__(self, contact=None, title="选择导出的类型", file_type="html"
self.btn_start.clicked.connect(self.export_data)
self.comboBox_time.activated.connect(self.set_export_date)
# 下面将输出重定向到textBrowser中
sys.stdout = EmittingStr(textWritten=self.outputWritten)
sys_.stdout = EmittingStr(textWritten=self.outputWritten)
# sys.stderr = EmittingStr(textWritten=self.outputWritten)
scroll_bar = ScrollBar()
self.textBrowser.setVerticalScrollBar(scroll_bar)
Expand Down Expand Up @@ -218,11 +218,11 @@ def export_finished(self):
reply.addButton("取消", QMessageBox.RejectRole)
api = reply.exec_()
# 在任务完成时重置sys.stdout
sys.stdout = sys.__stdout__
sys_.stdout = sys_.__stdout__
self.accept()

def close(self):
sys.stdout = sys.__stdout__
sys_.stdout = sys_.__stdout__
del self.worker
super().close()

Expand Down
8 changes: 1 addition & 7 deletions app/web_ui/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -338,13 +338,7 @@ <h2>聊天榜单</h2>
</ul>
</div>
<div class="section" style="text-align: center;display:flex;justify-content: center;align-items: center;">
<h1>分享此页面</h1>
<div>
<a id="share" href="https://memotrace.lc044.love/" target="_blank">https://memotrace.lc044.love/</a>
</div>
<button onclick="confirmUpload()">上传并显示二维码</button>
<div id="qrcode"></div>
<a href="https://memotrace.lc044.love/" target="_blank">点击生成我的年度聊天报告</a>
<h1>敬请期待</h1>
</div>
</div>
<script>
Expand Down

0 comments on commit fac0226

Please sign in to comment.