diff --git a/client.pyw b/client.pyw index ceac7e0..60483a7 100644 --- a/client.pyw +++ b/client.pyw @@ -37,6 +37,8 @@ def quit_exe(): os.system('taskkill -f -t -im chat_command.exe') os.system('taskkill -f -t -im sittings.exe') os.system('taskkill -f -t -im update.exe') + os.system('taskkill -f -t -im xz_chat.exe') + os.system('taskkill -f -t -im xz_main.exe') os.system('taskkill -f -t -im python.exe') sys.exit() @@ -75,6 +77,7 @@ quit_bt = Button(root, text='退出', command=quit_exe) bt_web_xz.pack() bt_st.pack() quit_bt.pack() +Label(root,text='version 1.3 @2023-2024 dengrb1').pack() # mainloop root.mainloop() \ No newline at end of file diff --git a/xjai.pyw b/xjai.pyw index f37a3f3..5c6dec4 100644 --- a/xjai.pyw +++ b/xjai.pyw @@ -9,7 +9,7 @@ class Browser(QMainWindow): self.setWindowTitle('浏览器') self.browser = QWebEngineView() - self.browser.setUrl(QUrl('https://home.xjai.cc')) + self.browser.setUrl(QUrl('https://chat13.aitianhu.top')) self.setCentralWidget(self.browser) refresh_button = QAction('刷新', self)