Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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": "hyperchat",
"private": true,
"version": "2.0.0",
"version": "2.0.1",
"type": "module",
"description": "ChatGPT AI Bot.",
"scripts": {
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
@@ -1,6 +1,6 @@
[package]
name = "hyperchat"
version = "2.0.0"
version = "2.0.1"
description = "ChatGPT AI Bot."
authors = ["Yancey Leo"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"productName": "Hyper Chat",
"mainBinaryName": "Hyper Chat",
"version": "2.0.0",
"version": "2.0.1",
"identifier": "app.yancey.hyperchat",
"plugins": {
"updater": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ChatBox/InputBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ const InputBox: FC = () => {
<section className="group relative" key={idx}>
<span className="absolute -right-2 -top-2 hidden rounded-full bg-white group-hover:block">
<SolidCloseIcon
className="h-6 w-6 text-black dark:text-white"
className="h-6 w-6 text-black"
onClick={() => deleteBase64Image(idx)}
/>
</span>
Expand Down