From ebdeebceea8be527dd26c8bccea754c50ca499a7 Mon Sep 17 00:00:00 2001 From: YanceyOfficial Date: Fri, 18 Oct 2024 16:33:42 +0800 Subject: [PATCH 1/3] ci: update ci --- .github/workflows/cross-platform-release.yml | 2 ++ src-tauri/tauri.conf.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cross-platform-release.yml b/.github/workflows/cross-platform-release.yml index c9351eee..0f953ba1 100644 --- a/.github/workflows/cross-platform-release.yml +++ b/.github/workflows/cross-platform-release.yml @@ -59,6 +59,8 @@ jobs: - uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} + TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} with: tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. releaseName: 'App v__VERSION__' diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 0f64cb6e..3bf9cccb 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -23,7 +23,7 @@ "identifier": "app.yancey.hyperchat", "plugins": { "updater": { - "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEQxREEzQTNDNjY5MjJENDcKUldSSExaSm1QRHJhMFFwQ3I5dWI4ZmJKNG9CSG1kVE90M3pHajZ5TWhCMUhaejJBbDNWNFVZbkgK", + "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEVDNTVCNDc3NUE3MjVERTAKUldUZ1hYSmFkN1JWN1Bya1FuMDM1R2xOZU9KMXR3ZURCb2pkVXFveTJDcEJMTkUxZWtBT0phY3YK", "endpoints": [ "https://faas.yancey.app/api/updater/{{target}}/{{arch}}/{{current_version}}?code=PjS1zF7Vc1QMrJ80C3xJS1tqkGqH-pT4oNlPfkFBYt0YAzFupnB5tA==" ], From a20c5bb3bc3c1672c55a94f090c8c11564c8521f Mon Sep 17 00:00:00 2001 From: YanceyOfficial Date: Fri, 18 Oct 2024 17:19:47 +0800 Subject: [PATCH 2/3] fix: delete image icon isn't shown in dark mode --- src/components/ChatBox/InputBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ChatBox/InputBox.tsx b/src/components/ChatBox/InputBox.tsx index 72ade82a..c38de5cc 100644 --- a/src/components/ChatBox/InputBox.tsx +++ b/src/components/ChatBox/InputBox.tsx @@ -195,7 +195,7 @@ const InputBox: FC = () => {
deleteBase64Image(idx)} /> From aae95dd28cd40443ce6441c3965db38f44019fc8 Mon Sep 17 00:00:00 2001 From: YanceyOfficial Date: Fri, 18 Oct 2024 17:21:30 +0800 Subject: [PATCH 3/3] chore: update version --- CHANGELOG.md | 6 ++++++ package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0718c4d..b8d06667 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [2.0.1](https://github.com/HyperChatBot/hyperchat/compare/v1.0.5...v2.0.1) (2024-10-18) + +### Bug Fixes + +- delete image icon isn't shown in dark mode ([a20c5bb](https://github.com/HyperChatBot/hyperchat/commit/a20c5bb3bc3c1672c55a94f090c8c11564c8521f)) + ## [2.0.0](https://github.com/HyperChatBot/hyperchat/compare/v1.0.5...v2.0.0) (2024-10-18) ### Features diff --git a/package.json b/package.json index 60d51ef8..0e221bae 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hyperchat", "private": true, - "version": "2.0.0", + "version": "2.0.1", "type": "module", "description": "ChatGPT AI Bot.", "scripts": { diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 7fea0968..cd39588d 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1367,7 +1367,7 @@ dependencies = [ [[package]] name = "hyperchat" -version = "2.0.0" +version = "2.0.1" dependencies = [ "serde", "serde_json", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 03387b90..6ab0e46d 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperchat" -version = "2.0.0" +version = "2.0.1" description = "ChatGPT AI Bot." authors = ["Yancey Leo"] license = "MIT" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 96548650..6d6c692f 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -19,7 +19,7 @@ }, "productName": "Hyper Chat", "mainBinaryName": "Hyper Chat", - "version": "2.0.0", + "version": "2.0.1", "identifier": "app.yancey.hyperchat", "plugins": { "updater": {