Skip to content

Commit

Permalink
change repo owner and repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
roffidaijoubu committed Dec 16, 2024
1 parent 4c75ebe commit f8d7e92
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,20 +64,20 @@ jobs:
- name: Build
run: |
$env:CC = "x86_64-w64-mingw32-gcc"
go build -v -ldflags="-s -w -H=windowsgui" -trimpath -o app.exe
go build -v -ldflags="-s -w -H=windowsgui" -trimpath -o orionchat.exe
- name: Create ZIP
run: |
New-Item -ItemType Directory -Path release
Copy-Item app.exe release/
Copy-Item orionchat.exe release/
New-Item -ItemType Directory -Path release/assets
Copy-Item assets/* release/assets/ -Recurse
Compress-Archive -Path release/* -DestinationPath "chat-tools-${{ github.ref_name }}.zip"
Compress-Archive -Path release/* -DestinationPath "orionchat-${{ github.ref_name }}.zip"
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: chat-tools-${{ github.ref_name }}.zip
files: orionchat-${{ github.ref_name }}.zip
name: Release ${{ github.ref_name }}
draft: false
prerelease: false
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center">Chat Tools for OBS</h1>
<h1 align="center">OrionChat</h1>
<div align="center">
<img src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg" alt="Awesome Badge"/>
<img src="https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99" alt="Star Badge"/>
Expand All @@ -8,12 +8,12 @@

<i>A powerful OBS integration tool for managing live stream chats with TTS and avatar animations</i>

<a href="https://github.com/roffidaijoubu/chat-tools/stargazers"><img src="https://img.shields.io/github/stars/roffidaijoubu/chat-tools" alt="Stars Badge"/></a>
<a href="https://github.com/roffidaijoubu/chat-tools/network/members"><img src="https://img.shields.io/github/forks/roffidaijoubu/chat-tools" alt="Forks Badge"/></a>
<a href="https://github.com/roffidaijoubu/chat-tools/pulls"><img src="https://img.shields.io/github/issues-pr/roffidaijoubu/chat-tools" alt="Pull Requests Badge"/></a>
<a href="https://github.com/roffidaijoubu/chat-tools/issues"><img src="https://img.shields.io/github/issues/roffidaijoubu/chat-tools" alt="Issues Badge"/></a>
<a href="https://github.com/roffidaijoubu/chat-tools/graphs/contributors"><img alt="GitHub contributors" src="https://img.shields.io/github/contributors/roffidaijoubu/chat-tools?color=2b9348"></a>
<a href="https://github.com/roffidaijoubu/chat-tools/blob/master/LICENSE"><img src="https://img.shields.io/github/license/roffidaijoubu/chat-tools?color=2b9348" alt="License Badge"/></a>
<a href="https://github.com/oristarium/orionchat/stargazers"><img src="https://img.shields.io/github/stars/oristarium/orionchat" alt="Stars Badge"/></a>
<a href="https://github.com/oristarium/orionchat/network/members"><img src="https://img.shields.io/github/forks/oristarium/orionchat" alt="Forks Badge"/></a>
<a href="https://github.com/oristarium/orionchat/pulls"><img src="https://img.shields.io/github/issues-pr/oristarium/orionchat" alt="Pull Requests Badge"/></a>
<a href="https://github.com/oristarium/orionchat/issues"><img src="https://img.shields.io/github/issues/oristarium/orionchat" alt="Issues Badge"/></a>
<a href="https://github.com/oristarium/orionchat/graphs/contributors"><img alt="GitHub contributors" src="https://img.shields.io/github/contributors/oristarium/orionchat?color=2b9348"></a>
<a href="https://github.com/oristarium/orionchat/blob/master/LICENSE"><img src="https://img.shields.io/github/license/oristarium/orionchat?color=2b9348" alt="License Badge"/></a>

</div>

Expand Down Expand Up @@ -64,9 +64,9 @@ TTS Avatar: http://localhost:7777/tts
- 🇯🇵 Japanese

### Platform Support
- YouTube (Channel ID or Username)
- TikTok (Username or Live ID)
- Twitch (Channel Name)
- YouTube (Channel ID or Username or Live ID)
- TikTok (Username)
- Twitch (Username)

## 💖 Support

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/roffidaijoubu/chat-tools
module github.com/oristarium/orionchat

go 1.22

Expand Down

0 comments on commit f8d7e92

Please sign in to comment.