This commit is contained in:
lrhh123
2024-08-21 20:48:49 +08:00
parent 7f68a42e7e
commit 6957245b17
6 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -67,7 +67,7 @@
## 下载地址
<a href="https://github.com/cs-lazy-tools/ChatGPT-On-CS/releases/download/v1.4.1/1.4.1.exe" style="display: inline-block; background-color: #008CBA; color: white; padding: 10px 20px; text-align: center; text-decoration: none; font-weight: bold; border-radius: 5px; margin: 4px 2px; cursor: pointer;">点击下载</a>
<a href="https://github.com/cs-lazy-tools/ChatGPT-On-CS/releases/download/v1.4.2/1.4.2.exe" style="display: inline-block; background-color: #008CBA; color: white; padding: 10px 20px; text-align: center; text-decoration: none; font-weight: bold; border-radius: 5px; margin: 4px 2px; cursor: pointer;">点击下载</a>
如果网络环境导致下载不了,可以使用下面的地址下载:
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "chatgpt-on-cs",
"description": "多平台智能客服,允许使用 ChatGPT 作为客服机器人",
"version": "1.4.1",
"version": "1.4.2",
"keywords": [
"electron",
"boilerplate",
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "chatgpt-on-cs",
"version": "1.4.1",
"version": "1.4.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
@@ -606,8 +606,8 @@
}
},
"node_modules/minipass-fetch": {
"version": "1.4.1",
"resolved": "https://registry.npmmirror.com/minipass-fetch/-/minipass-fetch-1.4.1.tgz",
"version": "1.4.2",
"resolved": "https://registry.npmmirror.com/minipass-fetch/-/minipass-fetch-1.4.2.tgz",
"integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==",
"optional": true,
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "chatgpt-on-cs",
"version": "1.4.1",
"version": "1.4.2",
"description": "多平台智能客服,允许使用 ChatGPT 作为客服机器人",
"license": "AGPL-3.0",
"author": {
+2 -2
View File
@@ -497,7 +497,7 @@ packages:
lru-cache: 6.0.0
minipass: 3.3.6
minipass-collect: 1.0.2
minipass-fetch: 1.4.1
minipass-fetch: 1.4.2
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
negotiator: 0.6.3
@@ -536,7 +536,7 @@ packages:
dev: false
optional: true
/minipass-fetch@1.4.1:
/minipass-fetch@1.4.2:
resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==}
engines: {node: '>=8'}
requiresBuild: true
+2 -2
View File
@@ -93,7 +93,7 @@ export async function checkAndAddFields(sequelize: Sequelize) {
// 再更新字段的默认版本号
await sequelize.getQueryInterface().changeColumn('plugins', 'version', {
type: DataTypes.STRING(255),
defaultValue: '1.4.1',
defaultValue: '1.4.2',
allowNull: true,
});
}
@@ -135,7 +135,7 @@ export function initPlugin(sequelize: Sequelize) {
},
version: {
type: DataTypes.STRING(255),
defaultValue: '1.4.1',
defaultValue: '1.4.2',
allowNull: true,
},
source: {