http://bugs.winehq.org/show_bug.cgi?id=15068
Summary: wine.inf - winebrowser issue Product: Wine Version: 1.1.3 Platform: PC-x86-64 OS/Version: Linux Status: UNCONFIRMED Severity: minor Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: newsletter@Schiermeier-Software.de
wine.inf uses to create inside the registry this:
---wine.inf--- HKCR,http\shell\open\command,,2,"%11%\winebrowser.exe -nohome" HKCR,http\shell\open\ddeexec,,2,"""%1"",,-1,0,,,," HKCR,http\shell\open\ddeexec,"NoActivateHandler",2,"" HKCR,http\shell\open\ddeexec\Application,,2,"IExplore" HKCR,http\shell\open\ddeexec\Topic,,2,"WWW_OpenURL" ---
but this doesn't work if you change also the default browser in
---user.reg--- [Software\Wine\WineBrowser] "Browsers"="opera,iceweasel,konqueror,epiphany,dillo" ---
because Opera don't know nothing about a parameter called '-nohome'. This is only a specific parameter for the Internet Explorer.
My solution was to change 'winebrowser.exe -nohome' to 'winebrowser.exe "%1"' and to delete the lines which are controll the DDE-process. This works with all browsers. (The same I did with the HTTPS-protocol).
Could someone please check this item?