Skip to content

Commit 7892859

Browse files
committed
Update news page and version info
1 parent 1d1e684 commit 7892859

File tree

7 files changed

+28
-13
lines changed

7 files changed

+28
-13
lines changed

docs/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tuui-docs",
33
"private": true,
4-
"version": "0.8.8",
4+
"version": "0.8.9",
55
"scripts": {
66
"dev": "vitepress dev src",
77
"build": "vitepress build src",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tuui",
33
"appId": "com.tuui.app",
4-
"version": "0.8.8",
4+
"version": "0.8.9",
55
"description": "Tool Unitary User Interface",
66
"homepage": "https://www.tuui.com",
77
"author": "AIQL <contact@aiql.com>",

src/main/assets/config/llm.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
{
77
"url": "https://dashscope.aliyuncs.com/compatible-mode",
88
"urlList": ["https://dashscope.aliyuncs.com/compatible-mode"],
9+
"path": "/v1/chat/completions",
910
"name": "Qwen",
1011
"model": "qwen-turbo",
1112
"modelList": ["qwen-turbo", "qwen-plus", "qwen-max"]

src/renderer/components/pages/McpNewsPage.vue

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,20 @@ const mcpNews = [
3535
link: 'https://github.com/modelcontextprotocol/servers'
3636
},
3737
{
38-
img: 'https://gcore.jsdelivr.net/gh/idosal/git-mcp@main/public/img/cover.png',
39-
title: 'Git MCP',
38+
img: 'https://cdn.jsdelivr.net/gh/astral-sh/uv@main/assets/svg/Astral.svg',
39+
title: 'UV',
4040
subtitle:
41-
'GitMCP is a free, open-source, remote Model Context Protocol (MCP) server that transforms any GitHub project (repositories or GitHub pages) into a documentation hub. It enables AI tools like Cursor to access up-to-date documentation and code, even if the LLM has never encountered them, thereby eliminating code hallucinations seamlessly.',
42-
duration: '20',
43-
link: 'https://github.com/idosal/git-mcp'
41+
'An extremely fast Python package and project manager, written in Rust. A single tool to replace pip, pip-tools, pipx, poetry, pyenv, twine, virtualenv, and more.',
42+
duration: '5',
43+
link: 'https://docs.astral.sh/uv/getting-started/installation/'
44+
},
45+
{
46+
img: 'https://nodejs.org/static/logos/nodejsDark.svg',
47+
title: 'Node.js',
48+
subtitle:
49+
'Node.js® is a free, open-source, cross-platform JavaScript runtime environment that lets developers create servers, web apps, command line tools and scripts.',
50+
duration: '5',
51+
link: 'https://nodejs.org/'
4452
},
4553
{
4654
img: 'https://www.anthropic.com/_next/image?url=https%3A%2F%2Fwww-cdn.anthropic.com%2Fimages%2F4zrzovbb%2Fwebsite%2Fd48f3ea1218a4b90450b9ab8134fa0e24db5a167-720x542.png&w=1920&q=75',
@@ -93,7 +101,14 @@ const placeholderColor = computed(() => {
93101
<v-row dense>
94102
<v-col v-for="(item, index) in items" :key="item.raw.title" cols="auto" md="4">
95103
<v-card class="pb-3" border flat>
96-
<v-img :src="item.raw.img" :height="142" cover :lazy-src="placeholderColor(index)">
104+
<v-img
105+
class="ma-2"
106+
rounded="lg"
107+
cover
108+
:src="item.raw.img"
109+
:height="140"
110+
:lazy-src="placeholderColor(index)"
111+
>
97112
<template #placeholder>
98113
<div class="d-flex align-center justify-center fill-height">
99114
<v-progress-circular color="grey-lighten-4" indeterminate></v-progress-circular>

src/renderer/utils/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ class Mcp {
185185
}
186186

187187
static async msgMcpServersWatch(callback: any): Promise<any> {
188-
console.log(callback)
189188
return window.mainApi.on('msgMcpServersWatch', callback)
190189
}
191190
}

0 commit comments

Comments
 (0)