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
On Fri, 2005-06-17 at 21:35 +0200, Moritz Engel wrote:
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!
Cool, I will take care of applying this.
Jon
-----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
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get up to speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click _______________________________________________ Inkscape-devel mailing list Inkscape-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/inkscape-devel
Moritz Engel wrote:
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
That is a good idea. Committed. Thanks!
Bob (ishmal)
participants (3)
-
Bob Jamison
-
Jon Phillips
-
Moritz Engel