From 39befea78e973d839cbd9110bc6963dce904d3e0 Mon Sep 17 00:00:00 2001
From: flytothehighest <137701630+flytothehighest@users.noreply.github.com>
Date: Fri, 12 Jun 2026 16:37:59 +0800
Subject: [PATCH 1/2] =?UTF-8?q?=E4=B8=80=E4=BA=9B=E5=B0=8F=E6=94=B9?=
=?UTF-8?q?=E5=8A=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
AI Chat功能早已经404了,改成提示框;在任务管理器加上kill 登录进程后重启登录
---
desktop.html | 2 +-
desktop.js | 7 +++++++
module/apps.js | 5 +++--
3 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/desktop.html b/desktop.html
index 91056806..7f0611aa 100755
--- a/desktop.html
+++ b/desktop.html
@@ -297,7 +297,7 @@
记事本
- +AI Chat
diff --git a/desktop.js b/desktop.js index 6106d0e3..de42da92 100755 --- a/desktop.js +++ b/desktop.js @@ -961,6 +961,13 @@ const nts = { { type: '', text: lang('取消','cancel'), js: 'closenotice();' } ] }, + 'error_aichat': { + cnt: lang(`AI Chat无法使用
+暂时无法使用此功能,请转用语音输入球
`), + btn: [ + { type: 'main', text: lang('确定', 'ok'), js: 'closenotice();' } + ] + }, }; function shownotice(name) { $('#notice>.cnt').html(nts[name].cnt); diff --git a/module/apps.js b/module/apps.js index 8847fd21..87137c6c 100644 --- a/module/apps.js +++ b/module/apps.js @@ -598,8 +598,9 @@ let apps = { taskkill: (name) => { if (name == 'System') { window.location = 'bluescreen.html'; - } - else { + }else if(name == 'Windows Logon Process'){ + window.location.reload(); + }else { apps.taskmgr.tasks.splice(apps.taskmgr.tasks.findIndex(elt => elt.name == name), 1); if (taskmgrTasks.find(elt => elt.name == name).link != null) { hidewin(taskmgrTasks.find(elt => elt.name == name).link); From 20c25f2646c6382c4bebcd0c9374d2c8aee5b599 Mon Sep 17 00:00:00 2001 From: Paper Moon <47830915@qq.com> Date: Sat, 13 Jun 2026 18:59:43 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E7=BC=AE=E8=AF=AD=E8=A8=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- desktop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop.js b/desktop.js index de42da92..86b5b229 100755 --- a/desktop.js +++ b/desktop.js @@ -962,7 +962,7 @@ const nts = { ] }, 'error_aichat': { - cnt: lang(`AI Chat无法使用
+ cnt: lang(`AI Chat 无法使用
暂时无法使用此功能,请转用语音输入球
`), btn: [ { type: 'main', text: lang('确定', 'ok'), js: 'closenotice();' }