Skip to content

Commit

Permalink
Updated README and DEV
Browse files Browse the repository at this point in the history
  • Loading branch information
YamiOdymel committed May 5, 2024
1 parent a4b9de9 commit af35dca
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For Chaturbate-**only**, private/ticket stream is **unsupported**.

## Usage

Download executable from **[Release](https://github.com/teacat/chaturbate-dvr/releases)** page.
Download executable from **[Release](https://github.com/teacat/chaturbate-dvr/releases)** page (e.g., `windows_chatubrate-dvr.exe`).

 

Expand Down
24 changes: 12 additions & 12 deletions README_DEV.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
Compile All at once:

```
GOOS=windows GOARCH=amd64 go build -o bin/windows/chatubrate-dvr.exe &&
GOOS=darwin GOARCH=amd64 go build -o bin/darwin/chatubrate-dvr &&
GOOS=linux GOARCH=amd64 go build -o bin/linux/chatubrate-dvr &&
GOOS=windows GOARCH=arm64 go build -o bin/arm64/windows/chatubrate-dvr.exe &&
GOOS=darwin GOARCH=arm64 go build -o bin/arm64/darwin/chatubrate-dvr &&
GOOS=linux GOARCH=arm64 go build -o bin/arm64/linux/chatubrate-dvr
GOOS=windows GOARCH=amd64 go build -o bin/windows_chatubrate-dvr.exe &&
GOOS=darwin GOARCH=amd64 go build -o bin/macos_chatubrate-dvr &&
GOOS=linux GOARCH=amd64 go build -o bin/linux_chatubrate-dvr &&
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
```

or Compile for 64-bit Windows, macOS, Linux:

```
GOOS=windows GOARCH=amd64 go build -o bin/windows/chatubrate-dvr.exe &&
GOOS=darwin GOARCH=amd64 go build -o bin/darwin/chatubrate-dvr &&
GOOS=linux GOARCH=amd64 go build -o bin/linux/chatubrate-dvr
GOOS=windows GOARCH=amd64 go build -o bin/windows_chatubrate-dvr.exe &&
GOOS=darwin GOARCH=amd64 go build -o bin/macos_chatubrate-dvr &&
GOOS=linux GOARCH=amd64 go build -o bin/linux_chatubrate-dvr
```

or for 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/darwin/chatubrate-dvr &&
GOOS=linux GOARCH=arm64 go build -o bin/arm64/linux/chatubrate-dvr
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
```

0 comments on commit af35dca

Please sign in to comment.