From e61f092d566b302a0dbc1c16a14c9450396c459c Mon Sep 17 00:00:00 2001 From: shuaikangzhou <863909694@qq.com> Date: Thu, 23 Nov 2023 22:58:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=B5=84=E6=BA=90=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/WeChatMsg.iml | 3 + .idea/workspace.xml | 56 +- app/DataBase/output_pc.py | 2 +- app/data/icons/analysis.svg | 1 - app/data/icons/annual_report.svg | 1 - app/data/icons/back.svg | 1 - app/data/icons/chat.svg | 1 - app/data/icons/contact.svg | 1 - app/data/icons/csv.svg | 1 - app/data/icons/default_avatar.svg | 1 - app/data/icons/emotion.svg | 1 - app/data/icons/html.svg | 1 - app/data/icons/loading.svg | 1 - app/data/icons/logo.svg | 1 - app/data/icons/myinfo.svg | 1 - app/data/icons/output.svg | 1 - app/data/icons/search.svg | 1 - app/data/icons/word.svg | 1 - app/decrypt/get_wx_info.py | 15 +- app/person.py | 2 +- app/person_pc.py | 69 + app/resources/__init__.py | 0 app/{data => resources}/icons/404.png | Bin app/resources/icons/404.svg | 13 + app/resources/icons/__init__.py | 0 app/resources/icons/analysis.svg | 7 + app/resources/icons/annual_report.svg | 12 + app/resources/icons/annual_report1.svg | 40 + app/resources/icons/back.svg | 8 + app/resources/icons/chat.svg | 10 + app/resources/icons/contact (1).svg | 7 + app/resources/icons/contact (2).svg | 7 + app/resources/icons/contact.svg | 7 + app/resources/icons/csv.svg | 11 + app/resources/icons/default_avatar.svg | 134 + app/resources/icons/emotion.svg | 11 + app/resources/icons/html.svg | 11 + app/resources/icons/loading.svg | 11 + app/resources/icons/logo.svg | 13 + app/resources/icons/myinfo.svg | 7 + app/resources/icons/output.svg | 9 + app/resources/icons/resources.qrc | 5 + app/resources/icons/resources_rc.py | 202 ++ app/resources/icons/search.svg | 7 + app/resources/icons/word.svg | 18 + app/resources/resource.qrc | 24 + app/resources/resource_rc.py | 3712 +++++++++++++++++++++++ app/resources/version_list.json | 386 +++ app/ui_pc/Icon.py | 34 +- app/ui_pc/chat/chat_window.py | 4 +- app/ui_pc/contact/contactInfo.py | 18 +- app/ui_pc/contact/contact_window.py | 4 +- app/ui_pc/mainview.py | 16 +- app/ui_pc/mainwindow.py | 18 +- app/ui_pc/mainwindow.ui | 18 +- app/ui_pc/tool/pc_decrypt/pc_decrypt.py | 12 +- app/ui_pc/tool/tool_window.py | 2 +- app/util/path.py | 6 +- decrypt_window.py | 4 +- logo.ico | Bin 0 -> 4286 bytes logo16x16.ico | Bin 0 -> 1150 bytes 61 files changed, 4879 insertions(+), 91 deletions(-) delete mode 100644 app/data/icons/analysis.svg delete mode 100644 app/data/icons/annual_report.svg delete mode 100644 app/data/icons/back.svg delete mode 100644 app/data/icons/chat.svg delete mode 100644 app/data/icons/contact.svg delete mode 100644 app/data/icons/csv.svg delete mode 100644 app/data/icons/default_avatar.svg delete mode 100644 app/data/icons/emotion.svg delete mode 100644 app/data/icons/html.svg delete mode 100644 app/data/icons/loading.svg delete mode 100644 app/data/icons/logo.svg delete mode 100644 app/data/icons/myinfo.svg delete mode 100644 app/data/icons/output.svg delete mode 100644 app/data/icons/search.svg delete mode 100644 app/data/icons/word.svg create mode 100644 app/person_pc.py create mode 100644 app/resources/__init__.py rename app/{data => resources}/icons/404.png (100%) create mode 100644 app/resources/icons/404.svg create mode 100644 app/resources/icons/__init__.py create mode 100644 app/resources/icons/analysis.svg create mode 100644 app/resources/icons/annual_report.svg create mode 100644 app/resources/icons/annual_report1.svg create mode 100644 app/resources/icons/back.svg create mode 100644 app/resources/icons/chat.svg create mode 100644 app/resources/icons/contact (1).svg create mode 100644 app/resources/icons/contact (2).svg create mode 100644 app/resources/icons/contact.svg create mode 100644 app/resources/icons/csv.svg create mode 100644 app/resources/icons/default_avatar.svg create mode 100644 app/resources/icons/emotion.svg create mode 100644 app/resources/icons/html.svg create mode 100644 app/resources/icons/loading.svg create mode 100644 app/resources/icons/logo.svg create mode 100644 app/resources/icons/myinfo.svg create mode 100644 app/resources/icons/output.svg create mode 100644 app/resources/icons/resources.qrc create mode 100644 app/resources/icons/resources_rc.py create mode 100644 app/resources/icons/search.svg create mode 100644 app/resources/icons/word.svg create mode 100644 app/resources/resource.qrc create mode 100644 app/resources/resource_rc.py create mode 100644 app/resources/version_list.json create mode 100644 logo.ico create mode 100644 logo16x16.ico diff --git a/.idea/WeChatMsg.iml b/.idea/WeChatMsg.iml index ec63674..aad402c 100644 --- a/.idea/WeChatMsg.iml +++ b/.idea/WeChatMsg.iml @@ -4,4 +4,7 @@