Skip to content

Commit 91c20cc

Browse files
authored
v0.8.0 - Merge pull request #8 from mpb10/0.8.0
* Version `0.8.0` of the project includes: * Updated the install instructions and commands.
2 parents 93aa667 + 002342b commit 91c20cc

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A PowerShell module and script used to operate the [yt-dlp](https://github.com/y
88

99
**September 6th 2024**
1010

11-
**v0.7.0**
11+
**v0.8.0**
1212

1313
#
1414

@@ -23,7 +23,7 @@ A PowerShell module and script used to operate the [yt-dlp](https://github.com/y
2323

2424
# INSTALLATION
2525

26-
**Script download link:** https://github.com/mpb10/powershell-yt-dlp/archive/refs/tags/v0.7.0.zip
26+
**Script download link:** https://github.com/mpb10/powershell-yt-dlp/archive/refs/tags/v0.8.0.zip
2727

2828
**Dependencies:**
2929

@@ -50,11 +50,11 @@ A PowerShell module and script used to operate the [yt-dlp](https://github.com/y
5050
To uninstall this script and its shortcuts, open a PowerShell command prompt and run the following commands:
5151

5252
```
53-
Import-Module -Force [environment]::GetFolderPath('UserProfile') + '\scripts\powershell-yt-dlp\yt-dlp.psm1'
54-
Uninstall-YtDlpScript -Path [environment]::GetFolderPath('UserProfile') + '\scripts\powershell-yt-dlp'
53+
Import-Module -Force ([environment]::GetFolderPath('UserProfile') + '\scripts\powershell-yt-dlp\yt-dlp.psm1')
54+
Uninstall-YtDlpScript -Path ([environment]::GetFolderPath('UserProfile') + '\scripts\powershell-yt-dlp')
5555
```
5656

57-
To completely uninstall the script, including the user-modified files, add the `-Force` flag to the end of the `Uninstall-YtDlpScript` command.
57+
To also remove the user-modified files in the `etc\` folder, add the `-Force` flag to the end of the `Uninstall-YtDlpScript` command or simply delete the entirety of the `%USERPROFILE%\scripts\powershell-yt-dlp` folder.
5858

5959
# USAGE
6060

@@ -77,9 +77,9 @@ For developers, to run the script's tests, execute the following commands:
7777
```
7878
git clone https://github.com/mpb10/powershell-yt-dlp.git ([environment]::GetFolderPath('MyDocuments') + '\powershell-yt-dlp')
7979
Set-Location -Path ([environment]::GetFolderPath('MyDocuments') + '\powershell-yt-dlp')
80-
git checkout 0.7.0
80+
git checkout 0.8.0
8181
Import-Module -Force ([environment]::GetFolderPath('MyDocuments') + '\powershell-yt-dlp\yt-dlp.psm1')
82-
Test-YtDlpAll -Branch '0.7.0'
82+
Test-YtDlpAll -Branch '0.8.0'
8383
```
8484

8585
# TO-DO
@@ -89,6 +89,9 @@ Test-YtDlpAll -Branch '0.7.0'
8989
# CHANGE LOG
9090

9191
```
92+
* v0.8.0 - September 7th, 2024
93+
* Updated the install instructions and commands.
94+
9295
* v0.7.0 - September 6th, 2024
9396
* Fixed install shortcut pathing.
9497

0 commit comments

Comments
 (0)