Skip to content

Commit

Permalink
feat: 更新版本
Browse files Browse the repository at this point in the history
  • Loading branch information
lrhh123 committed Sep 7, 2024
1 parent fd8b2c8 commit 264f0b0
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

## 下载地址

<a href="https://github.com/cs-lazy-tools/ChatGPT-On-CS/releases/download/v1.4.4/1.4.4.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.5/1.4.5.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>

如果网络环境导致下载不了,可以使用下面的地址下载:

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "chatgpt-on-cs",
"description": "多平台智能客服,允许使用 ChatGPT 作为客服机器人",
"version": "1.4.4",
"version": "1.4.5",
"keywords": [
"electron",
"boilerplate",
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion release/app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chatgpt-on-cs",
"version": "1.4.4",
"version": "1.4.5",
"description": "多平台智能客服,允许使用 ChatGPT 作为客服机器人",
"license": "AGPL-3.0",
"author": {
Expand Down
6 changes: 3 additions & 3 deletions release/app/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/main/backend/entities/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export async function checkAndAddFields(sequelize: Sequelize) {
// 再更新字段的默认版本号
await sequelize.getQueryInterface().changeColumn('plugins', 'version', {
type: DataTypes.STRING(255),
defaultValue: '1.4.4',
defaultValue: '1.4.5',
allowNull: true,
});
}
Expand Down Expand Up @@ -135,7 +135,7 @@ export function initPlugin(sequelize: Sequelize) {
},
version: {
type: DataTypes.STRING(255),
defaultValue: '1.4.4',
defaultValue: '1.4.5',
allowNull: true,
},
source: {
Expand Down

0 comments on commit 264f0b0

Please sign in to comment.