feat: 更新版本

This commit is contained in:
lrhh123
2024-08-28 18:57:29 +08:00
parent 6957245b17
commit 7eac26397c
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -67,7 +67,7 @@
## 下载地址
<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>
<a href="https://github.com/cs-lazy-tools/ChatGPT-On-CS/releases/download/v1.4.3/1.4.3.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.2",
"version": "1.4.3",
"keywords": [
"electron",
"boilerplate",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "chatgpt-on-cs",
"version": "1.4.2",
"version": "1.4.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "chatgpt-on-cs",
"version": "1.4.2",
"version": "1.4.3",
"description": "多平台智能客服,允许使用 ChatGPT 作为客服机器人",
"license": "AGPL-3.0",
"author": {
+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.2',
defaultValue: '1.4.3',
allowNull: true,
});
}
@@ -135,7 +135,7 @@ export function initPlugin(sequelize: Sequelize) {
},
version: {
type: DataTypes.STRING(255),
defaultValue: '1.4.2',
defaultValue: '1.4.3',
allowNull: true,
},
source: {