Skip to content

Commit f19998d

Browse files
authored
feat: version 2.9.1 (Chanzhaoyu#207)
* feat: i18n * chore: format * feat: 补充遗漏翻译 * chore: update deps * feat: 复制代码块[Chanzhaoyu#196][Chanzhaoyu#197] * chore: version 2.9.1
1 parent 21cf1bd commit f19998d

File tree

26 files changed

+589
-334
lines changed

26 files changed

+589
-334
lines changed

.vscode/settings.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,14 @@
4545
"VITE",
4646
"vueuse",
4747
"Zhao"
48-
]
48+
],
49+
"i18n-ally.enabledParsers": [
50+
"ts"
51+
],
52+
"i18n-ally.sortKeys": true,
53+
"i18n-ally.keepFulfilled": true,
54+
"i18n-ally.localesPaths": [
55+
"src/locales"
56+
],
57+
"i18n-ally.keystyle": "nested"
4958
}

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## v2.9.1
2+
3+
`2023-03-02`
4+
5+
### Feature
6+
- 代码块添加当前代码语言显示和复制功能[#197][#196]
7+
- 完善多语言,现在可以切换中英文显示
8+
9+
## Enhancement
10+
-[Zo3i](https://github.com/Chanzhaoyu/chatgpt-web/pull/187) 完善 `docker-compose` 部署文档
11+
12+
### BugFix
13+
-[ottocsb](https://github.com/Chanzhaoyu/chatgpt-web/pull/200) 修复头像修改不同步的问题
14+
## Other
15+
- 更新依赖至最新
16+
- 修改 `README` 内容
117
## v2.9.0
218

319
`2023-03-02`

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ API_REVERSE_PROXY=
6969

7070
[] 对代码等消息类型的格式化美化处理
7171

72-
[] 界面多语言
72+
[] 界面多语言
7373

74-
[] 界面主题
74+
[] 界面主题
7575

7676
[] More...
7777

@@ -174,7 +174,7 @@ version: '3'
174174

175175
services:
176176
app:
177-
image: chenzhaoyu94/chatgpt-web # 总是使用latest,更新时重新pull该tag镜像即可
177+
image: chenzhaoyu94/chatgpt-web # 总是使用 latest ,更新时重新 pull 该 tag 镜像即可
178178
ports:
179179
- 3002:3002
180180
environment:

docker-compose/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ services:
1818
build: nginx
1919
image: chatgpt/nginx
2020
ports:
21-
- "80:80"
21+
- '80:80'
2222
expose:
23-
- "80"
23+
- '80'
2424
volumes:
2525
- ./nginx/html/:/etc/nginx/html/
2626
links:

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chatgpt-web",
3-
"version": "2.9.0",
3+
"version": "2.9.1",
44
"private": false,
55
"description": "ChatGPT Web",
66
"author": "ChenZhaoYu <[email protected]>",
@@ -27,34 +27,34 @@
2727
"highlight.js": "^11.7.0",
2828
"marked": "^4.2.12",
2929
"naive-ui": "^2.34.3",
30-
"pinia": "^2.0.30",
30+
"pinia": "^2.0.32",
3131
"vue": "^3.2.47",
32+
"vue-i18n": "^9.2.2",
3233
"vue-router": "^4.1.6"
3334
},
3435
"devDependencies": {
35-
"@antfu/eslint-config": "^0.35.2",
36+
"@antfu/eslint-config": "^0.35.3",
3637
"@commitlint/cli": "^17.4.4",
3738
"@commitlint/config-conventional": "^17.4.4",
3839
"@iconify/vue": "^4.1.0",
3940
"@types/crypto-js": "^4.1.1",
4041
"@types/marked": "^4.0.8",
41-
"@types/node": "^18.14.0",
42-
"@types/web-bluetooth": "^0.0.16",
42+
"@types/node": "^18.14.4",
4343
"@vitejs/plugin-vue": "^4.0.0",
4444
"autoprefixer": "^10.4.13",
45-
"axios": "^1.3.3",
45+
"axios": "^1.3.4",
4646
"crypto-js": "^4.1.1",
47-
"eslint": "^8.34.0",
47+
"eslint": "^8.35.0",
4848
"husky": "^8.0.3",
4949
"less": "^4.1.3",
5050
"lint-staged": "^13.1.2",
5151
"npm-run-all": "^4.1.5",
5252
"postcss": "^8.4.21",
53-
"rimraf": "^4.1.2",
53+
"rimraf": "^4.1.3",
5454
"tailwindcss": "^3.2.7",
5555
"typescript": "~4.9.5",
56-
"vite": "^4.1.2",
57-
"vue-tsc": "^1.1.4"
56+
"vite": "^4.1.4",
57+
"vue-tsc": "^1.2.0"
5858
},
5959
"lint-staged": {
6060
"*.{ts,tsx,vue}": [

0 commit comments

Comments
 (0)