Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / win32inst.nsi.in
index 2e4ad9e..172cfbb 100644 (file)
@@ -12,7 +12,7 @@
 ; The name of the installer
 Name "@PACKAGE_NAME@ @PACKAGE_VERSION@"
 
-!define PRODUCT_WEB_SITE "http://www.synfig.com/"
+!define PRODUCT_WEB_SITE "http://synfig.org/"
 
 ; The file to write
 OutFile "@PACKAGE_TARNAME@-@PACKAGE_VERSION@.exe"
@@ -89,6 +89,7 @@ SectionEnd
 ; Optional section (can be disabled by the user)
 Section "Start Menu Shortcuts"
 
+  SetShellVarContext All
   CreateDirectory "$SMPROGRAMS\Voria"
   CreateShortCut "$SMPROGRAMS\Voria\Uninstall Synfig Core.lnk" "$INSTDIR\uninstall-@PACKAGE_TARNAME@.exe" "" "$INSTDIR\uninstall-@PACKAGE_TARNAME@.exe" 0
   
@@ -117,6 +118,7 @@ SectionEnd
 Section "un.Start Menu Shortcuts"
 
   ; Remove shortcuts, if any
+  SetShellVarContext All
   Delete "$SMPROGRAMS\Voria\Uninstall Synfig Core.lnk"
   RMDir "$SMPROGRAMS\Voria"
 
@@ -127,16 +129,18 @@ SectionEnd
 
 Section "Examples"
        SetOutPath $INSTDIR\examples
-       File "@srcdir@\examples\*.sif"
+       File "@srcdir@\examples\*.sifz"
 
+       SetShellVarContext All
        CreateDirectory "$SMPROGRAMS\Voria"
        CreateShortCut "$SMPROGRAMS\Voria\Examples.lnk" "$INSTDIR\examples" "" "$INSTDIR\examples" 0
 SectionEnd
 
 Section "un.Examples"
-       Delete "$INSTDIR\examples\*.sif"
+       Delete "$INSTDIR\examples\*.sifz"
        RMDir "$INSTDIR\examples"
-       
+
+       SetShellVarContext All
        Delete "$SMPROGRAMS\Voria\Examples.lnk"
        RMDir "$SMPROGRAMS\Voria"
 SectionEnd
@@ -158,6 +162,7 @@ SectionGroup "Render Targets"
 !include "@srcdir@\src\modules\mod_gif\mod_gif.nsh"
 !include "@srcdir@\src\modules\mod_imagemagick\mod_imagemagick.nsh"
 !include "@srcdir@\src\modules\mod_jpeg\mod_jpeg.nsh"
+!include "@srcdir@\src\modules\mod_openexr\mod_openexr.nsh"
 !include "@srcdir@\src\modules\mod_png\mod_png.nsh"
 !include "@srcdir@\src\modules\mod_ppm\mod_ppm.nsh"
 !include "@srcdir@\src\modules\mod_yuv420p\mod_yuv420p.nsh"
@@ -181,6 +186,7 @@ SectionGroup "un.Render Targets"
 !include "@srcdir@\src\modules\mod_gif\unmod_gif.nsh"
 !include "@srcdir@\src\modules\mod_imagemagick\unmod_imagemagick.nsh"
 !include "@srcdir@\src\modules\mod_jpeg\unmod_jpeg.nsh"
+!include "@srcdir@\src\modules\mod_openexr\unmod_openexr.nsh"
 !include "@srcdir@\src\modules\mod_png\unmod_png.nsh"
 !include "@srcdir@\src\modules\mod_ppm\unmod_ppm.nsh"
 !include "@srcdir@\src\modules\mod_yuv420p\unmod_yuv420p.nsh"