From 5463319b402240bce8f7f9268d4943547bcf38f4 Mon Sep 17 00:00:00 2001 From: liangxu Date: Fri, 10 Jul 2026 01:35:08 +0800 Subject: [PATCH] feat(desktop): default Kimi to fast mode and show release notes on update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - kimi adapter: parameterize mode switching (fast/thinking) and default to K2.6 快速; fix snapshot filtering so fast-mode "搜索网页" chips no longer wipe the answer body or get misclassified as reasoning/sidebar - desktop shell: display release notes in the client update modal - admin-web: fix publish-records table layout with fixed columns and ellipsis - bump desktop-client to 0.1.10 Co-Authored-By: Claude Opus 4.8 (1M context) --- .../src/components/ArticleDetailDrawer.vue | 47 ++++++++-- apps/desktop-client/package.json | 2 +- apps/desktop-client/src/main/adapters/kimi.ts | 90 ++++++++++++------- .../src/renderer/components/DesktopShell.vue | 42 ++++++++- 4 files changed, 143 insertions(+), 38 deletions(-) diff --git a/apps/admin-web/src/components/ArticleDetailDrawer.vue b/apps/admin-web/src/components/ArticleDetailDrawer.vue index 0fb86c6..518bb89 100644 --- a/apps/admin-web/src/components/ArticleDetailDrawer.vue +++ b/apps/admin-web/src/components/ArticleDetailDrawer.vue @@ -99,30 +99,31 @@ const publishRecordColumns = computed>(() => [ title: t('media.records.platform'), dataIndex: 'platform_name', key: 'platform_name', - width: 140, + width: 128, }, { title: t('media.records.status'), dataIndex: 'status', key: 'status', - width: 130, + width: 112, }, { title: t('media.records.publishedAt'), dataIndex: 'published_at', key: 'published_at', - width: 168, + width: 126, }, { title: '错误信息', dataIndex: 'error_message', key: 'error_message', - width: 220, + width: 190, }, { title: t('media.records.link'), dataIndex: 'external_article_url', key: 'external_article_url', + width: 244, }, ]) @@ -288,7 +289,7 @@ async function copyPublishLink(record: PublishRecord): Promise {