From: <an...@us...> - 2007-11-27 16:13:03
|
Revision: 1094 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=1094&view=rev Author: and-81 Date: 2007-11-27 08:12:49 -0800 (Tue, 27 Nov 2007) Log Message: ----------- Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite.nsi trunk/plugins/MCEReplacement/MCE Replacement Plugin.nsi Modified: trunk/plugins/IR Server Suite/IR Server Suite.nsi =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite.nsi 2007-11-27 16:00:51 UTC (rev 1093) +++ trunk/plugins/IR Server Suite/IR Server Suite.nsi 2007-11-27 16:12:49 UTC (rev 1094) @@ -25,10 +25,6 @@ ; Set the compression method SetCompressor /SOLID /FINAL lzma -SetDateSave on - -XPStyle on - !include "x64.nsh" ;-------------------------------- @@ -82,7 +78,7 @@ CreateDirectory "$APPDATA\IR Server Suite\Set Top Boxes" SetOutPath "$APPDATA\IR Server Suite\Set Top Boxes" SetOverwrite ifnewer - File /r "Set Top Boxes\*.*" + File /r /x .svn "Set Top Boxes\*.*" ; Set output path to install dir SetOutPath "$INSTDIR" @@ -183,7 +179,7 @@ CreateDirectory "$APPDATA\IR Server Suite\MP Control Plugin" SetOutPath "$APPDATA\IR Server Suite\MP Control Plugin" SetOverwrite ifnewer - File /r "MediaPortal Plugins\MP Control Plugin\AppData\*.*" + File /r /x .svn "MediaPortal Plugins\MP Control Plugin\AppData\*.*" ; Create Macro folder CreateDirectory "$APPDATA\IR Server Suite\MP Control Plugin\Macro" @@ -216,11 +212,11 @@ ; Write skin files SetOutPath "$PROGRAMFILES\Team MediaPortal\MediaPortal\Skin\BlueTwo" SetOverwrite on - File /r "MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" + File /r /x .svn "MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" SetOutPath "$PROGRAMFILES\Team MediaPortal\MediaPortal\Skin\BlueTwo wide" SetOverwrite on - File /r "MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" + File /r /x .svn "MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" ; Create Macro folder CreateDirectory "$APPDATA\IR Server Suite\MP Blast Zone Plugin\Macro" Modified: trunk/plugins/MCEReplacement/MCE Replacement Plugin.nsi =================================================================== --- trunk/plugins/MCEReplacement/MCE Replacement Plugin.nsi 2007-11-27 16:00:51 UTC (rev 1093) +++ trunk/plugins/MCEReplacement/MCE Replacement Plugin.nsi 2007-11-27 16:12:49 UTC (rev 1094) @@ -18,8 +18,9 @@ ; Registry key to check for directory (so if you install again, it will overwrite the old one automatically) InstallDirRegKey HKLM "Software\MediaPortal MCE Replacement Plugin" "Install_Dir" -; Show the installation steps to the user +; Show the installation/uninstallation steps to the user ShowInstDetails show +ShowUninstDetails show ; Set the compression method SetCompressor /SOLID /FINAL lzma @@ -67,7 +68,7 @@ CreateDirectory "$APPDATA\MediaPortal MCE Replacement Plugin\STB" SetOutPath "$APPDATA\MediaPortal MCE Replacement Plugin\STB" SetOverwrite on - File /r "..\IR Server Suite\Set Top Boxes\*.*" + File /r /x .svn "..\IR Server Suite\Set Top Boxes\*.*" ; Write the installation path into the registry WriteRegStr HKLM "Software\MediaPortal MCE Replacement Plugin" "Install_Dir" "$INSTDIR" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |