Skip to content

Commit

Permalink
1111111111
Browse files Browse the repository at this point in the history
  • Loading branch information
lrhh123 committed Jul 15, 2024
1 parent 21b2dd5 commit e7fc7b6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@
- Move automated dependency PRs to `next` ([#2554](https://github.com/electron-react-boilerplate/electron-react-boilerplate/pull/2554))
- Bump dependencies to patch semver

# 1.3.0
# 1.3.1

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

# 1.3.0
# 1.3.1

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

# 1.3.0
# 1.3.1

- Fix #2402
- Simplify configs (https://github.com/electron-react-boilerplate/electron-react-boilerplate/pull/2406)
Expand Down
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.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>
<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>

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

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.3.0",
"version": "1.3.1",
"keywords": [
"electron",
"boilerplate",
Expand Down
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.3.0",
"version": "1.3.1",
"description": "多平台智能客服,允许使用 ChatGPT 作为客服机器人",
"license": "AGPL-3.0",
"author": {
Expand Down
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.3.0',
defaultValue: '1.3.1',
allowNull: true,
});
}
Expand Down Expand Up @@ -135,7 +135,7 @@ export function initPlugin(sequelize: Sequelize) {
},
version: {
type: DataTypes.STRING(255),
defaultValue: '1.3.0',
defaultValue: '1.3.1',
allowNull: true,
},
source: {
Expand Down

0 comments on commit e7fc7b6

Please sign in to comment.