SourceForge: youtube2mp3/youtube2mp3: changeset 20:46ce77d50276
installer tweaks
authorobeythepenguin@gmail.com
Sun Nov 08 18:01:49 2009 -0500 (3 weeks ago)
changeset 2046ce77d50276
parent 1907ad752f6600
child 21095ebbf741da
installer tweaks
graphics/sf-favicon.ico
win32/youtube2mp3.nsi
     1.1 Binary file graphics/sf-favicon.ico has changed
     2.1 --- a/win32/youtube2mp3.nsi	Sun Nov 08 17:49:04 2009 -0500
     2.2 +++ b/win32/youtube2mp3.nsi	Sun Nov 08 18:01:49 2009 -0500
     2.3 @@ -14,6 +14,14 @@
     2.4  
     2.5  ; ----------------------------------------
     2.6  
     2.7 +!macro CreateInternetShortcut FILENAME URL ICONFILE ICONINDEX
     2.8 +WriteINIStr "${FILENAME}.url" "InternetShortcut" "URL" "${URL}"
     2.9 +WriteINIStr "${FILENAME}.url" "InternetShortcut" "IconFile" "${ICONFILE}"
    2.10 +WriteINIStr "${FILENAME}.url" "InternetShortcut" "IconIndex" "${ICONINDEX}"
    2.11 +!macroend
    2.12 +
    2.13 +; ----------------------------------------
    2.14 +
    2.15  Section "YouTube to MP3 Converter"
    2.16  	SectionIn RO
    2.17  
    2.18 @@ -22,6 +30,7 @@
    2.19  	File ..\win32-bin\qt-mt3.dll
    2.20  	File ..\win32-bin\mingwm10.dll
    2.21  	File ..\scripts\dist\*.*
    2.22 +	File ..\graphics\sf-favicon.ico
    2.23  	WriteRegStr HKLM "Software\Benjamin Johnson\youtube2mp3" "Install_Dir" "$INSTDIR"
    2.24  
    2.25  	WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\youtube2mp3" "DisplayName" "YouTube to MP3 Converter"
    2.26 @@ -44,6 +53,7 @@
    2.27  Section "Create Start menu shortcut"
    2.28  	CreateDirectory "$SMPROGRAMS\YouTube to MP3 Converter"
    2.29  	CreateShortCut "$SMPROGRAMS\YouTube to MP3 Converter\YouTube to MP3 Converter.lnk" "$INSTDIR\youtube2mp3.exe" "" "$INSTDIR\youtube2mp3.exe" 0 SW_SHOWNORMAL "" "Convert YouTube, Google Video, and local media files into a wide range of audio and video formats."
    2.30 +	!insertmacro CreateInternetShortcut "$SMPROGRAMS\YouTube to MP3 Converter\Homepage @ SourceForge.net" "http://youtube2mp3.sourceforge.net/" "$INSTDIR\sf-favicon.ico" 0
    2.31  SectionEnd
    2.32  
    2.33  Section "Create desktop shortcut"