Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit fda6c6b

Browse files
authored
chore: v2.5.0 整体优化 (#70)
* feat: locale language * refactor: 页面暂存 * feat: 逻辑判断 * feat: 分组消息 * feat: 实验场 * feat: 重新请求结果 * feat: 基础问答逻辑和重新询问 * feat: 上下文消息删除确认 * feat: 处理类型报错 * chore: 更新 deps 和移除 i18n * feat: 路由页面切换终止请求 * feat: let me think * feat: 信息更新代码高亮匹配 * feat: 加载时添加光标 * feat: 错误提示 * feat: 历史记录删除确认 * fix: 侧边栏高度不正确的问题 * chore: version 2.5.0 * chore: update deps
1 parent 6216d84 commit fda6c6b

File tree

35 files changed

+1098
-688
lines changed

35 files changed

+1098
-688
lines changed

.vscode/settings.json

+2
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@
2929
"esno",
3030
"GPTAPI",
3131
"iconify",
32+
"logprobs",
3233
"nodata",
3334
"OPENAI",
3435
"pinia",
36+
"Popconfirm",
3537
"rushstack",
3638
"Sider",
3739
"tailwindcss",

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## v2.5.0
2+
3+
`2023-02-20`
4+
5+
### Feature
6+
- 会话 `loading` 现在显示为光标动画
7+
- 会话现在可以再次生成回复
8+
- 会话异常可以再次进行请求
9+
- 所有删除选项添加确认操作
10+
11+
### Enhancement
12+
- 调整 `chat` 为路由页面而不是组件形式
13+
- 更新依赖至最新
14+
- 调整移动端体验
15+
16+
### BugFix
17+
- 修复移动端左侧菜单显示不完整的问题
18+
119
## v2.4.1
220

321
`2023-02-18`

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chatgpt-web",
3-
"version": "2.4.1",
3+
"version": "2.5.0",
44
"private": false,
55
"description": "ChatGPT Web",
66
"author": "ChenZhaoYu <[email protected]>",
@@ -23,7 +23,7 @@
2323
"common:prepare": "husky install"
2424
},
2525
"dependencies": {
26-
"@vueuse/core": "^9.12.0",
26+
"@vueuse/core": "^9.13.0",
2727
"highlight.js": "^11.7.0",
2828
"naive-ui": "^2.34.3",
2929
"pinia": "^2.0.30",
@@ -32,11 +32,11 @@
3232
},
3333
"devDependencies": {
3434
"@antfu/eslint-config": "^0.35.2",
35-
"@commitlint/cli": "^17.4.3",
36-
"@commitlint/config-conventional": "^17.4.3",
35+
"@commitlint/cli": "^17.4.4",
36+
"@commitlint/config-conventional": "^17.4.4",
3737
"@iconify/vue": "^4.1.0",
3838
"@types/crypto-js": "^4.1.1",
39-
"@types/node": "^18.13.0",
39+
"@types/node": "^18.14.0",
4040
"@types/web-bluetooth": "^0.0.16",
4141
"@vitejs/plugin-vue": "^4.0.0",
4242
"autoprefixer": "^10.4.13",
@@ -49,10 +49,10 @@
4949
"npm-run-all": "^4.1.5",
5050
"postcss": "^8.4.21",
5151
"rimraf": "^4.1.2",
52-
"tailwindcss": "^3.2.6",
52+
"tailwindcss": "^3.2.7",
5353
"typescript": "~4.9.5",
54-
"vite": "^4.1.1",
55-
"vue-tsc": "^1.1.0"
54+
"vite": "^4.1.2",
55+
"vue-tsc": "^1.1.4"
5656
},
5757
"lint-staged": {
5858
"*.{ts,tsx,vue}": [

0 commit comments

Comments
 (0)