Skip to content

Commit

Permalink
v3.12.0
Browse files Browse the repository at this point in the history
功能变动:

- 更新鸣谢名单
- 移除弃用的 Docker Compose version 字段

错误修复:

- 修复错误的 Caddy 反代配置
- 修复鸣谢页面样式异常
  • Loading branch information
FHU-yezi committed Apr 18, 2024
2 parents f341017 + 1d50495 commit e0e1ccc
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Caddyfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@

handle /api/* {
uri strip_prefix /api
reverse_proxy api:8902
reverse_proxy backend:8902
}
}
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "jtools"
version = "3.11.0"
version = "3.12.0"
description = "探索未知"
authors = ["yezi <[email protected]>"]
license = "MIT"
Expand Down
6 changes: 2 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3"

networks:
internal:
mongodb:
Expand All @@ -9,7 +7,7 @@ networks:

services:
frontend:
image: jtools-frontend:3.11.0
image: jtools-frontend:3.12.0
container_name: jtools-frontend
build:
dockerfile: Dockerfile.frontend
Expand All @@ -30,7 +28,7 @@ services:
max_attempts: 3
stop_grace_period: 5s
backend:
image: jtools-backend:3.11.0
image: jtools-backend:3.12.0
container_name: jtools-backend
build:
dockerfile: Dockerfile.backend
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jtools",
"private": true,
"version": "3.11.0",
"version": "3.12.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/pages/ThanksPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export default function ThanksPage() {
<Text>{`奖励:${item.reward} 简书贝`}</Text>
<Text color="gray">
By{" "}
<ExternalLink href={item.user_url}>{item.user_name}</ExternalLink>
·{item.time}
<ExternalLink href={item.user_url}>{item.user_name}</ExternalLink>{" "}
· {item.time}
</Text>
</Card>
))}
Expand Down Expand Up @@ -93,7 +93,7 @@ export default function ThanksPage() {
</LargeText>
<LargeText className="text-center">探索未知。</LargeText>
<SmallText className="text-center">
简书小工具集·{getDate(dayjs())}
简书小工具集 · {getDate(dayjs())}
</SmallText>
</Column>
</Column>
Expand Down
9 changes: 9 additions & 0 deletions frontend/src/thanks.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,15 @@
"user_name": "非村",
"user_url": "https://www.jianshu.com/u/df68a42402fc",
"reward": 50
},
{
"time": "2024-04-19",
"type": "数据异常",
"module": "LP 理事会推文检测工具",
"desc": "特定情况下间隔期数据异常",
"user_name": "平原雪",
"user_url": "https://www.jianshu.com/u/754f9b7b7417",
"reward": 50
}
],
"opensourcePackages": {
Expand Down

0 comments on commit e0e1ccc

Please sign in to comment.