2.0.0 refactor

This commit is contained in:
Yami Odymel
2025-05-02 23:52:58 +08:00
parent cad4689a5c
commit f26602b49e
51 changed files with 2108 additions and 2989 deletions

View File

@@ -1,4 +1,4 @@
Compile All at once:
64-bit + arm64
```
GOOS=windows GOARCH=amd64 go build -o bin/x64_windows_chatubrate-dvr.exe &&
@@ -9,7 +9,7 @@ GOOS=darwin GOARCH=arm64 go build -o bin/arm64_macos_chatubrate-dvr &&
GOOS=linux GOARCH=arm64 go build -o bin/arm64_linux_chatubrate-dvr
```
or Compile for 64-bit Windows, macOS, Linux:
64-bit Windows, macOS, Linux:
```
GOOS=windows GOARCH=amd64 go build -o bin/x64_windows_chatubrate-dvr.exe &&
@@ -17,10 +17,18 @@ GOOS=darwin GOARCH=amd64 go build -o bin/x64_macos_chatubrate-dvr &&
GOOS=linux GOARCH=amd64 go build -o bin/x64_linux_chatubrate-dvr
```
or for arm64 Windows, macOS, Linux:
arm64 Windows, macOS, Linux:
```
GOOS=windows GOARCH=arm64 go build -o bin/arm64_windows_chatubrate-dvr.exe &&
GOOS=darwin GOARCH=arm64 go build -o bin/arm64_macos_chatubrate-dvr &&
GOOS=linux GOARCH=arm64 go build -o bin/arm64_linux_chatubrate-dvr
```
Build Docker Tag:
s
```
docker build -t yamiodymel/chaturbate-dvr:2.0.0 .
docker push yamiodymel/chaturbate-dvr:2.0.0
```