Skip to content

Commit

Permalink
fix: version (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
okisdev authored Apr 12, 2024
1 parent f8b2cc8 commit 0093260
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</p>

<p align='center'>
<a href='https://docs.okis.dev/chat' target='_blank'>
<a href='https://docs.okis.dev/chat/intro' target='_blank'>
ドキュメント
</a>
</p>
Expand All @@ -25,15 +25,15 @@

## 使用方法

[ドキュメント](https://docs.okis.dev/chat)
[ドキュメント](https://docs.okis.dev/chat/intro)

## デプロイメント

[![Vercelでデプロイ](https://vercel.com/button)](https://vercel.com/import/project?template=https://github.com/okisdev/ChatChat)

[![Railwayでデプロイ](https://railway.app/button.svg)](https://railway.app/template/-WWW5r)

詳細なデプロイ方法は[ドキュメント](https://docs.okis.dev/chat)にて
詳細なデプロイ方法は[ドキュメント](https://docs.okis.dev/chat/intro)にて

## ライセンス

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</p>

<p align='center'>
<a href='https://docs.okis.dev/chat' target='_blank'>
<a href='https://docs.okis.dev/chat/intro' target='_blank'>
Documentation
</a>
</p>
Expand All @@ -25,15 +25,15 @@

## Usage

[docs](https://docs.okis.dev/chat)
[docs](https://docs.okis.dev/chat/intro)

## Deployment

[![Deployed in Vercel](https://vercel.com/button)](https://vercel.com/import/project?template=https://github.com/okisdev/ChatChat)

[![Deploy on Railway](https://railway.app/button.svg)](https://railway.app/template/-WWW5r)

more deployment methods in [docs](https://docs.okis.dev/chat)
more deployment methods in [docs](https://docs.okis.dev/chat/intro)

## LICENSE

Expand Down
6 changes: 3 additions & 3 deletions README.zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</p>

<p align='center'>
<a href='https://docs.okis.dev/chat' target='_blank'>
<a href='https://docs.okis.dev/chat/intro' target='_blank'>
文档
</a>
</p>
Expand All @@ -25,15 +25,15 @@

## 使用方式

[文档](https://docs.okis.dev/chat)
[文档](https://docs.okis.dev/chat/intro)

## 部署

[![在Vercel中部署](https://vercel.com/button)](https://vercel.com/import/project?template=https://github.com/okisdev/ChatChat)

[![在Railway上部署](https://railway.app/button.svg)](https://railway.app/template/-WWW5r)

更多部署方法见[文档](https://docs.okis.dev/chat)
更多部署方法见[文档](https://docs.okis.dev/chat/intro)

## 许可证

Expand Down
6 changes: 3 additions & 3 deletions README.zh_HK.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</p>

<p align='center'>
<a href='https://docs.okis.dev/chat' target='_blank'>
<a href='https://docs.okis.dev/chat/intro' target='_blank'>
文件
</a>
</p>
Expand All @@ -25,15 +25,15 @@

## 使用方式

[文件](https://docs.okis.dev/chat)
[文件](https://docs.okis.dev/chat/intro)

## 部署

[![在 Vercel 中部署](https://vercel.com/button)](https://vercel.com/import/project?template=https://github.com/okisdev/ChatChat)

[![在 Railway 上部署](https://railway.app/button.svg)](https://railway.app/template/-WWW5r)

更多部署方法在[文件](https://docs.okis.dev/chat)
更多部署方法在[文件](https://docs.okis.dev/chat/intro)

## 許可證

Expand Down
2 changes: 1 addition & 1 deletion components/layout/version-badge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const VersionBadge = () => {
const res = await fetch('/api/app/latest');
const data = await res.json();

if (data.tag_name != packageInfo.version) {
if (data.short.version != packageInfo.version) {
setIsLatestVersion(false);
}
};
Expand Down

0 comments on commit 0093260

Please sign in to comment.