From: daid Date: Wed, 1 Aug 2012 08:16:43 +0000 (+0200) Subject: Added icon for STL files. X-Git-Tag: 12.08~2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=cfc50e031e45682d2399de9e83ebc2f8e4c70987;p=cura.git Added icon for STL files. --- diff --git a/Cura/stl.ico b/Cura/stl.ico new file mode 100644 index 00000000..6ab56db1 Binary files /dev/null and b/Cura/stl.ico differ diff --git a/scripts/win32/installer.nsi b/scripts/win32/installer.nsi index 386034c7..45a732c8 100644 --- a/scripts/win32/installer.nsi +++ b/scripts/win32/installer.nsi @@ -107,10 +107,10 @@ Section "Cura ${VERSION}" SectionEnd Section "Open STL files with Cura" - WriteRegStr HKCR .stl "" "STL file" - ;WriteRegStr HKCR "STL file\DefaultIcon" "" "$INSTDIR\stl.ico,0" - WriteRegStr HKCR "STL file\shell" "" "open" - WriteRegStr HKCR "STL file\shell\open\command" "" '"$INSTDIR\python\python.exe" "$INSTDIR\Cura\cura.py" "%1"' + WriteRegStr HKCR .stl "" "Cura STL model file" + WriteRegStr HKCR "STL file\DefaultIcon" "" "$INSTDIR\stl.ico,0" + WriteRegStr HKCR "Cura STL model file\shell" "" "open" + WriteRegStr HKCR "Cura STL model file\shell\open\command" "" '"$INSTDIR\python\python.exe" "$INSTDIR\Cura\cura.py" "%1"' SectionEnd ;--------------------------------