Skip to content

Commit e7fc7b6

Browse files
author
lrhh123
committed
1111111111
1 parent 21b2dd5 commit e7fc7b6

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@
4545
- Move automated dependency PRs to `next` ([#2554](https://github.com/electron-react-boilerplate/electron-react-boilerplate/pull/2554))
4646
- Bump dependencies to patch semver
4747

48-
# 1.3.0
48+
# 1.3.1
4949

5050
- Fixes E2E tests ([#2516](https://github.com/electron-react-boilerplate/electron-react-boilerplate/pull/2516))
5151
- Fixes preload entrypoint ([#2503](https://github.com/electron-react-boilerplate/electron-react-boilerplate/pull/2503))
5252
- Downgrade to `electron@8`
5353
- Bump dependencies to latest semver
5454

55-
# 1.3.0
55+
# 1.3.1
5656

5757
- Migrate to redux toolkit
5858
- Lazy load routes with react suspense
@@ -65,7 +65,7 @@
6565
- Add experimental support for vscode debugging
6666
- Revert https://github.com/electron-react-boilerplate/electron-react-boilerplate/pull/2365 as default for users, provide as opt in option
6767

68-
# 1.3.0
68+
# 1.3.1
6969

7070
- Fix #2402
7171
- Simplify configs (https://github.com/electron-react-boilerplate/electron-react-boilerplate/pull/2406)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
## 下载地址
6969

70-
<a href="https://github.com/cs-lazy-tools/ChatGPT-On-CS/releases/download/v1.3.0/1.3.0.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>
70+
<a href="https://github.com/cs-lazy-tools/ChatGPT-On-CS/releases/download/v1.3.1/1.3.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>
7171

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "chatgpt-on-cs",
33
"description": "多平台智能客服,允许使用 ChatGPT 作为客服机器人",
4-
"version": "1.3.0",
4+
"version": "1.3.1",
55
"keywords": [
66
"electron",
77
"boilerplate",

release/app/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chatgpt-on-cs",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "多平台智能客服,允许使用 ChatGPT 作为客服机器人",
55
"license": "AGPL-3.0",
66
"author": {

src/main/backend/entities/plugin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export async function checkAndAddFields(sequelize: Sequelize) {
9393
// 再更新字段的默认版本号
9494
await sequelize.getQueryInterface().changeColumn('plugins', 'version', {
9595
type: DataTypes.STRING(255),
96-
defaultValue: '1.3.0',
96+
defaultValue: '1.3.1',
9797
allowNull: true,
9898
});
9999
}
@@ -135,7 +135,7 @@ export function initPlugin(sequelize: Sequelize) {
135135
},
136136
version: {
137137
type: DataTypes.STRING(255),
138-
defaultValue: '1.3.0',
138+
defaultValue: '1.3.1',
139139
allowNull: true,
140140
},
141141
source: {

0 commit comments

Comments
 (0)