diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 71c096913..552cd732d 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -140,7 +140,7 @@ jobs:
yarn install
yarn run build:web:prod --app_version=${{ steps.chat2db_version.outputs.substring }}
cp -r dist ../chat2db-server/chat2db-server-start/src/main/resources/static/front
- cp -r dist/index.html ../chat2db-server/chat2db-server-start/src/main/resources/thymeleaf
+ cp -r dist/index.html ../chat2db-server/chat2db-server-start/src/main/resources/thymeleaf/
# 编译服务端java版本
- name: Build Java
diff --git a/.github/workflows/release_test.yml b/.github/workflows/release_test.yml
index 2f0d40be9..8d6d78f39 100644
--- a/.github/workflows/release_test.yml
+++ b/.github/workflows/release_test.yml
@@ -134,7 +134,7 @@ jobs:
yarn install
yarn run build:web:prod --app_version=99.0.${{ github.run_id }} --app_port=10822
cp -r dist ../chat2db-server/chat2db-server-start/src/main/resources/static/front
- cp -r dist/index.html ../chat2db-server/chat2db-server-start/src/main/resources/thymeleaf
+ cp -r dist/index.html ../chat2db-server/chat2db-server-start/src/main/resources/thymeleaf/
# 编译服务端java版本
- name: Build Java
diff --git a/.gitignore b/.gitignore
index 9109cb447..12d2ab65f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,6 +18,7 @@ package-lock.json
### Mac
.DS_Store
/chat2db-server/ali-dbhub-server-start/src/main/resources/static/front/*
+/chat2db-server/ali-dbhub-server-start/src/main/resources/thymeleaf
### docker 数据不用上传
/docker/redis/data/*
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7b1573ff2..04b350c6a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,18 @@
+# 3.0.1
+`2023-10-19`
+
+**Changelog**
+- ⚡️【Optimize】Search result scroll bar
+- ⚡️【Fixed】Oracle update result data bug
+
+**更新日志**
+- ⚡️【优化】查询结果滚动条
+- 🐞【修复】Oracle更新结果数据错误
+
# 3.0.0
`2023-10-17`
-## Changelog
+**Changelog**
- 🔥【New Features】Support for team collaboration mode
- 🔥【New Features】Support for visual table structure creation, editing, and deletion
- 🔥【New Features】Support for editing, adding, and deleting query data results
@@ -18,7 +29,8 @@
- ⚡️【Optimize】`Cmd/Ctrl + R` Run SQL, `Cmd/Ctrl + Shift + R` Refresh Page
- 🐞【Fixed】Table operation columns are overridden by table comments
- 🐞【Fixed】The last Tab in the query result cannot be closed
-## 更新日志
+
+**更新日志**
- 🔥【新功能】支持团队协作模式
- 🔥【新功能】支持可视化表结构新增、编辑、删除
- 🔥【新功能】支持查询数据结果编辑、新增、删除
diff --git a/README.md b/README.md
index d1dcf1327..705e16965 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,12 @@ An intelligent and versatile general-purpose SQL client and reporting tool for d
Languages: English | [中文](README_CN.md)
+Official website:[Chat2DB](https://sqlgpt.cn/en)
+
+
+ If you find Chat2DB helpful, please helpClick ⭐ Star and Fork in the top right corner, and your support is the biggest motivation for Chat2DB to get bette
+
+
## DEMO
@@ -49,7 +55,7 @@ https://github.com/chat2db/Chat2DB/assets/22975773/79e9dded-375b-44cf-9979-bb757
[Downloading installation package from GitHub](https://github.com/chat2db/Chat2DB/releases)
-[Downloading installation package from official website](https://sqlgpt.cn/docs/guides/download)
+[Downloading installation package from official website](https://sqlgpt.cn)
@@ -61,7 +67,7 @@ Chat2DB supports connecting to the following databases:
- H2
- Oracle
- SQLServer
-- SQLLite
+- SQLite
- MariaDB
- ClickHouseare
- DM
@@ -94,25 +100,7 @@ Redis and MongoDB are partially supported , Hbase、Elasticsearch、openGauss、
## 🔥 AI Configuration
-### CONFIGURE OPENAI
-
-Option 1 (recommended): To use the ChatSql function of OPENAI, two conditions must be met:
-
-- You need an OPENAI_API_KEY.
-- The client's network can connect to the OPENAI website, and for users in China, a VPN is required. Note: If the local VPN is not fully effective, the network connectivity can be ensured by setting the network proxy HOST and PORT in the client.
-
-
-
-
-Option 2 (recommended): We provide a unified proxy service.
-
-- No OPENAI_API_KEY is required.
-- No proxy or VPN is required, as long as the network is connected.
-
-To facilitate users' quick use of AI capabilities, you can scan the QR code below to follow our WeChat public account and apply for our custom API_KEY.
-
-
-
+### Use Chat2DB AI to get started
### CONFIGURE CUSTOM AI
@@ -147,7 +135,7 @@ Note: If local debugging is required
- git clone to local
```bash
-$ git clone git@github.com:alibaba/Chat2DB.git
+$ git clone git@github.com:chat2db/Chat2DB.git
```
- Front-End debug
@@ -169,10 +157,17 @@ $ cd chat2db-server/chat2db-server-start/target/
$ java -jar -Dloader.path=./lib -Dchatgpt.apiKey=xxxxx chat2db-server-start.jar #java 17 or later must be installed, To launch the chat application, you need to enter the ChatGPT key for the chatgpt.apiKey. Without entering it, you won't be able to use the AIGC function.
```
+- If you need to deploy independently
+
+```bash
+$ npm run build:web:prod / cp -r dist ../chat2db-server/chat2db-server-start/src/main/resources/static/front / cp -r dist/index.html ../chat2db-server/chat2db-server-start/src/main/resources/thymeleaf
+# Repackage the back-end services
+```
+
## 📑 Documentation
-- Official website document
-- Issue
+- Official website document
+- Issue
## Stargazers
diff --git a/README_CN.md b/README_CN.md
index ef901439f..7502121cd 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -16,9 +16,13 @@