docs: update evolution banner to announce rebuilt CLI release#2393
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the documentation site's top evolution banner copy in both Chinese and English to announce a rebuilt/upgraded release of Kimi Code CLI, while keeping the existing link target unchanged.
Changes:
- Updated Chinese banner text to announce the rebuilt/upgraded release
- Updated English banner text correspondingly
- Replaced the arrow character with an emoji arrow (➡️)
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: e26fa5e50a
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| ? 'Kimi Code CLI 重构升级版已发布,迭代更快 了解更多➡️' | ||
| : 'Kimi Code CLI rebuilt & upgraded version released — faster iterations. Learn more ➡️', |
There was a problem hiding this comment.
Reset dismissal state for the new announcement
Users who previously dismissed the old evolution banner will never see this new release announcement, because the component still reads the same kimi-cli-evolution-banner-dismissed localStorage key and suppresses the banner before rendering the updated copy. Since this change is meant to announce a new rebuilt CLI release, bumping/versioning the dismissal key (or otherwise invalidating the old dismissal) is needed for those returning docs visitors to see it.
Useful? React with 👍 / 👎.
| isZh.value | ||
| ? 'Kimi Code CLI 已升级为 Kimi Code,了解更多 →' | ||
| : 'Kimi Code CLI is evolving into Kimi Code. Learn more →', | ||
| ? 'Kimi Code CLI 重构升级版已发布,迭代更快 了解更多➡️' |
There was a problem hiding this comment.
🟡 Triple spaces in Chinese banner text will collapse to a single space in HTML rendering
The Chinese message on line 44 contains three consecutive spaces (迭代更快 了解更多➡️) that appear intended to create visual separation. However, the text is rendered inside an <a> element (docs/.vitepress/theme/EvolutionBanner.vue:52-59) with no white-space: pre or similar CSS property, so HTML whitespace collapsing will reduce them to a single space, making the separator invisible.
| ? 'Kimi Code CLI 重构升级版已发布,迭代更快 了解更多➡️' | |
| ? 'Kimi Code CLI 重构升级版已发布,迭代更快 · 了解更多➡️' |
Was this helpful? React with 👍 or 👎 to provide feedback.
Summary
MoonshotAI/kimi-codeTest plan
bun run docs:dev,确认中文与英文站点 banner 文案显示正确Summary
MoonshotAI/kimi-codeTest plan
bun run docs:devlocally to confirm that the Chinese and English site banner copywriting is displayed correctly