Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 10.0.x
- name: Run TwitchDownloaderCLI Tests
run: dotnet test TwitchDownloaderCLI.Tests
- name: Run TwitchDownloaderCore Tests
Expand All @@ -30,7 +30,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 10.0.x
- name: Build Windows GUI
run: dotnet publish TwitchDownloaderWPF -p:PublishProfile=Windows -p:DebugType=Portable

Expand All @@ -45,12 +45,12 @@ jobs:
file-name: ffmpeg.zip

- name: Bundle FFmpeg
run: tar xfz ffmpeg.zip --strip-components=1; copy bin/ffmpeg.exe TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64/ffmpeg.exe
run: tar xfz ffmpeg.zip --strip-components=1; copy bin/ffmpeg.exe TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64/ffmpeg.exe

- name: Zip Windows GUI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64"
files: "TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64"
dest: TwitchDownloaderGUI-Windows-x64.zip

- name: Upload Windows GUI Artifact Asset
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 10.0.x
- name: Build Windows CLI
run: dotnet publish TwitchDownloaderCLI -p:PublishProfile=Windows -p:DebugType=Portable
- name: Build Linux CLI
Expand All @@ -82,31 +82,31 @@ jobs:
- name: Zip Windows CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/Windows"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/Windows"
dest: TwitchDownloaderCLI-Windows-x64.zip

- name: Zip Linux CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/Linux"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/Linux"
dest: TwitchDownloaderCLI-Linux-x64.zip

- name: Zip LinuxAlpine CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/LinuxAlpine"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/LinuxAlpine"
dest: TwitchDownloaderCLI-LinuxAlpine-x64.zip

- name: Zip LinuxArm CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/LinuxArm"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/LinuxArm"
dest: TwitchDownloaderCLI-LinuxArm.zip

- name: Zip LinuxArm64 CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/LinuxArm64"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/LinuxArm64"
dest: TwitchDownloaderCLI-LinuxArm64.zip

- name: Upload Windows CLI Artifact Asset
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 10.0.x
- name: Build MacOS CLI
run: dotnet publish TwitchDownloaderCLI -p:PublishProfile=MacOS -p:DebugType=Portable
- name: Build MacOSArm64 CLI
Expand All @@ -156,13 +156,13 @@ jobs:
- name: Zip MacOS CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/MacOS"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/MacOS"
dest: TwitchDownloaderCLI-MacOS-x64.zip

- name: Zip MacOSArm64 CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/MacOSArm64"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/MacOSArm64"
dest: TwitchDownloaderCLI-MacOSArm64.zip

- name: Upload MacOS CLI Artifact Asset
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 10.0.x
- name: Build Windows GUI
run: dotnet publish TwitchDownloaderWPF -p:PublishProfile=Windows -p:DebugType=Embedded

Expand All @@ -58,12 +58,12 @@ jobs:
file-name: ffmpeg.zip

- name: Bundle FFmpeg
run: tar xfz ffmpeg.zip --strip-components=1; copy bin/ffmpeg.exe TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64/ffmpeg.exe
run: tar xfz ffmpeg.zip --strip-components=1; copy bin/ffmpeg.exe TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64/ffmpeg.exe

- name: Zip Windows GUI Release Asset
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64"
files: "TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64"
dest: TwitchDownloaderGUI-${{ github.event.inputs.release_tag }}-Windows-x64.zip

- name: Download URL
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 10.0.x
- name: Build Windows CLI
run: dotnet publish TwitchDownloaderCLI -p:PublishProfile=Windows -p:DebugType=Embedded
- name: Build Linux CLI
Expand All @@ -111,31 +111,31 @@ jobs:
- name: Zip Windows CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/Windows"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/Windows"
dest: TwitchDownloaderCLI-${{ github.event.inputs.release_tag }}-Windows-x64.zip

- name: Zip Linux CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/Linux"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/Linux"
dest: TwitchDownloaderCLI-${{ github.event.inputs.release_tag }}-Linux-x64.zip

- name: Zip LinuxAlpine CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/LinuxAlpine"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/LinuxAlpine"
dest: TwitchDownloaderCLI-${{ github.event.inputs.release_tag }}-LinuxAlpine-x64.zip

- name: Zip LinuxArm CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/LinuxArm"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/LinuxArm"
dest: TwitchDownloaderCLI-${{ github.event.inputs.release_tag }}-LinuxArm.zip

- name: Zip LinuxArm64 CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/LinuxArm64"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/LinuxArm64"
dest: TwitchDownloaderCLI-${{ github.event.inputs.release_tag }}-LinuxArm64.zip

- name: Download URL
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 10.0.x
- name: Build MacOS CLI
run: dotnet publish TwitchDownloaderCLI -p:PublishProfile=MacOS -p:DebugType=Embedded
- name: Build MacOSArm64 CLI
Expand All @@ -216,13 +216,13 @@ jobs:
- name: Zip MacOS CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/MacOS"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/MacOS"
dest: TwitchDownloaderCLI-${{ github.event.inputs.release_tag }}-MacOS-x64.zip

- name: Zip MacOSArm64 CLI
uses: vimtor/action-zip@v1.2
with:
files: "TwitchDownloaderCLI/bin/Release/net6.0/publish/MacOSArm64"
files: "TwitchDownloaderCLI/bin/Release/net10.0/publish/MacOSArm64"
dest: TwitchDownloaderCLI-${{ github.event.inputs.release_tag }}-MacOSArm64.zip

