Skip to content

Commit 269045c

Browse files
committed
update docs
1 parent 8087f31 commit 269045c

File tree

5 files changed

+36
-22
lines changed

5 files changed

+36
-22
lines changed

docs/.vuepress/bulletin.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ export const myBulletin: BulletinOptions = {
66
contentType: 'markdown',
77
title: '公告',
88
content: `\
9-
**v1.3.0** 版本已发布,涉及重大变更 💥
9+
**v1.4.0** 版本已发布,涉及重大变更 💥
1010
11-
- app 配置由独立控制改为统一控制
12-
- 插件系统焕新升级,涉及插件配置、安装方式、新增接口
11+
- OAuth2 模块已更新为插件
1312
1413
以上变更内容,可通过文档/源码自行查看
1514
`,

docs/.vuepress/components/PluginMarket.vue

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ const handleCardClick = (item: PluginItem) => {
232232
}
233233
234234
.card-title {
235-
font-size: 0.95rem;
235+
font-size: 1.25rem;
236236
font-weight: 600;
237237
color: var(--vp-c-text-1);
238238
margin: 0 0 0.5rem 0;
@@ -241,9 +241,9 @@ const handleCardClick = (item: PluginItem) => {
241241
242242
.card-description {
243243
color: var(--vp-c-text-2);
244-
font-size: 0.8rem;
244+
font-size: 0.75rem;
245245
line-height: 1.5;
246-
margin: 0 0 0.75rem 0;
246+
margin: 0 0 1rem;
247247
flex-grow: 1;
248248
}
249249
@@ -252,7 +252,6 @@ const handleCardClick = (item: PluginItem) => {
252252
flex-wrap: wrap;
253253
align-items: center;
254254
gap: 0.4rem;
255-
margin-bottom: 0.5rem;
256255
}
257256
258257
.price-corner-tag {

docs/.vuepress/data/plugin.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ export const pluginItems: PluginItem[] = [
3333
githubUser: 'wu-clan',
3434
priceLabel: "免费"
3535
},
36+
{
37+
icon: "logos:oauth",
38+
title: "OAuth 2.0",
39+
description: "通过 OAuth 2.0 的方式登录系统",
40+
tags: ["MySQL", "PostgreSQL", "后端"],
41+
githubUser: 'wu-clan',
42+
priceLabel: "免费"
43+
},
3644
{
3745
icon: "charm:shield-keyhole",
3846
title: "Casbin-RBAC",
@@ -46,7 +54,7 @@ export const pluginItems: PluginItem[] = [
4654
{
4755
icon: "streamline:ai-prompt-spark",
4856
title: "MCP ChatGPT",
49-
description: "带有 MCP 服务器调用的 AI 对话",
57+
description: "提供了 MCP 服务器管理功能,并支持调用 MCP 进行 AI 聊天",
5058
tags: ["MySQL", "PostgreSQL", "后端"],
5159
link: "https://github.com/fastapi-practices/fba_mcp",
5260
image: "https://github.com/modelcontextprotocol/.github/raw/main/profile/assets/light.png",

docs/changelog.md

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,30 @@ title: 更新日志
99
的成熟与稳定,更意味着它已完全通过验证,可以安心投入生产环境使用。在未来的版本迭代中,我们将持续为开发者带来更优质的产品体验。敬请期待!🤗
1010
:::
1111

12-
## [v1.3.0](https://github.com/fastapi-practices/fastapi_best_architecture/releases/tag/v1.3.0) - 2025-05-16
12+
## [v1.4.0](https://github.com/fastapi-practices/fastapi_best_architecture/releases/tag/v1.4.0) - 2025-05-22
1313

1414
### What's Changed
1515

16-
* Update changelog for v1.2.0 by [@wu-clan](https://github.com/wu-clan)
17-
in [#598](https://github.com/fastapi-practices/fastapi_best_architecture/pull/598)
18-
* Simplify apps and plugins config method by [@wu-clan](https://github.com/wu-clan)
19-
in [#600](https://github.com/fastapi-practices/fastapi_best_architecture/pull/600)
20-
* Add plugin info config and interfaces by [@wu-clan](https://github.com/wu-clan)
21-
in [#601](https://github.com/fastapi-practices/fastapi_best_architecture/pull/601)
22-
* Fix the fastapi cli startup event loop by [@wu-clan](https://github.com/wu-clan)
23-
in [#602](https://github.com/fastapi-practices/fastapi_best_architecture/pull/602)
24-
* Optimize the zip plugin install logic by [@wu-clan](https://github.com/wu-clan)
25-
in [#603](https://github.com/fastapi-practices/fastapi_best_architecture/pull/603)
26-
* Update the casbin RBAC module path by [@wu-clan](https://github.com/wu-clan)
27-
in [#604](https://github.com/fastapi-practices/fastapi_best_architecture/pull/604)
16+
* Update changelog for v1.3.0 by [@wu-clan](https://github.com/wu-clan)
17+
in [#605](https://github.com/fastapi-practices/fastapi_best_architecture/pull/605)
18+
* Add new plugin status check interface by [@wu-clan](https://github.com/wu-clan)
19+
in [#606](https://github.com/fastapi-practices/fastapi_best_architecture/pull/606)
20+
* Update the new plugin status to changed by [@wu-clan](https://github.com/wu-clan)
21+
in [#607](https://github.com/fastapi-practices/fastapi_best_architecture/pull/607)
22+
* Fix the task result schema param type by [@wu-clan](https://github.com/wu-clan)
23+
in [#611](https://github.com/fastapi-practices/fastapi_best_architecture/pull/611)
24+
* Fix the plugin status update logic by [@wu-clan](https://github.com/wu-clan)
25+
in [#613](https://github.com/fastapi-practices/fastapi_best_architecture/pull/613)
26+
* Update uninstall and build plugin api method by [@wu-clan](https://github.com/wu-clan)
27+
in [#614](https://github.com/fastapi-practices/fastapi_best_architecture/pull/614)
28+
* Fix non-asyncio nested async IO by [@wu-clan](https://github.com/wu-clan)
29+
in [#610](https://github.com/fastapi-practices/fastapi_best_architecture/pull/610)
30+
* Update the build plugin api params by [@wu-clan](https://github.com/wu-clan)
31+
in [#615](https://github.com/fastapi-practices/fastapi_best_architecture/pull/615)
32+
* Update uv installation in docker deploy by [@wu-clan](https://github.com/wu-clan)
33+
in [#619](https://github.com/fastapi-practices/fastapi_best_architecture/pull/619)
34+
* Update the OAuth2 module to plugin by [@wu-clan](https://github.com/wu-clan)
35+
in [#620](https://github.com/fastapi-practices/fastapi_best_architecture/pull/620)
2836

2937
::: demo-wrapper title="Full Changelog"
3038
完整日志请查看:[CHANGELOG.md](https://github.com/fastapi-practices/fastapi_best_architecture/blob/master/CHANGELOG.md)

docs/frontend/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ title: 介绍
1616
- [x] 部门管理
1717
- [ ] 用户管理
1818
- [ ] 角色管理
19-
- [ ] 菜单管理
19+
- [x] 菜单管理
2020
- [x] 插件管理
2121
- [ ] 数据权限
2222
- [x] 登录日志

0 commit comments

Comments
 (0)