From 2f0542eaed0c5be6b7c714301ff4d2aeb6b201ab Mon Sep 17 00:00:00 2001 From: ChaoticByte Date: Sun, 9 Mar 2025 20:26:44 +0100 Subject: [PATCH] Remove windows support --- README.md | 10 +++++----- VERSION | 2 +- release-cli.sh | 3 --- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index ab8c727..766d603 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Definetly not a commandline downloader for https://gronkh.tv risen from the dead ## Supported Platforms -Tested on Linux and Windows (64bit). +Only compatible with Linux. ## Download / Installation @@ -39,7 +39,7 @@ Run `lurch-dl --help` to see available options. 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 ... Format: 1080p60 @@ -51,13 +51,13 @@ Downloaded 0.32% at 10.00 MB/s ... 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: ``` -./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 ... Format: 1080p60 @@ -104,7 +104,7 @@ Format: 720p 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 ``` diff --git a/VERSION b/VERSION index 50aea0e..7c32728 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.0 \ No newline at end of file +2.1.1 \ No newline at end of file diff --git a/release-cli.sh b/release-cli.sh index 24af3d6..04f6958 100755 --- a/release-cli.sh +++ b/release-cli.sh @@ -17,9 +17,6 @@ NAME_BASE="lurch-dl_v${VERSION}" 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=amd64 OUTPUT_FILE=${NAME_BASE}_linux_amd64 gobuild GOOS=linux GOARCH=arm OUTPUT_FILE=${NAME_BASE}_linux_arm gobuild