feat(version-card): add code name field and enhance version display

- Add codeName field to versionResponse interface in API types
- Add version section translations for English and Chinese locales
* releaseDate, version, and name labels
- Enhance VersionCard component layout and styling
* Display release date and code name in horizontal layout with divider
* Add numbered list formatting for core upgrades
* Improve text sizing and spacing for better readability
* Import Divider component from antd for visual separation
- Improve version information presentation with better structure and localization support
This commit is contained in:
yujiangping
2026-01-13 19:23:11 +08:00
parent e0ca2f5725
commit 99790551f9
4 changed files with 32 additions and 19 deletions

View File

@@ -17,6 +17,11 @@ export const en = {
spaceTitle:'Memory Bear Intelligent Space Management Platform',
spaceSubTitle: 'Making it easier to implement intelligent models - a one-stop platform for model management, knowledge building, workflow orchestration, and spatial operations',
},
version:{
releaseDate: 'Release Date',
version: 'Version',
name: 'Code Name'
},
quickActions:{
title: 'Quick Actions',
spaceManagement: 'Space Management',

View File

@@ -17,6 +17,11 @@ export const zh = {
spaceTitle:'记忆熊智能空间管理平台',
spaceSubTitle: '使智能模型的实施变得更加容易——一个集模型管理、知识构建、工作流程编排以及空间操作于一体的综合性平台',
},
version:{
releaseDate: '发布日',
version: '版本',
name: '代号'
},
quickActions:{
title: '快速操作',
spaceManagement: '空间管理',