From f8d7e92dc2518f0ced68ee8e26947b1c0d0fe209 Mon Sep 17 00:00:00 2001 From: Developer Date: Mon, 16 Dec 2024 16:15:38 +0700 Subject: [PATCH] change repo owner and repo name --- .github/workflows/release.yml | 8 ++++---- README.md | 20 ++++++++++---------- go.mod | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cb9b91a..10ffbd1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/README.md b/README.md index de79401..5685e58 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

Chat Tools for OBS

+

OrionChat

Awesome Badge Star Badge @@ -8,12 +8,12 @@ A powerful OBS integration tool for managing live stream chats with TTS and avatar animations -Stars Badge -Forks Badge -Pull Requests Badge -Issues Badge -GitHub contributors -License Badge +Stars Badge +Forks Badge +Pull Requests Badge +Issues Badge +GitHub contributors +License Badge
@@ -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 diff --git a/go.mod b/go.mod index 11af682..a1c7089 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/roffidaijoubu/chat-tools +module github.com/oristarium/orionchat go 1.22