add news page

This commit is contained in:
锦恢 2025-07-05 05:37:47 +08:00
parent 6e8b4aa23c
commit b3ce96c77d
3 changed files with 17 additions and 11 deletions

View File

@ -7,24 +7,16 @@ import OmSponsor from './components/Sponsor.vue';
import OmResource from './components/Resource.vue'; import OmResource from './components/Resource.vue';
import OmTroubleshoot from './components/Troubleshoot.vue'; import OmTroubleshoot from './components/Troubleshoot.vue';
const version = '0.1.9'; import data from './data.json';
const changelogs = [
'增加 mook 功能可以利用随机种子或者AI生成来自动化填充测试 tool 的表单数据',
'增加工具自检功能openmcp 的 tool 下可以点击「工具模块」 右侧的 「工具自检」进入自检模式,该模式下,用户可以自己定义工具执行的拓扑顺序,然后一次性进行自动检测。',
'修复 issue #44: 完成链接跳转的平台适配',
'修复 issue #36: 完成非文件夹打开下的成功启动',
'修复 issue #45: 数组类型参数不支持',
'修复多行对话粘贴进入对话框样式异常的问题'
];
</script> </script>
<template> <template>
<main class="openmcp-news-root"> <main class="openmcp-news-root">
<om-header :version="version" /> <om-header :version="data.version" />
<!-- 1. 📣 What is news in OpenMCP --> <!-- 1. 📣 What is news in OpenMCP -->
<om-what-news :version="version" :changelogs="changelogs" /> <om-what-news :version="data.version" :changelogs="data.changelogs" />
<!-- 2. 🐳 Learn more features --> <!-- 2. 🐳 Learn more features -->
<om-more-feature /> <om-more-feature />

View File

@ -1,3 +1,6 @@
<script>
</script>
<template> <template>
<section class="troubleshoot-section"> <section class="troubleshoot-section">
<div class="section-title">🔧 Troubleshooting</div> <div class="section-title">🔧 Troubleshooting</div>

11
news/src/data.json Normal file
View File

@ -0,0 +1,11 @@
{
"version": "0.1.9",
"changelogs": [
"Add mook feature: Automatically fill test tool form data using random seeds or AI generation.",
"Add tool self-check feature: In OpenMCP's tool section, click 'Tool Self-Check' on the right of 'Tool Module' to enter self-check mode, where users can define the execution topology order of tools and perform automatic detection in one go.",
"Fix issue #44: Complete platform adaptation for link redirection.",
"Fix issue #36: Successful startup when not opening a folder.",
"Fix issue #45: Support for array-type parameters.",
"Fix abnormal style when pasting multi-line conversations into the dialog box."
]
}