Skip to content

Commit

Permalink
doc: update domain
Browse files Browse the repository at this point in the history
  • Loading branch information
Bin-Huang committed Jun 7, 2023
1 parent 9fa2f53 commit 0e79023
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

### 从官方网站下载

请访问 **[chatboxapp.xyz](https://chatboxapp.xyz/)** 下载最新版本。
请访问 **[chatboxai.app](https://chatboxai.app/)** 下载最新版本。

### 从 Github Releases 下载

Expand Down Expand Up @@ -107,7 +107,7 @@ paru -S chatbox-bin
- [x] 代码块的复制按钮
- [x] 停止生成的按钮
- [x] 标签页的拖拽排序
- [x] [网页版本](https://web.chatboxapp.xyz)
- [x] [网页版本](https://web.chatboxai.app)
- [x] 兼容 Azure OpenAI API
- [ ] 更好的 prompt 设置
- [ ] Prompt Library
Expand Down Expand Up @@ -138,8 +138,8 @@ paru -S chatbox-bin

作为一个开源项目,我非常感激Chatbox背后的赞助商的支持。他们的协助对我继续开发和改进这个开源软件至关重要。

<a href="https://chatboxapp.xyz/sponsor_redirect/eolink_gh">
<img style="width: 600px" src="https://chatboxapp.xyz/sponsor_redirect/eolink_resource_web?query=1">
<a href="https://chatboxai.app/sponsor_redirect/eolink_gh">
<img style="width: 600px" src="https://chatboxai.app/sponsor_redirect/eolink_resource_web?query=1">
</a>


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

### Download from the official website

Visit **[chatboxapp.xyz](https://chatboxapp.xyz/)** to download the latest version.
Visit **[chatboxai.app](https://chatboxai.app/)** to download the latest version.

### Download from GitHub Releases

Expand Down Expand Up @@ -101,7 +101,7 @@ At first, I didn't know that it would be so popular. I listened to the feedback
- [x] Copy button for code blocks
- [x] Stop button for AI message generation
- [x] Drag-and-drop sorting of tabs
- [x] [Web version](https://web.chatboxapp.xyz)
- [x] [Web version](https://web.chatboxai.app)
- [x] Azure OpenAI API compatibility
- [x] Improved prompt settings
- [x] Prompt Library
Expand All @@ -128,8 +128,8 @@ Any form of contribution is welcome, including but not limited to:

As an open-source project, I am extremely grateful for the support of the sponsors behind Chatbox. Their assistance has been essential in allowing me to continue developing and improving the open-source software.

<a href="https://chatboxapp.xyz/sponsor_redirect/eolink_gh">
<img style="width: 600px" src="https://chatboxapp.xyz/sponsor_redirect/eolink_resource_web?query=1">
<a href="https://chatboxai.app/sponsor_redirect/eolink_gh">
<img style="width: 600px" src="https://chatboxai.app/sponsor_redirect/eolink_resource_web?query=1">
</a>


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 @@ -87,7 +87,7 @@
"updater": {
"active": true,
"endpoints": [
"https://releases.chatboxapp.xyz/chatbox/{{target}}/{{current_version}}",
"https://releases.chatboxai.app/chatbox/{{target}}/{{current_version}}",
"https://gist.githubusercontent.com/Bin-Huang/cf0b7684e28b30d760ba02417bbac916/raw/chatbox.releases.json",
"https://gist.githubusercontent.com/Bin-Huang/cf0b7684e28b30d760ba02417bbac916/raw"
],
Expand Down
14 changes: 7 additions & 7 deletions src/AboutWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,41 +37,41 @@ export default function AboutWindow(props: Props) {
<Trans
i18nKey="About Message"
values={{ Author: "Benn Huang" }}
components={[<a href={`https://chatboxapp.xyz/redirect_app/author/${props.lang}`} target='_blank'></a>]}
components={[<a href={`https://chatboxai.app/redirect_app/author/${props.lang}`} target='_blank'></a>]}
/>
</span>
</Box>
<Stack spacing={2} direction="row" sx={{ justifyContent: 'center', marginTop: '10px' }}>
<Badge color="primary" variant="dot" invisible={false}>
<Button variant="outlined"
onClick={() => api.openLink(`https://chatboxapp.xyz/redirect_app/check_update/${props.lang}`)}
onClick={() => api.openLink(`https://chatboxai.app/redirect_app/check_update/${props.lang}`)}
>
{t('Check Update')}
</Button>
</Badge>
<Button variant="outlined"
onClick={() => api.openLink(`https://chatboxapp.xyz/redirect_app/homepage/${props.lang}`)}
onClick={() => api.openLink(`https://chatboxai.app/redirect_app/homepage/${props.lang}`)}
>
{t('Homepage')}
</Button>
<Button variant="outlined"
onClick={() => api.openLink(`https://chatboxapp.xyz/redirect_app/feedback/${props.lang}`)}
onClick={() => api.openLink(`https://chatboxai.app/redirect_app/feedback/${props.lang}`)}
>
{t('Feedback')}
</Button>
<Button variant="outlined"
onClick={() => api.openLink(`https://chatboxapp.xyz/redirect_app/roadmap/${props.lang}`)}
onClick={() => api.openLink(`https://chatboxai.app/redirect_app/roadmap/${props.lang}`)}
>
{t('Roadmap')}
</Button>
</Stack>
<Paper elevation={3} sx={{ padding: '10px 10px 5px 10px', backgroundColor: 'paper', marginTop: '30px' }}>
<span>{t("Auther Message")}</span>
<Stack spacing={2} direction="row" >
<Button variant="text" onClick={() => api.openLink(`https://chatboxapp.xyz/redirect_app/donate/${props.lang}`)} >
<Button variant="text" onClick={() => api.openLink(`https://chatboxai.app/redirect_app/donate/${props.lang}`)} >
{t('Donate')}
</Button>
<Button variant="text" onClick={() => api.openLink(`https://chatboxapp.xyz/redirect_app/become_sponsor/${props.lang}`)} >
<Button variant="text" onClick={() => api.openLink(`https://chatboxai.app/redirect_app/become_sponsor/${props.lang}`)} >
{t('Or become a sponsor')}
</Button>
</Stack>
Expand Down
2 changes: 1 addition & 1 deletion src/remote.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Config, SponsorAboutBanner, SponsorAd } from './types'

const releaseHost = "https://releases.chatboxapp.xyz"
const releaseHost = "https://releases.chatboxai.app"

export async function checkNeedUpdate(version: string, os: string, config: Config): Promise<boolean> {
const res = await fetch(`${releaseHost}/chatbox_need_update/${version}`, {
Expand Down

0 comments on commit 0e79023

Please sign in to comment.