Remove windows support

This commit is contained in:
ChaoticByte 2025-03-09 20:26:44 +01:00
parent 5825892dfd
commit 2f0542eaed
No known key found for this signature in database
3 changed files with 6 additions and 9 deletions

View file

@ -22,7 +22,7 @@ Definetly not a commandline downloader for https://gronkh.tv risen from the dead
## Supported Platforms ## Supported Platforms
Tested on Linux and Windows (64bit). Only compatible with Linux.
## Download / Installation ## Download / Installation
@ -39,7 +39,7 @@ Run `lurch-dl --help` to see available options.
Download a video in its best available format: Download a video in its best available format:
``` ```
./lurch-dl.exe --url https://gronkh.tv/streams/777 ./lurch-dl --url https://gronkh.tv/streams/777
Title: GTV0777, 2023-11-09 - DIESER STREAM IST ILLEGAL UND ... Title: GTV0777, 2023-11-09 - DIESER STREAM IST ILLEGAL UND ...
Format: 1080p60 Format: 1080p60
@ -51,13 +51,13 @@ Downloaded 0.32% at 10.00 MB/s ...
Continue a download: Continue a download:
``` ```
./lurch-dl.exe --url https://gronkh.tv/streams/777 --continue ./lurch-dl --url https://gronkh.tv/streams/777 --continue
``` ```
Download a specific chapter: Download a specific chapter:
``` ```
./lurch-dl.exe --url https://gronkh.tv/streams/777 --chapter 2 ./lurch-dl --url https://gronkh.tv/streams/777 --chapter 2
Title: GTV0777, 2023-11-09 - DIESER STREAM IST ILLEGAL UND ... Title: GTV0777, 2023-11-09 - DIESER STREAM IST ILLEGAL UND ...
Format: 1080p60 Format: 1080p60
@ -104,7 +104,7 @@ Format: 720p
Specify a filename: Specify a filename:
``` ```
./lurch-dl.exe --url https://gronkh.tv/streams/777 --output Stream777.ts ./lurch-dl --url https://gronkh.tv/streams/777 --output Stream777.ts
``` ```
</details> </details>

View file

@ -1 +1 @@
2.1.0 2.1.1

View file

@ -17,9 +17,6 @@ NAME_BASE="lurch-dl_v${VERSION}"
echo "Building ${NAME_BASE} into ${OUTPUT_DIR}" echo "Building ${NAME_BASE} into ${OUTPUT_DIR}"
GOOS=windows GOARCH=386 OUTPUT_FILE=${NAME_BASE}_32bit.exe gobuild
GOOS=windows GOARCH=amd64 OUTPUT_FILE=${NAME_BASE}_64bit.exe gobuild
GOOS=windows GOARCH=arm64 OUTPUT_FILE=${NAME_BASE}_arm64.exe gobuild
GOOS=linux GOARCH=386 OUTPUT_FILE=${NAME_BASE}_linux_i386 gobuild GOOS=linux GOARCH=386 OUTPUT_FILE=${NAME_BASE}_linux_i386 gobuild
GOOS=linux GOARCH=amd64 OUTPUT_FILE=${NAME_BASE}_linux_amd64 gobuild GOOS=linux GOARCH=amd64 OUTPUT_FILE=${NAME_BASE}_linux_amd64 gobuild
GOOS=linux GOARCH=arm OUTPUT_FILE=${NAME_BASE}_linux_arm gobuild GOOS=linux GOARCH=arm OUTPUT_FILE=${NAME_BASE}_linux_arm gobuild