Skip to content

Commit

Permalink
Merge branch 'release/1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mxismean committed Feb 9, 2023
2 parents 51dd23f + 331cd90 commit a32d60c
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@

## Released

## [1.0.1] - 2022-02-09

### Added

- 更新 readme,添加应用预览图 @mxismean

## [1.0.0] - 2022-02-08

### Added
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# ChatGPT App

国内用户使用:记得开全局代理
国内用户使用:记得开全局代理

<img width="1087" alt="image" src="https://user-images.githubusercontent.com/44690729/217474207-2bbb69a7-bcd6-46ae-8bde-323725b47f44.png">

<img width="1087" alt="image" src="https://user-images.githubusercontent.com/44690729/217474255-3600ea45-7e26-41c2-8346-9eca1da483d6.png">

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "chatgpt-app",
"private": true,
"version": "1.0.0",
"version": "1.0.1",
"type": "module",
"author": {
"name": "mxismean",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

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

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "ChatGPT"
repository = "https://github.com/mxismean/chatgpt-app"
rust-version = "1.59"
version = "1.0.0"
version = "1.0.1"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
9 changes: 5 additions & 4 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "chatgpt-app",
"version": "1.0.0"
"version": "1.0.1"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -69,11 +69,12 @@
},
"windows": [
{
"fullscreen": false,
"title": "ChatGPT",
"width": 800,
"height": 600,
"fullscreen": false,
"resizable": true,
"title": "ChatGPT",
"width": 800
"theme": "Dark"
}
]
}
Expand Down
20 changes: 16 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,22 @@
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"lib": [
"ESNext",
"DOM"
],
"skipLibCheck": true,
"noEmit": true
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
}
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}

0 comments on commit a32d60c

Please sign in to comment.