John,
I used the windows version and had it working in a few minutes, the instructions easy enough to follow.
I had a bit of time on my hands today, so I wrote a little batch file to automate the installation.
It will prompt you for your DNS and IP settings and write them to the other batch file. It also copies the files to ?:\windows and sets up the file association.
All you need to do is now tell firefox/IE to use the vlcplsed.bat batch file by default.
Code:
@echo off
setlocal
:: Copy the required files
copy /y .\vlcplsed.bat %systemRoot%
copy /y .\gsar.exe %systemRoot%
copy /y .\cmdow.exe %systemRoot%
:Step1
::Prompt user for Dreambox IP and DNS name.
set OK=Y
cls
set /p DreamIP=Please enter your dreambox IP address:
echo.
set /p DNSname=Please enter your DNS name:
cls
echo "Please check that the following is correct."
echo.
echo Dreambox IP: %DreamIP%
echo DNS name : %DNSname%
echo.
set /p OK=If you need to change the above type N, otherwise type anything and hit enter:
If "%OK%"=="N" goto Step1
If "%OK%"=="n" goto Step1
cls
:: Modify vlcplsed.bat so that it has the correct DNS and IP.
gsar -s"192.168.0.24" -r%DreamIP% -o %systemRoot%\vlcplsed.bat
gsar -s"dreamdns.homelinux.net" -r%DNSname% -o %systemRoot%\vlcplsed.bat
echo.
echo DNS and IP settings updated.
echo.
:: DO the file association stuff
set BatchPath=%systemRoot%\vlcplsed.bat
assoc .pls=
assoc .pls=VLCAudio
ftype VLCAudio=%BatchPath% %1
echo.
echo file association stuff done.
echo.
echo.
echo You can now delete the instalation files when you are happy that everything is OK.
Pause
endlocal