Quellcode durchsuchen

doc: update screenshots

Yidadaa vor 2 Jahren
Ursprung
Commit
7da0cc6551
11 geänderte Dateien mit 33 neuen und 23 gelöschten Zeilen
  1. 4 1
      .gitignore
  2. 0 4
      .vscode/settings.json
  3. 28 17
      README.md
  4. 1 1
      app/utils.ts
  5. BIN
      docs/images/cover.png
  6. 0 0
      docs/images/icon.svg
  7. BIN
      docs/images/more.png
  8. BIN
      docs/images/settings.png
  9. BIN
      static/cover.png
  10. BIN
      static/more.png
  11. BIN
      static/settings.png

+ 4 - 1
.gitignore

@@ -36,4 +36,7 @@ yarn-error.log*
 next-env.d.ts
 dev
 
-public/prompts.json
+public/prompts.json
+
+.vscode
+.idea

+ 0 - 4
.vscode/settings.json

@@ -1,4 +0,0 @@
-{
-  "typescript.tsdk": "node_modules\\typescript\\lib",
-  "typescript.enablePromptUseWorkspaceTsdk": true
-}

+ 28 - 17
README.md

@@ -1,5 +1,5 @@
 <div align="center">
-<img src="./static/icon.svg" alt="icon"/>
+<img src="./docs/images/icon.svg" alt="icon"/>
 
 <h1 align="center">ChatGPT Next Web</h1>
 
@@ -13,45 +13,56 @@ One-Click to deploy your own ChatGPT web UI.
 
 [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/Yidadaa/ChatGPT-Next-Web)
 
-![cover](./static/cover.png)
+![cover](./docs/images/cover.png)
 
 </div>
 
 ## Features
 
 - **Deploy for free with one-click** on Vercel in under 1 minute
-- Responsive design, and dark mode
+- Responsive design, dark mode and PWA
 - Fast first screen loading speed (~100kb)
 - Awesome prompts powered by [awesome-chatgpt-prompts-zh](https://github.com/PlexPt/awesome-chatgpt-prompts-zh) and [awesome-chatgpt-prompts](https://github.com/f/awesome-chatgpt-prompts)
 - Automatically compresses chat history to support long conversations while also saving your tokens
 - One-click export all chat history with full Markdown support
 - I18n supported
 
+## Roadmap
+
+- [x] System Prompt: pin a user defined prompt as system prompt [#138](https://github.com/Yidadaa/ChatGPT-Next-Web/issues/138)
+- [ ] User Prompt: user can edit and save custom prompts to prompt list
+- [ ] Desktop App with tauri
+- [ ] Self-host Model: support llama, alpaca, ChatGLM, BELLE etc.
+- [ ] Plugins: support network search, caculator, any other apis etc. [#165](https://github.com/Yidadaa/ChatGPT-Next-Web/issues/165)
+
+### Not in Plan
+
+- User login, accounts, cloud sync
+- UI text customize
+
 ## 主要功能
 
 - 在 1 分钟内使用 Vercel **免费一键部署**
-- 精心设计的 UI,响应式设计,支持深色模式
+- 精心设计的 UI,响应式设计,支持深色模式,支持 PWA
 - 极快的首屏加载速度(~100kb)
 - 海量的内置 prompt 列表,来自[中文](https://github.com/PlexPt/awesome-chatgpt-prompts-zh)和[英文](https://github.com/f/awesome-chatgpt-prompts)
 - 自动压缩上下文聊天记录,在节省 Token 的同时支持超长对话
 - 一键导出聊天记录,完整的 Markdown 支持
 - 拥有自己的域名?好上加好,绑定后即可在任何地方**无障碍**快速访问
 
+## 开发计划 
+- [x] 为每个对话设置系统 Prompt [#138](https://github.com/Yidadaa/ChatGPT-Next-Web/issues/138)
+- [ ] 允许用户自行编辑内置 Prompt 列表
+- [ ] 使用 tauri 打包桌面应用
+- [ ] 支持自部署的大语言模型
+- [ ] 插件机制,支持联网搜索、计算器、调用其他平台 api [#165](https://github.com/Yidadaa/ChatGPT-Next-Web/issues/165)
 
-## 开发计划 Roadmap
-
-- [x] System Prompt: pin a user defined prompt as system prompt 为每个对话设置系统 Prompt [#138](https://github.com/Yidadaa/ChatGPT-Next-Web/issues/138)
-- [ ] User Prompt: user can edit and save custom prompts to prompt list 允许用户自行编辑内置 Prompt 列表
-- [ ] Self-host Model: support llama, alpaca, ChatGLM, BELLE etc. 支持自部署的大语言模型
-- [ ] Plugins: support network search, caculator, any other apis etc. 插件机制,支持联网搜索、计算器、调用其他平台 api [#165](https://github.com/Yidadaa/ChatGPT-Next-Web/issues/165)
-
-### 不会开发的功能 Not in Plan
-
-- User login, accounts, cloud sync
-- UI text customize
+### 不会开发的功能
 - 界面文字自定义
 - 用户登录、账号管理、消息云同步
 
+
+
 ## Get Started
 > [简体中文 > 如何开始使用](./README_CN.md#开始使用)
 
@@ -157,9 +168,9 @@ bash <(curl -s https://raw.githubusercontent.com/Yidadaa/ChatGPT-Next-Web/main/s
 ```
 ## Screenshots
 
-![Settings](./static/settings.png)
+![Settings](./docs/images/settings.png)
 
-![More](./static/more.png)
+![More](./docs/images/more.png)
 
 
 ## Special Thanks

+ 1 - 1
app/utils.ts

@@ -3,7 +3,7 @@ import { showToast } from "./components/ui-lib";
 import Locale from "./locales";
 
 export function trimTopic(topic: string) {
-  return topic.replace(/[,。!?、,.!?]*$/, "");
+  return topic.replace(/[,。!?”“"、,.!?]*$/, "");
 }
 
 export async function copyToClipboard(text: string) {

BIN
docs/images/cover.png


+ 0 - 0
static/icon.svg → docs/images/icon.svg


BIN
docs/images/more.png


BIN
docs/images/settings.png


BIN
static/cover.png


BIN
static/more.png


BIN
static/settings.png