Skip to content

Commit

Permalink
fix(installer): install visual c++ redist for youtube-dl during install
Browse files Browse the repository at this point in the history
  • Loading branch information
bertyhell committed Jul 11, 2022
1 parent 5484bfe commit 85dbf86
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
Binary file modified PlaylistDownloader.exe
Binary file not shown.
Binary file modified PlaylistDownloader.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Unicode True
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_LANGUAGE "English"

Name "PlaylistDownloader 1.12.0"
Name "PlaylistDownloader 1.12.1"
BrandingText ""
OutFile "C:\Users\Bert\Documents\repos\PlaylistDownloader\PlaylistDownloader\Installer\Output\PlaylistDownloader.exe"
InstallDir "$PROGRAMFILES\PlaylistDownloader"
Expand All @@ -25,6 +25,13 @@ Section -InstallDelete
RMDir /r "$INSTDIR"
SectionEnd

Section "Visual C++ Runtime"
SetOutPath "$INSTDIR"
File ".\vcredist_x86.exe"
ExecWait "$INSTDIR\vcredist_x86.exe /install /passive"
Delete "$INSTDIR\vcredist_x86.exe"
SectionEnd

Section -Files
SetOutPath "$INSTDIR"
File /r "..\PlaylistDownloader\bin\Release\*"
Expand Down
Binary file added PlaylistDownloader/Installer/vcredist_x86.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PlaylistDownloader 1.11.0
PlaylistDownloader 1.12.1
=========================

Download your whole playlist with one click of a button
Expand Down Expand Up @@ -34,4 +34,4 @@ Then use the "Test Explorer" window to run the tests
ChangeLog
=========

https://github.com/bertyhell/PlaylistDownloader/releases
https://github.com/bertyhell/PlaylistDownloader/releases

0 comments on commit 85dbf86

Please sign in to comment.