Hi,
I would like to deploy Inkscape in a network, but the installer does not support the silent mode correctly. Could you please commit the following small patch to inkscape.nsi When the installer asks wether Inkscape should be the default viewer or editor for svg files, there should be a default value!
Thanks in advance, Moritz
-----snip --- inkscape.nsi Fri Jun 17 21:27:50 2005 +++ inkscape_new.nsi Fri Jun 17 21:24:56 2005 @@ -140,14 +140,14 @@ Section -Post WriteUninstaller "$INSTDIR\uninst.exe"
- MessageBox MB_YESNO|MB_ICONQUESTION $(lng_Editor) IDNO NoEditor + MessageBox MB_YESNO|MB_ICONQUESTION $(lng_Editor) /SD IDYES IDNO NoEditor WriteRegStr HKCR ".svg" "" "svgfile" WriteRegStr HKCR ".svgz" "" "svgfile" WriteRegStr HKCR "svgfile" "" "Scalable Vector Graphics file" WriteRegStr HKCR "svgfile\shell\edit\command" "" '$INSTDIR\Inkscape.exe "%1"' NoEditor:
- MessageBox MB_YESNO|MB_ICONQUESTION $(lng_Reader) IDNO NoReader + MessageBox MB_YESNO|MB_ICONQUESTION $(lng_Reader) /SD IDYES IDNO NoReader WriteRegStr HKCR ".svg" "" "svgfile" WriteRegStr HKCR ".svgz" "" "svgfile" WriteRegStr HKCR "svgfile" "" "Scalable Vector Graphics file" -----snip