- name: Download URL
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ You can find more example commands in the [CLI README](TwitchDownloaderCLI/READM

## Requirements

- [.NET 6.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
- [.NET 10.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
- About 1GB of disk space

## Build Instructions
Expand Down Expand Up @@ -240,13 +240,13 @@ dotnet publish TwitchDownloaderCLI -p:PublishProfile=<Profile>
5. a) Navigate to the GUI build folder:

```
cd TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64
cd TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64
```

5. b) Navigate to the CLI build folder:

```
cd TwitchDownloaderCLI/bin/Release/net6.0/publish
cd TwitchDownloaderCLI/bin/Release/net10.0/publish
```

# Third Party Credits
Expand Down
6 changes: 3 additions & 3 deletions README_es.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ chmod +x ffmpeg

## Requisitos

- [.NET 6.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
- [.NET 10.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)

## Instrucciones de Compilación

Expand Down Expand Up @@ -200,13 +200,13 @@ dotnet publish TwitchDownloaderCLI -p:PublishProfile=<Perfil>
5. a) Navega hasta la carpeta de la compilación de la GUI:

```
cd TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64
cd TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64
```

5. b) Navega hasta la carpeta de la compilación de la CLI:

```
cd TwitchDownloaderCLI/bin/Release/net6.0/publish
cd TwitchDownloaderCLI/bin/Release/net10.0/publish
```

# Licencia
Expand Down
6 changes: 3 additions & 3 deletions README_fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ Des exemples supplémentaires sont disponibles dans le [README de la CLI](Twitch

## Prérequis

- SDK [.NET 6.0.x](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
- SDK [.NET 10.0.x](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
- Environ 1 Go d’espace disque

## Instructions de compilation
Expand Down Expand Up @@ -231,13 +231,13 @@ dotnet publish TwitchDownloaderCLI -p:PublishProfile=<Profile>
5. a) Accédez au dossier de build du GUI :

```
cd TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64
cd TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64
```

5. b) Accédez au dossier de build de la CLI :

```
cd TwitchDownloaderCLI/bin/Release/net6.0/publish
cd TwitchDownloaderCLI/bin/Release/net10.0/publish
```

# Crédits tiers
Expand Down
6 changes: 3 additions & 3 deletions README_it.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Puoi trovare altri esempi nel [CLI README](TwitchDownloaderCLI/README.md#example

## Requisiti

- [.NET 6.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
- [.NET 10.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
- Circa 1GB di spazio su disco

## Istruzioni
Expand Down Expand Up @@ -230,13 +230,13 @@ dotnet publish TwitchDownloaderCLI -p:PublishProfile=<Profile>
5. a) Naviga nella cartella della GUI:

```
cd TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64
cd TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64
```

5. b) Naviga nella cartella del CLI:

```
cd TwitchDownloaderCLI/bin/Release/net6.0/publish
cd TwitchDownloaderCLI/bin/Release/net10.0/publish
```

# Crediti di Terze Parti
Expand Down
6 changes: 3 additions & 3 deletions README_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ chmod +x ffmpeg

## 必要条件

- [.NET 6.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
- [.NET 10.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
- 約1GBのディスク空き容量

## ビルド手順
Expand Down Expand Up @@ -229,13 +229,13 @@ dotnet publish TwitchDownloaderCLI -p:PublishProfile=<Profile>
5. a) GUIのビルドフォルダに移動する:

```
cd TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64
cd TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64
```

1. b) CLIのビルドフォルダに移動する:

```
cd TwitchDownloaderCLI/bin/Release/net6.0/publish
cd TwitchDownloaderCLI/bin/Release/net10.0/publish
```

# Third Party Credits
Expand Down
6 changes: 3 additions & 3 deletions README_pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Você pode encontrar mais comandos no [CLI README](TwitchDownloaderCLI/README.md

## Requerimentos

- [.NET 6.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
- [.NET 10.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
- Mais ou menos 1GB de espaço de disco.

## Instruções para construção
Expand Down Expand Up @@ -230,13 +230,13 @@ dotnet publish TwitchDownloaderCLI -p:PublishProfile=<Profile>
5. a) Navegue para a pasta do GUI:

```
cd TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64
cd TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64
```

5. b) Navegue para a pasta do CLI:

```
cd TwitchDownloaderCLI/bin/Release/net6.0/publish
cd TwitchDownloaderCLI/bin/Release/net10.0/publish
```

# Créditos de terçeiros
Expand Down
6 changes: 3 additions & 3 deletions README_ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ chmod +x ffmpeg

## Требования

- [.NET 6.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
- [.NET 10.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
- Примерно 1GB свободного места

## Инструкции сборки
Expand Down Expand Up @@ -228,13 +228,13 @@ dotnet publish TwitchDownloaderCLI -p:PublishProfile=<Профили>
5. a) Зайдите в папку с GUI сборкой:

```
cd TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64
cd TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64
```

5. b) Зайдите в папку с CLI сборкой:

```
cd TwitchDownloaderCLI/bin/Release/net6.0/publish
cd TwitchDownloaderCLI/bin/Release/net10.0/publish
```

# Благодарности третьим лицам
Expand Down
6 changes: 3 additions & 3 deletions README_tr.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ chmod +x ffmpeg

## Gereksinimler

- [.NET 6.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
- [.NET 10.0.x SDK](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)

## Derleme Talimatları

Expand Down Expand Up @@ -196,13 +196,13 @@ dotnet publish TwitchDownloaderCLI -p:PublishProfile=<Profile>
5. a) GUI derleme klasörüne gidin:

```
cd TwitchDownloaderWPF/bin/Release/net6.0-windows/publish/win-x64
cd TwitchDownloaderWPF/bin/Release/net10.0-windows/publish/win-x64
```

5. b) CLI derleme klasörüne gidin:

```
cd TwitchDownloaderCLI/bin/Release/net6.0/publish
cd TwitchDownloaderCLI/bin/Release/net10.0/publish
```

# Lisans
Expand Down
Loading
Loading