diff --git a/.github/workflows/CompileAndRelease.yml b/.github/workflows/CompileAndRelease.yml index 475f340ea..1b4697289 100755 --- a/.github/workflows/CompileAndRelease.yml +++ b/.github/workflows/CompileAndRelease.yml @@ -1,13 +1,13 @@ name: CompileAndRelease on: - #[push, pull_request] #just for test release scripts - schedule: - - cron: '0 0 1 * *' #every first day of the month at midnight + [push, pull_request] #just for test release scripts + #schedule: + # - cron: '0 0 1 * *' #every first day of the month at midnight jobs: update_ml_version: - name: Update ML_VERSION and Info.plist + name: Update ML_VERSION, snapcraft.yaml and Info.plist runs-on: macos-latest steps: - uses: actions/checkout@v2 @@ -28,10 +28,13 @@ jobs: run: | /usr/libexec/PlistBuddy -c "Set CFBundleShortVersionString ${{steps.envs.outputs.date}}" src/meshlab/Info.plist /usr/libexec/PlistBuddy -c "Set CFBundleVersion ${{steps.envs.outputs.date}}" src/meshlab/Info.plist + - name: Update Snap file + run: | + sed "s%MESHLAB_VERSION%$(cat ML_VERSION)%g" install/linux/snap/snap_noversion.yaml > install/linux/snap/snapcraft.yaml - name: commit ML_VERSION and Info.plist change uses: stefanzweifel/git-auto-commit-action@v4.1.1 with: - commit_message: Apply automatic ML_VERSION and Info.plist change + commit_message: Apply automatic ML_VERSION, snapcraft.yaml and Info.plist change ubuntu_build: needs: [update_ml_version] diff --git a/install/linux/snap/gui/meshlab.png b/install/linux/snap/gui/meshlab.png index c9a9885e2..2f787916d 100644 Binary files a/install/linux/snap/gui/meshlab.png and b/install/linux/snap/gui/meshlab.png differ diff --git a/install/linux/snap/snap_noversion.yaml b/install/linux/snap/snap_noversion.yaml new file mode 100644 index 000000000..e0be918b8 --- /dev/null +++ b/install/linux/snap/snap_noversion.yaml @@ -0,0 +1,89 @@ +# Known to build in Ubuntu 20.04 +name: meshlab +base: core18 +version: 'MESHLAB_VERSION' +summary: MeshLab +description: | + The open source system for processing and editing 3D triangular meshes. + It provides a set of tools for editing, cleaning, healing, inspecting, + rendering, texturing and converting meshes. It offers features for processing + raw data produced by 3D digitization tools/devices and for preparing models + for 3D printing. +icon: snap/gui/meshlab.png + +grade: stable +confinement: strict + +apps: + meshlab: + command: desktop-launch meshlab + plugs: [home, x11, mir, opengl] + meshlabserver: + command: desktop-launch meshlabserver + plugs: [home, x11, opengl] + + +parts: + desktop-qt5: + build-packages: + - build-essential + - qtbase5-dev + - dpkg-dev + make-parameters: + - FLAVOR=qt5 + plugin: make + source: https://github.com/ubuntu/snapcraft-desktop-helpers.git + source-subdir: qt + stage-packages: + - libxkbcommon0 + - ttf-ubuntu-font-family + - dmz-cursor-theme + - light-themes + - adwaita-icon-theme + - gnome-themes-standard + - shared-mime-info + - libqt5gui5 + - libgdk-pixbuf2.0-0 + - libqt5svg5 + - try: + - appmenu-qt5 + - locales-all + - xdg-user-dirs + - fcitx-frontend-qt5 + meshlab: + after: [desktop-qt5] + plugin: qmake + qt-version: qt5 + source: https://github.com/cnr-isti-vclab/meshlab.git + build-packages: + - qt5-default + - qttools5-dev-tools + - qtscript5-dev + - libqt5xmlpatterns5-dev + - mesa-common-dev + - libglu1-mesa-dev + - lib3ds-dev + - libglew-dev + - libeigen3-dev + - libopenctm-dev + - libgmp-dev + - libqhull-dev + stage-packages: + - lib3ds-1-3 + - libgomp1 + - libopenctm1 + - libqhull7 + - libglew-dev + - libqt5opengl5-dev + - libqt5xmlpatterns5-dev + - libqt5script5 + - libqt5gui5 + override-build: | + qmake src/meshlab.pro "CONFIG+= system_eigen3 system_glew system_bzip2 system_openctm system_lib3ds" + make -j4 + cd distrib + mkdir -p $SNAPCRAFT_PART_INSTALL/bin + cp -a meshlab* plugins shaders $SNAPCRAFT_PART_INSTALL/bin + mkdir -p $SNAPCRAFT_PART_INSTALL/lib + cp -a lib* $SNAPCRAFT_PART_INSTALL/lib + diff --git a/install/linux/snap/snapcraft.yaml b/install/linux/snap/snapcraft.yaml index 1026bb1f7..db3fcc888 100644 --- a/install/linux/snap/snapcraft.yaml +++ b/install/linux/snap/snapcraft.yaml @@ -1,7 +1,7 @@ -# Known to build in Ubuntu 18.04 +# Known to build in Ubuntu 20.04 name: meshlab base: core18 -version: '2020.05' +version: '2020.04' summary: MeshLab description: | The open source system for processing and editing 3D triangular meshes. diff --git a/install/linux/snap_old/README.md b/install/linux/snap_old/README.md deleted file mode 100644 index 89f224f6c..000000000 --- a/install/linux/snap_old/README.md +++ /dev/null @@ -1,32 +0,0 @@ -Snap is a cross-distribution packaging format for Linux. See -https://snapcraft.io for more information. - -How to build ------------- -Just type -``` -snapcraft -``` -from the *parent* directory: that is, not from the directory containing this -README file, but from its parent directory. This snap has been successfully -built in Ubuntu 17.04; Ubuntu 16.10 will not work because MeshLab needs Qt 5.7, -which is not available there. It should be possible to build MeshLab as a snap -in older Ubuntu distributions by using the [qt57 -part](https://wiki.ubuntu.com/snapcraft/parts), but no efforts have been taken -in this direction since anyway the generated snap package will work on older -distributions too. - -How to test the snap --------------------- -The generated snap can be installed by typing -``` -snap install --dangerous ./meshlab*.snap -``` -The `--dangerous` flag is needed because the snap has not been verified by the -store. - -How to upload the snap to the store ------------------------------------ -A thorough guide can be found at the [snapcraft.io -site](https://snapcraft.io/docs/build-snaps/publish). - diff --git a/install/linux/snap_old/gui/meshlab.desktop b/install/linux/snap_old/gui/meshlab.desktop deleted file mode 100644 index 7e18ba811..000000000 --- a/install/linux/snap_old/gui/meshlab.desktop +++ /dev/null @@ -1,9 +0,0 @@ -[Desktop Entry] -Type=Application -Name=MeshLab -Comment=Processor and editor of large 3D triangular meshes -Exec=meshlab.meshlab -Terminal=false -Categories=Graphics; -Icon=${SNAP}/meta/gui/meshlab.png - diff --git a/install/linux/snap_old/gui/meshlab.png b/install/linux/snap_old/gui/meshlab.png deleted file mode 100644 index c9a9885e2..000000000 Binary files a/install/linux/snap_old/gui/meshlab.png and /dev/null differ diff --git a/install/linux/snap_old/snapcraft.yaml b/install/linux/snap_old/snapcraft.yaml deleted file mode 100644 index a0bcea1d1..000000000 --- a/install/linux/snap_old/snapcraft.yaml +++ /dev/null @@ -1,67 +0,0 @@ -# Known to build in Ubuntu 17.04 -name: meshlab -version: '2017.03-1' -summary: MeshLab -description: | - The open source system for processing and editing 3D triangular meshes. - It provides a set of tools for editing, cleaning, healing, inspecting, - rendering, texturing and converting meshes. It offers features for processing - raw data produced by 3D digitization tools/devices and for preparing models - for 3D printing. -icon: snap/gui/meshlab.png - -grade: stable -confinement: strict - -apps: - meshlab: - command: desktop-launch meshlab - plugs: [home, x11, mir, opengl, unity7] - meshlabserver: - command: desktop-launch meshlabserver - plugs: [home, x11, opengl] - - -parts: - meshlab: - after: [desktop-qt5,vcglib] - plugin: qmake - qt-version: qt5 - source: https://github.com/cnr-isti-vclab/meshlab.git -# source-tag: v2017.03 - build-packages: - - libqt5opengl5-dev - - libqt5xmlpatterns5-dev - - qt5-default - - qtscript5-dev - prepare: | - ln -sf ../vcglib/install ../vcglib - sed -i '/filter_csg/d' src/meshlab_full.pro - sed -i -e '2ilinux:QMAKE_LFLAGS += -fopenmp -lgomp\' src/meshlabplugins/filter_screened_poisson/filter_screened_poisson.pro - sed -i 's|PR_XXXXXX|/tmp/PR_XXXXXX|' src/meshlabplugins/filter_screened_poisson/Src/Geometry.cpp - build: | - cd src/external - qmake external.pro - make -j4 - cd .. - qmake meshlab_full.pro - make -j4 - install: | - cp src/meshlabplugins/filter_screened_poisson/filter_screened_poisson.xml \ - src/meshlabplugins/filter_mutualinfoxml/filter_mutualinfo.xml \ - src/meshlabplugins/filter_measure/filter_measure.xml \ - src/distrib/plugins/ - cd src/distrib - mkdir -p $SNAPCRAFT_PART_INSTALL/bin - cp -a meshlab* plugins shaders textures $SNAPCRAFT_PART_INSTALL/bin - mkdir -p $SNAPCRAFT_PART_INSTALL/lib - cp -a lib* $SNAPCRAFT_PART_INSTALL/lib - vcglib: - plugin: dump -# source: https://github.com/cnr-isti-vclab/vcglib.git -# source-tag: v1.0.2 - source: https://github.com/cnr-isti-vclab/vcglib.git - source-branch: devel - - -vcglib/apps - prime: [ -* ] - diff --git a/install/meshlab.png b/install/meshlab.png index c9a9885e2..2f787916d 100644 Binary files a/install/meshlab.png and b/install/meshlab.png differ diff --git a/install/windows/resources/old/meshlab-64bit-appveyor.nsi b/install/windows/resources/old/meshlab-64bit-appveyor.nsi deleted file mode 100644 index 115361caa..000000000 --- a/install/windows/resources/old/meshlab-64bit-appveyor.nsi +++ /dev/null @@ -1,380 +0,0 @@ -; Script generated by the HM NIS Edit Script Wizard. - -; HM NIS Edit Wizard helper defines - -!define MAINDIR $PROGRAMFILES64 -!define PRODUCT_NAME "MeshLab_64b" -!define PRODUCT_VERSION "2018.03" -!define PRODUCT_PUBLISHER "Paolo Cignoni - Guido Ranzuglia VCG - ISTI - CNR" -!define PRODUCT_WEB_SITE "http://www.meshlab.net" -!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\meshlab.exe" -!define PRODUCT_DIR_REGKEY_S "Software\Microsoft\Windows\CurrentVersion\App Paths\meshlabserver.exe" -!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" -!define PRODUCT_UNINST_ROOT_KEY "HKLM" -;!define QT_BASE "C:\Qt_5.7\5.7\msvc2015_64\" -;!define QT_BASE ${QTDIR} -ReadEnvStr $QT_BASE "QTDIR" -!define ADDITIONAL_DLLS "C:\Users\ranzuglia\Desktop\MeshLab-related\additional_dlls" -!define ICU_DLLS "${ADDITIONAL_DLLS}\icu\bin64" -!define DISTRIB_FOLDER "../distrib" -!define MICROSOFT_VS2010_REDIST_KEYDIR "Software\Microsoft\Windows\CurrentVersion\Uninstall\" - -; MUI 1.67 compatible ----- -!include "MUI.nsh" - -; MUI Settings -!define MUI_ABORTWARNING -!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico" -!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" - -; Welcome page -!insertmacro MUI_PAGE_WELCOME -; License page -!insertmacro MUI_PAGE_LICENSE "..\..\LICENSE.txt" -; License page -!insertmacro MUI_PAGE_LICENSE "..\..\docs\privacy.txt" -; Directory page -!insertmacro MUI_PAGE_DIRECTORY -; Instfiles page -!insertmacro MUI_PAGE_INSTFILES - - -; Finish page -!define MUI_FINISHPAGE_RUN "$INSTDIR\meshlab.exe" -!insertmacro MUI_PAGE_FINISH - -; Uninstaller pages -!insertmacro MUI_UNPAGE_INSTFILES - -; Language files -!insertmacro MUI_LANGUAGE "English" - -; MUI end ------ -!define /date NOW "%Y_%m_%d" - -Name "${PRODUCT_NAME} ${PRODUCT_VERSION}" -OutFile "MeshLab2016.12_${NOW}.exe" -;InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" "" -InstallDir "${MAINDIR}\VCG\MeshLab" -ShowInstDetails show -ShowUnInstDetails show - -!include LogicLib.nsh -!macro IfKeyExists ROOT MAIN_KEY KEY - Push $R0 - Push $R1 - Push $R2 - - # XXX bug if ${ROOT}, ${MAIN_KEY} or ${KEY} use $R0 or $R1 - SetRegView 64 - StrCpy $R1 "0" # loop index - StrCpy $R2 "0" # not found - ;MessageBox MB_OK "Passato : ${MAIN_KEY}" - ${Do} - EnumRegKey $R0 ${ROOT} "${MAIN_KEY}" "$R1" - ;MessageBox MB_OK "Letto : $R0" - ${If} $R0 == "${KEY}" - StrCpy $R2 "1" # found - ${Break} - ${EndIf} - IntOp $R1 $R1 + 1 - ${LoopWhile} $R0 != "" - - ClearErrors - - Exch 2 - Pop $R0 - Pop $R1 - Exch $R2 -!macroend - -Section "MainSection" SEC01 - SetOutPath "$INSTDIR" - SetOverwrite on - File "${DISTRIB_FOLDER}\meshlab.exe" - File "${DISTRIB_FOLDER}\meshlabserver.exe" - CreateDirectory "$SMPROGRAMS\MeshLab" - CreateShortCut "$SMPROGRAMS\MeshLab\MeshLab.lnk" "$INSTDIR\meshlab.exe" - CreateShortCut "$DESKTOP\MeshLab.lnk" "$INSTDIR\meshlab.exe" - CreateShortCut "$SMPROGRAMS\MeshLab\MeshLabServer.lnk" "cmd.exe /k $INSTDIR\meshlabserver.exe" - - ;Let's delete all the dangerous stuff from previous releases. - Delete "$INSTDIR\qt*.dll" - Delete "$INSTDIR\ming*.dll" - Delete "$INSTDIR\plugins\*.dll" - Delete "$INSTDIR\imageformats\*.dll" - Delete "$INSTDIR\platforms\*.dll" - - SetOutPath "$INSTDIR\shaders" - File "${DISTRIB_FOLDER}\shaders\*.frag" - File "${DISTRIB_FOLDER}\shaders\*.gdp" - File "${DISTRIB_FOLDER}\shaders\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\ao" - SetOutPath "$INSTDIR\shaders\decorate_shadow\sm" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\sm\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\sm\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\ssao" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\ssao\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\ssao\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\vsm" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsm\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsm\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\vsmb" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsmb\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsmb\*.vert" - File "${DISTRIB_FOLDER}\shaders\*.frag" - SetOutPath "$INSTDIR\plugins" - - ; MeshLab plugins - File "${DISTRIB_FOLDER}/plugins\*.dll" - File "${DISTRIB_FOLDER}/plugins\*.xml" - - ; All the U3D binary stuff - SetOutPath "$INSTDIR\plugins\U3D_W32" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\IDTFConverter.exe" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\*.dll" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\*.txt" - SetOutPath "$INSTDIR\plugins\U3D_W32\plugins" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\Plugins\IFXExporting.dll" - - SetOutPath "$INSTDIR\textures" - File "${DISTRIB_FOLDER}/textures\chrome.png" - File "${DISTRIB_FOLDER}/textures\*.dds" - File "${DISTRIB_FOLDER}/textures\fur.png" - File "${DISTRIB_FOLDER}/textures\glyphmosaic.png" - ;File "${DISTRIB_FOLDER}/textures\NPR Metallic Outline.tga" - File "${DISTRIB_FOLDER}/textures\hatch*.jpg" - - SetOutPath "$INSTDIR\textures\litspheres" - File "${DISTRIB_FOLDER}/textures\litspheres\*.png" - - SetOutPath "$INSTDIR\textures\cubemaps" - File "${DISTRIB_FOLDER}/textures\cubemaps\uffizi*.jpg" - SetOutPath "$INSTDIR\samples" - File "${DISTRIB_FOLDER}/sample\texturedknot.ply" - File "${DISTRIB_FOLDER}/sample\texturedknot.obj" - File "${DISTRIB_FOLDER}/sample\texturedknot.mtl" - File "${DISTRIB_FOLDER}/sample\TextureDouble_A.png" - File "${DISTRIB_FOLDER}/sample\Laurana50k.ply" - File "${DISTRIB_FOLDER}/sample\duck_triangulate.dae" - File "${DISTRIB_FOLDER}/sample\seashell.gts" - File "${DISTRIB_FOLDER}/sample\chameleon4k.pts" - File "${DISTRIB_FOLDER}/sample\normalmap\laurana500.*" - File "${DISTRIB_FOLDER}/sample\normalmap\matteonormb.*" - SetOutPath "$INSTDIR\samples\images" - File "${DISTRIB_FOLDER}/sample\images\duckCM.jpg" - SetOutPath "$INSTDIR\imageformats" - File "${QT_BASE}\plugins\imageformats\qjpeg.dll" - File "${QT_BASE}\plugins\imageformats\qgif.dll" - File "${QT_BASE}\plugins\imageformats\qtiff.dll" - SetOutPath "$INSTDIR\platforms" - File "${QT_BASE}\plugins\platforms\qminimal.dll" - File "${QT_BASE}\plugins\platforms\qwindows.dll" - - SetOutPath "$INSTDIR" - ;File "${DISTRIB_FOLDER}\common.lib" - File "${QT_BASE}\bin\Qt5Core.dll" - File "${QT_BASE}\bin\Qt5Gui.dll" - File "${QT_BASE}\bin\Qt5OpenGL.dll" - File "${QT_BASE}\bin\Qt5Xml.dll" - File "${QT_BASE}\bin\Qt5Network.dll" - File "${QT_BASE}\bin\Qt5Script.dll" - File "${QT_BASE}\bin\Qt5XmlPatterns.dll" - File "${QT_BASE}\bin\Qt5Widgets.dll" - File "${ICU_DLLS}\icuin51.dll" - File "${ICU_DLLS}\icudt51.dll" - File "${ICU_DLLS}\icuuc51.dll" - File "${ADDITIONAL_DLLS}\vc_redist.x64.exe" - - ;File "C:\MinGW\bin\mingwm10.dll" - ;File "${QT_BASE}\..\mingw\bin\mingwm10.dll" - ;File "${QT_BASE}\..\mingw\bin\libgcc_s_dw2-1.dll" - ;File "${QT_BASE}\..\mingw\bin\libgomp-1.dll" - - File "..\..\docs\readme.txt" - ;File "..\..\docs\history.txt" - File "..\..\LICENSE.txt" -SectionEnd - -Section -Prerequisites - ;EnumRegKey $0 HKCR "SOFTWARE\Test" 0 - ;ReadRegStr $0 HKLM ${MICROSOFT_VS2008_REDIST_KEYDIR} ${MICROSOFT_VS2008_X64} - ;MessageBox MB_OK "Letto : $0" - ;Quit - - ;!insertmacro IfKeyExists HKLM ${MICROSOFT_VS2010_REDIST_KEYDIR} ${MICROSOFT_VS2010_X64} - ;Pop $R0 - ;${If} $R0 == "1" - ; Goto endPrerequisites - ;${Else} - ; !insertmacro IfKeyExists HKLM ${MICROSOFT_VS2010_REDIST_KEYDIR} ${MICROSOFT_VS2010_IA64} - ; Pop $R0 - ; ${If} $R0 == "1" - ; Goto endPrerequisites - ; ${Else} - ; MessageBox MB_OK "Your system does not appear to have $\"Microsoft Visual C++ 2010 SP1 Redistributable Package (x64) installed$\".$\r MeshLab's Installation process will be aborted.$\r Please, install it and restart the MeshLab installer!" - ; Quit - ; ${Endif} - ;${Endif} - ;endPrerequisites: - ReadRegStr $1 HKLM "SOFTWARE\Microsoft\VisualStudio\14.0\VC\Runtimes\x64" "Installed" - ${If} $1 == "1" - Goto endPrerequisites - ${Else} - ExecWait "$INSTDIR\vc_redist.x64.exe" - ${EndIf} - endPrerequisites: -SectionEnd - -Section -AdditionalIcons - WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}" - CreateShortCut "$SMPROGRAMS\MeshLab\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url" - CreateShortCut "$SMPROGRAMS\MeshLab\Uninstall.lnk" "$INSTDIR\uninst.exe" -SectionEnd - -Section -Post - WriteUninstaller "$INSTDIR\uninst.exe" - WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\meshlab.exe" - WriteRegStr HKLM "${PRODUCT_DIR_REGKEY_S}" "" "$INSTDIR\meshlabserver.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\meshlab.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}" -SectionEnd - - -Function un.onUninstSuccess - HideWindow - MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer." -FunctionEnd - -Function un.onInit - MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2 - Abort -FunctionEnd - -Section Uninstall - Delete "$INSTDIR\${PRODUCT_NAME}.url" - Delete "$INSTDIR\*.dll" - Delete "$INSTDIR\*.txt" - Delete "$INSTDIR\*.exe" - Delete "$INSTDIR\shaders\*.frag" - Delete "$INSTDIR\shaders\*.vert" - Delete "$INSTDIR\shaders\*.gdp" - Delete "$INSTDIR\shadersrm\*.rfx" - Delete "$INSTDIR\samples\*.*" - Delete "$INSTDIR\samples\images\*.*" - Delete "$INSTDIR\plugins\*.dll" - Delete "$INSTDIR\plugins\U3D_W32\*.dll" - Delete "$INSTDIR\plugins\U3D_W32\*.exe" - Delete "$INSTDIR\plugins\U3D_W32\*.txt" - Delete "$INSTDIR\plugins\U3D_W32\plugins\*.dll" - Delete "$INSTDIR\plugins\*.dll" - Delete "$INSTDIR\imageformats\*.dll" - Delete "$INSTDIR\textures\*.png" - Delete "$INSTDIR\textures\*.dds" - Delete "$INSTDIR\textures\cubemaps\*.jpg" - Delete "$INSTDIR\textures\*.jpg" - Delete "$INSTDIR\textures\*.tga" - - Delete "$SMPROGRAMS\MeshLab\Uninstall.lnk" - Delete "$SMPROGRAMS\MeshLab\Website.lnk" - Delete "$DESKTOP\MeshLab.lnk" - Delete "$SMPROGRAMS\MeshLab\MeshLab.lnk" - - RMDir "$SMPROGRAMS\MeshLab" - RMDir "$INSTDIR\CVS" - RMDir "$INSTDIR\imageformats" - RMDir "$INSTDIR\plugins\U3D_W32\plugins" - RMDir "$INSTDIR\plugins\U3D_W32" - RMDir "$INSTDIR\plugins" - RMDir "$INSTDIR\samples\images" - RMDir "$INSTDIR\samples" - RMDir "$INSTDIR\textures\cubemaps" - RMDir /r "$INSTDIR\textures" - RMDir /r "$INSTDIR\shaders" - RMDir /r "$INSTDIR\shadersrm" - RMDir /r "$INSTDIR" - - DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" - DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}" - DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY_S}" - SetAutoClose true -SectionEnd - - ;******************** PARTE SPERIMENTALE SULLE ASSOCIAZIONI FILE **************** -;Things that need to be extracted on startup (keep these lines before any File command!) -;Only useful for BZIP2 compression -;Use ReserveFile for your own InstallOptions INI files too! - -!define TEMP1 $R0 ;Temp variable - -ReserveFile "${NSISDIR}\Plugins\InstallOptions.dll" -; ReserveFile "fileassociation_nsis.ini" - -;Order of pages -; la prox linea se scommnentata serve ad abilitare il loading di una pagine aggiuntiva -; in cui si settano le associazioni file extensions-registro per il meshlab. -; Page custom SetCustom ValidateCustom ": Testing InstallOptions" ;Custom page. InstallOptions gets called in SetCustom. -;Page instfiles - -Section "Components" - - ;Get Install Options dialog user input - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 2" "State" - DetailPrint "Install X=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 3" "State" - DetailPrint "Install Y=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 4" "State" - DetailPrint "Install Z=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 5" "State" - DetailPrint "File=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 6" "State" - DetailPrint "Dir=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 8" "State" - DetailPrint "Info=${TEMP1}" - -SectionEnd - -Function .onInit - - ;Extract InstallOptions files - ;$PLUGINSDIR will automatically be removed when the installer closes - - InitPluginsDir -; File /oname=$PLUGINSDIR\fileassociation_nsis.ini "fileassociation_nsis.ini" - -FunctionEnd - -Function SetCustom - - ;Display the InstallOptions dialog - - Push ${TEMP1} - - InstallOptions::dialog "$PLUGINSDIR\fileassociation_nsis.ini" - Pop ${TEMP1} - - Pop ${TEMP1} - -FunctionEnd - -Function ValidateCustom - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 2" "State" - StrCmp ${TEMP1} 1 done - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 3" "State" - StrCmp ${TEMP1} 1 done - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 4" "State" - StrCmp ${TEMP1} 1 done - MessageBox MB_ICONEXCLAMATION|MB_OK "You must select at least one install option!" - Abort - - done: - -FunctionEnd diff --git a/install/windows/resources/old/meshlab-64bit.nsi b/install/windows/resources/old/meshlab-64bit.nsi deleted file mode 100644 index aa67ffb38..000000000 --- a/install/windows/resources/old/meshlab-64bit.nsi +++ /dev/null @@ -1,379 +0,0 @@ -; Script generated by the HM NIS Edit Script Wizard. - -; HM NIS Edit Wizard helper defines - - -!define MAINDIR $PROGRAMFILES64 -!define PRODUCT_NAME "MeshLab_64b" -!define PRODUCT_VERSION "2018.03" -!define PRODUCT_PUBLISHER "Paolo Cignoni - Guido Ranzuglia VCG - ISTI - CNR" -!define PRODUCT_WEB_SITE "http://www.meshlab.net" -!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\meshlab.exe" -!define PRODUCT_DIR_REGKEY_S "Software\Microsoft\Windows\CurrentVersion\App Paths\meshlabserver.exe" -!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" -!define PRODUCT_UNINST_ROOT_KEY "HKLM" -!define QT_BASE "C:\Qt_5.7\5.7\msvc2015_64\" -!define ADDITIONAL_DLLS "C:\Users\ranzuglia\Desktop\MeshLab-related\additional_dlls" -!define ICU_DLLS "${ADDITIONAL_DLLS}\icu\bin64" -!define DISTRIB_FOLDER "../distrib" -!define MICROSOFT_VS2010_REDIST_KEYDIR "Software\Microsoft\Windows\CurrentVersion\Uninstall\" - -; MUI 1.67 compatible ----- -!include "MUI.nsh" - -; MUI Settings -!define MUI_ABORTWARNING -!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico" -!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" - -; Welcome page -!insertmacro MUI_PAGE_WELCOME -; License page -!insertmacro MUI_PAGE_LICENSE "..\..\LICENSE.txt" -; License page -!insertmacro MUI_PAGE_LICENSE "..\..\docs\privacy.txt" -; Directory page -!insertmacro MUI_PAGE_DIRECTORY -; Instfiles page -!insertmacro MUI_PAGE_INSTFILES - - -; Finish page -!define MUI_FINISHPAGE_RUN "$INSTDIR\meshlab.exe" -!insertmacro MUI_PAGE_FINISH - -; Uninstaller pages -!insertmacro MUI_UNPAGE_INSTFILES - -; Language files -!insertmacro MUI_LANGUAGE "English" - -; MUI end ------ -!define /date NOW "%Y_%m_%d" - -Name "${PRODUCT_NAME} ${PRODUCT_VERSION}" -OutFile "MeshLab2016.12_${NOW}.exe" -;InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" "" -InstallDir "${MAINDIR}\VCG\MeshLab" -ShowInstDetails show -ShowUnInstDetails show - -!include LogicLib.nsh -!macro IfKeyExists ROOT MAIN_KEY KEY - Push $R0 - Push $R1 - Push $R2 - - # XXX bug if ${ROOT}, ${MAIN_KEY} or ${KEY} use $R0 or $R1 - SetRegView 64 - StrCpy $R1 "0" # loop index - StrCpy $R2 "0" # not found - ;MessageBox MB_OK "Passato : ${MAIN_KEY}" - ${Do} - EnumRegKey $R0 ${ROOT} "${MAIN_KEY}" "$R1" - ;MessageBox MB_OK "Letto : $R0" - ${If} $R0 == "${KEY}" - StrCpy $R2 "1" # found - ${Break} - ${EndIf} - IntOp $R1 $R1 + 1 - ${LoopWhile} $R0 != "" - - ClearErrors - - Exch 2 - Pop $R0 - Pop $R1 - Exch $R2 -!macroend - -Section "MainSection" SEC01 - SetOutPath "$INSTDIR" - SetOverwrite on - File "${DISTRIB_FOLDER}\meshlab.exe" - File "${DISTRIB_FOLDER}\meshlabserver.exe" - CreateDirectory "$SMPROGRAMS\MeshLab" - CreateShortCut "$SMPROGRAMS\MeshLab\MeshLab.lnk" "$INSTDIR\meshlab.exe" - CreateShortCut "$DESKTOP\MeshLab.lnk" "$INSTDIR\meshlab.exe" - CreateShortCut "$SMPROGRAMS\MeshLab\MeshLabServer.lnk" "cmd.exe /k $INSTDIR\meshlabserver.exe" - - ;Let's delete all the dangerous stuff from previous releases. - Delete "$INSTDIR\qt*.dll" - Delete "$INSTDIR\ming*.dll" - Delete "$INSTDIR\plugins\*.dll" - Delete "$INSTDIR\imageformats\*.dll" - Delete "$INSTDIR\platforms\*.dll" - - SetOutPath "$INSTDIR\shaders" - File "${DISTRIB_FOLDER}\shaders\*.frag" - File "${DISTRIB_FOLDER}\shaders\*.gdp" - File "${DISTRIB_FOLDER}\shaders\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\ao" - SetOutPath "$INSTDIR\shaders\decorate_shadow\sm" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\sm\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\sm\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\ssao" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\ssao\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\ssao\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\vsm" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsm\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsm\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\vsmb" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsmb\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsmb\*.vert" - File "${DISTRIB_FOLDER}\shaders\*.frag" - SetOutPath "$INSTDIR\plugins" - - ; MeshLab plugins - File "${DISTRIB_FOLDER}/plugins\*.dll" - File "${DISTRIB_FOLDER}/plugins\*.xml" - - ; All the U3D binary stuff - SetOutPath "$INSTDIR\plugins\U3D_W32" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\IDTFConverter.exe" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\*.dll" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\*.txt" - SetOutPath "$INSTDIR\plugins\U3D_W32\plugins" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\Plugins\IFXExporting.dll" - - SetOutPath "$INSTDIR\textures" - File "${DISTRIB_FOLDER}/textures\chrome.png" - File "${DISTRIB_FOLDER}/textures\*.dds" - File "${DISTRIB_FOLDER}/textures\fur.png" - File "${DISTRIB_FOLDER}/textures\glyphmosaic.png" - ;File "${DISTRIB_FOLDER}/textures\NPR Metallic Outline.tga" - File "${DISTRIB_FOLDER}/textures\hatch*.jpg" - - SetOutPath "$INSTDIR\textures\litspheres" - File "${DISTRIB_FOLDER}/textures\litspheres\*.png" - - SetOutPath "$INSTDIR\textures\cubemaps" - File "${DISTRIB_FOLDER}/textures\cubemaps\uffizi*.jpg" - SetOutPath "$INSTDIR\samples" - File "${DISTRIB_FOLDER}/sample\texturedknot.ply" - File "${DISTRIB_FOLDER}/sample\texturedknot.obj" - File "${DISTRIB_FOLDER}/sample\texturedknot.mtl" - File "${DISTRIB_FOLDER}/sample\TextureDouble_A.png" - File "${DISTRIB_FOLDER}/sample\Laurana50k.ply" - File "${DISTRIB_FOLDER}/sample\duck_triangulate.dae" - File "${DISTRIB_FOLDER}/sample\seashell.gts" - File "${DISTRIB_FOLDER}/sample\chameleon4k.pts" - File "${DISTRIB_FOLDER}/sample\normalmap\laurana500.*" - File "${DISTRIB_FOLDER}/sample\normalmap\matteonormb.*" - SetOutPath "$INSTDIR\samples\images" - File "${DISTRIB_FOLDER}/sample\images\duckCM.jpg" - SetOutPath "$INSTDIR\imageformats" - File "${QT_BASE}\plugins\imageformats\qjpeg.dll" - File "${QT_BASE}\plugins\imageformats\qgif.dll" - File "${QT_BASE}\plugins\imageformats\qtiff.dll" - SetOutPath "$INSTDIR\platforms" - File "${QT_BASE}\plugins\platforms\qminimal.dll" - File "${QT_BASE}\plugins\platforms\qwindows.dll" - - SetOutPath "$INSTDIR" - ;File "${DISTRIB_FOLDER}\common.lib" - File "${QT_BASE}\bin\Qt5Core.dll" - File "${QT_BASE}\bin\Qt5Gui.dll" - File "${QT_BASE}\bin\Qt5OpenGL.dll" - File "${QT_BASE}\bin\Qt5Xml.dll" - File "${QT_BASE}\bin\Qt5Network.dll" - File "${QT_BASE}\bin\Qt5Script.dll" - File "${QT_BASE}\bin\Qt5XmlPatterns.dll" - File "${QT_BASE}\bin\Qt5Widgets.dll" - File "${ICU_DLLS}\icuin51.dll" - File "${ICU_DLLS}\icudt51.dll" - File "${ICU_DLLS}\icuuc51.dll" - File "${ADDITIONAL_DLLS}\vc_redist.x64.exe" - - ;File "C:\MinGW\bin\mingwm10.dll" - ;File "${QT_BASE}\..\mingw\bin\mingwm10.dll" - ;File "${QT_BASE}\..\mingw\bin\libgcc_s_dw2-1.dll" - ;File "${QT_BASE}\..\mingw\bin\libgomp-1.dll" - - File "..\..\docs\readme.txt" - ;File "..\..\docs\history.txt" - File "..\..\LICENSE.txt" -SectionEnd - -Section -Prerequisites - ;EnumRegKey $0 HKCR "SOFTWARE\Test" 0 - ;ReadRegStr $0 HKLM ${MICROSOFT_VS2008_REDIST_KEYDIR} ${MICROSOFT_VS2008_X64} - ;MessageBox MB_OK "Letto : $0" - ;Quit - - ;!insertmacro IfKeyExists HKLM ${MICROSOFT_VS2010_REDIST_KEYDIR} ${MICROSOFT_VS2010_X64} - ;Pop $R0 - ;${If} $R0 == "1" - ; Goto endPrerequisites - ;${Else} - ; !insertmacro IfKeyExists HKLM ${MICROSOFT_VS2010_REDIST_KEYDIR} ${MICROSOFT_VS2010_IA64} - ; Pop $R0 - ; ${If} $R0 == "1" - ; Goto endPrerequisites - ; ${Else} - ; MessageBox MB_OK "Your system does not appear to have $\"Microsoft Visual C++ 2010 SP1 Redistributable Package (x64) installed$\".$\r MeshLab's Installation process will be aborted.$\r Please, install it and restart the MeshLab installer!" - ; Quit - ; ${Endif} - ;${Endif} - ;endPrerequisites: - ReadRegStr $1 HKLM "SOFTWARE\Microsoft\VisualStudio\14.0\VC\Runtimes\x64" "Installed" - ${If} $1 == "1" - Goto endPrerequisites - ${Else} - ExecWait '"$INSTDIR\vc_redist.x64.exe" /q /norestart' - ${EndIf} - endPrerequisites: -SectionEnd - -Section -AdditionalIcons - WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}" - CreateShortCut "$SMPROGRAMS\MeshLab\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url" - CreateShortCut "$SMPROGRAMS\MeshLab\Uninstall.lnk" "$INSTDIR\uninst.exe" -SectionEnd - -Section -Post - WriteUninstaller "$INSTDIR\uninst.exe" - WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\meshlab.exe" - WriteRegStr HKLM "${PRODUCT_DIR_REGKEY_S}" "" "$INSTDIR\meshlabserver.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\meshlab.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}" -SectionEnd - - -Function un.onUninstSuccess - HideWindow - MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer." -FunctionEnd - -Function un.onInit - MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2 - Abort -FunctionEnd - -Section Uninstall - Delete "$INSTDIR\${PRODUCT_NAME}.url" - Delete "$INSTDIR\*.dll" - Delete "$INSTDIR\*.txt" - Delete "$INSTDIR\*.exe" - Delete "$INSTDIR\shaders\*.frag" - Delete "$INSTDIR\shaders\*.vert" - Delete "$INSTDIR\shaders\*.gdp" - Delete "$INSTDIR\shadersrm\*.rfx" - Delete "$INSTDIR\samples\*.*" - Delete "$INSTDIR\samples\images\*.*" - Delete "$INSTDIR\plugins\*.dll" - Delete "$INSTDIR\plugins\U3D_W32\*.dll" - Delete "$INSTDIR\plugins\U3D_W32\*.exe" - Delete "$INSTDIR\plugins\U3D_W32\*.txt" - Delete "$INSTDIR\plugins\U3D_W32\plugins\*.dll" - Delete "$INSTDIR\plugins\*.dll" - Delete "$INSTDIR\imageformats\*.dll" - Delete "$INSTDIR\textures\*.png" - Delete "$INSTDIR\textures\*.dds" - Delete "$INSTDIR\textures\cubemaps\*.jpg" - Delete "$INSTDIR\textures\*.jpg" - Delete "$INSTDIR\textures\*.tga" - - Delete "$SMPROGRAMS\MeshLab\Uninstall.lnk" - Delete "$SMPROGRAMS\MeshLab\Website.lnk" - Delete "$DESKTOP\MeshLab.lnk" - Delete "$SMPROGRAMS\MeshLab\MeshLab.lnk" - - RMDir "$SMPROGRAMS\MeshLab" - RMDir "$INSTDIR\CVS" - RMDir "$INSTDIR\imageformats" - RMDir "$INSTDIR\plugins\U3D_W32\plugins" - RMDir "$INSTDIR\plugins\U3D_W32" - RMDir "$INSTDIR\plugins" - RMDir "$INSTDIR\samples\images" - RMDir "$INSTDIR\samples" - RMDir "$INSTDIR\textures\cubemaps" - RMDir /r "$INSTDIR\textures" - RMDir /r "$INSTDIR\shaders" - RMDir /r "$INSTDIR\shadersrm" - RMDir /r "$INSTDIR" - - DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" - DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}" - DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY_S}" - SetAutoClose true -SectionEnd - - ;******************** PARTE SPERIMENTALE SULLE ASSOCIAZIONI FILE **************** -;Things that need to be extracted on startup (keep these lines before any File command!) -;Only useful for BZIP2 compression -;Use ReserveFile for your own InstallOptions INI files too! - -!define TEMP1 $R0 ;Temp variable - -ReserveFile "${NSISDIR}\Plugins\InstallOptions.dll" -; ReserveFile "fileassociation_nsis.ini" - -;Order of pages -; la prox linea se scommnentata serve ad abilitare il loading di una pagine aggiuntiva -; in cui si settano le associazioni file extensions-registro per il meshlab. -; Page custom SetCustom ValidateCustom ": Testing InstallOptions" ;Custom page. InstallOptions gets called in SetCustom. -;Page instfiles - -Section "Components" - - ;Get Install Options dialog user input - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 2" "State" - DetailPrint "Install X=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 3" "State" - DetailPrint "Install Y=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 4" "State" - DetailPrint "Install Z=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 5" "State" - DetailPrint "File=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 6" "State" - DetailPrint "Dir=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 8" "State" - DetailPrint "Info=${TEMP1}" - -SectionEnd - -Function .onInit - - ;Extract InstallOptions files - ;$PLUGINSDIR will automatically be removed when the installer closes - - InitPluginsDir -; File /oname=$PLUGINSDIR\fileassociation_nsis.ini "fileassociation_nsis.ini" - -FunctionEnd - -Function SetCustom - - ;Display the InstallOptions dialog - - Push ${TEMP1} - - InstallOptions::dialog "$PLUGINSDIR\fileassociation_nsis.ini" - Pop ${TEMP1} - - Pop ${TEMP1} - -FunctionEnd - -Function ValidateCustom - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 2" "State" - StrCmp ${TEMP1} 1 done - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 3" "State" - StrCmp ${TEMP1} 1 done - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 4" "State" - StrCmp ${TEMP1} 1 done - MessageBox MB_ICONEXCLAMATION|MB_OK "You must select at least one install option!" - Abort - - done: - -FunctionEnd diff --git a/install/windows/resources/old/meshlab.nsi b/install/windows/resources/old/meshlab.nsi deleted file mode 100644 index 29b919441..000000000 --- a/install/windows/resources/old/meshlab.nsi +++ /dev/null @@ -1,417 +0,0 @@ -; Script generated by the HM NIS Edit Script Wizard. - -; HM NIS Edit Wizard helper defines -!define PRODUCT_NAME "MeshLab" -!define PRODUCT_VERSION "1.3.3" -!define PRODUCT_PUBLISHER "Paolo Cignoni, Guido Ranzuglia VCG - ISTI - CNR" -!define PRODUCT_WEB_SITE "http://www.meshlab.net" -!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\meshlab.exe" -!define PRODUCT_DIR_REGKEY_S "Software\Microsoft\Windows\CurrentVersion\App Paths\meshlabserver.exe" -!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" -!define PRODUCT_UNINST_ROOT_KEY "HKLM" -!define QT_BASE "C:\Qt\Qt5.2.1_32bit\5.2.1\mingw48_32" -!define MINGW_BASE "C:\MinGW" -!define DISTRIB_FOLDER "../distrib" - -; MUI 1.67 compatible ------ -!include "MUI.nsh" - -; MUI Settings -!define MUI_ABORTWARNING -!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico" -!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" - -; Welcome page -!insertmacro MUI_PAGE_WELCOME -; License page -!insertmacro MUI_PAGE_LICENSE "..\..\LICENSE.txt" -; License page -!insertmacro MUI_PAGE_LICENSE "..\..\docs\privacy.txt" -; Directory page -!insertmacro MUI_PAGE_DIRECTORY -; Instfiles page -!insertmacro MUI_PAGE_INSTFILES - - -; Finish page -!define MUI_FINISHPAGE_RUN "$INSTDIR\meshlab.exe" -!insertmacro MUI_PAGE_FINISH - -; Uninstaller pages -!insertmacro MUI_UNPAGE_INSTFILES - -; Language files -!insertmacro MUI_LANGUAGE "English" - -; MUI end ------ -!define /date NOW "%Y_%m_%d" - -Name "${PRODUCT_NAME} ${PRODUCT_VERSION}" -OutFile "MeshLab_v133.exe" -InstallDir "$PROGRAMFILES32\VCG\MeshLab" -InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" "" -ShowInstDetails show -ShowUnInstDetails show -Section "MainSection" SEC01 - SetOutPath "$INSTDIR" - SetOverwrite on - File "${DISTRIB_FOLDER}\meshlab.exe" - File "${DISTRIB_FOLDER}\meshlabserver.exe" - - SetShellVarContext all - CreateDirectory "$SMPROGRAMS\MeshLab" - CreateShortCut "$SMPROGRAMS\MeshLab\MeshLab.lnk" "$INSTDIR\meshlab.exe" - CreateShortCut "$DESKTOP\MeshLab.lnk" "$INSTDIR\meshlab.exe" - CreateShortCut "$SMPROGRAMS\MeshLab\MeshLabServer.lnk" "cmd.exe" - - ;Let's delete all the dangerous stuff from previous releases. - Delete "$INSTDIR\qt*.dll" - Delete "$INSTDIR\ming*.dll" - Delete "$INSTDIR\plugins\*.dll" - Delete "$INSTDIR\imageformats\*.dll" - - SetOutPath "$INSTDIR\shaders" - File "${DISTRIB_FOLDER}\shaders\*.frag" - File "${DISTRIB_FOLDER}\shaders\*.gdp" - File "${DISTRIB_FOLDER}\shaders\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\ao" - SetOutPath "$INSTDIR\shaders\decorate_shadow\sm" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\sm\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\sm\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\ssao" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\ssao\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\ssao\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\vsm" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsm\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsm\*.vert" - SetOutPath "$INSTDIR\shaders\decorate_shadow\vsmb" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsmb\*.frag" - File "${DISTRIB_FOLDER}\shaders\decorate_shadow\vsmb\*.vert" - File "${DISTRIB_FOLDER}\shaders\*.frag" - SetOutPath "$INSTDIR\shaders\shadersrm" - File "${DISTRIB_FOLDER}\shaders\shadersrm\*.rfx" - SetOutPath "$INSTDIR\plugins" - ; IO Plugins (9) - File "${DISTRIB_FOLDER}/plugins\io_base.dll" - File "${DISTRIB_FOLDER}/plugins\io_bre.dll" - File "${DISTRIB_FOLDER}/plugins\io_ctm.dll" - File "${DISTRIB_FOLDER}/plugins\io_collada.dll" - File "${DISTRIB_FOLDER}/plugins\io_3ds.dll" - File "${DISTRIB_FOLDER}/plugins\io_json.dll" - File "${DISTRIB_FOLDER}/plugins\io_u3d.dll" - File "${DISTRIB_FOLDER}/plugins\io_x3d.dll" - File "${DISTRIB_FOLDER}/plugins\io_tri.dll" - File "${DISTRIB_FOLDER}/plugins\io_expe.dll" - File "${DISTRIB_FOLDER}/plugins\io_gts.dll" - File "${DISTRIB_FOLDER}/plugins\io_pdb.dll" - File "${DISTRIB_FOLDER}/plugins\io_m.dll" - File "${DISTRIB_FOLDER}/plugins\io_txt.dll" - - ; filter plugins (23) - File "${DISTRIB_FOLDER}/plugins\filter_ao.dll" - File "${DISTRIB_FOLDER}/plugins\filter_aging.dll" - File "${DISTRIB_FOLDER}/plugins\filter_autoalign.dll" - - File "${DISTRIB_FOLDER}/plugins\filter_bnpts.dll" - - File "${DISTRIB_FOLDER}/plugins\filter_camera.dll" - File "${DISTRIB_FOLDER}/plugins\filter_clean.dll" - File "${DISTRIB_FOLDER}/plugins\filter_colorproc.dll" - File "${DISTRIB_FOLDER}/plugins\filter_color_projection.dll" - File "${DISTRIB_FOLDER}/plugins\filter_colorize.dll" - File "${DISTRIB_FOLDER}/plugins\filter_create.dll" - File "${DISTRIB_FOLDER}/plugins\filter_csg.dll" - - File "${DISTRIB_FOLDER}/plugins\filter_dirt.dll" - File "${DISTRIB_FOLDER}/plugins\filter_fractal.dll" - File "${DISTRIB_FOLDER}/plugins\filter_func.dll" - File "${DISTRIB_FOLDER}/plugins\filter_img_patch_param.dll" - File "${DISTRIB_FOLDER}/plugins\filter_isoparametrization.dll" - File "${DISTRIB_FOLDER}/plugins\filter_layer.dll" - File "${DISTRIB_FOLDER}/plugins\filter_measure.dll" - File "${DISTRIB_FOLDER}/plugins\filter_measure.xml" - File "${DISTRIB_FOLDER}/plugins\filter_meshing.dll" - File "${DISTRIB_FOLDER}/plugins\filter_mls.dll" - File "${DISTRIB_FOLDER}/plugins\filter_mutualinfo.dll" - File "${DISTRIB_FOLDER}/plugins\filter_mutualinfo.xml" - - File "${DISTRIB_FOLDER}/plugins\filter_photosynth.dll" - File "${DISTRIB_FOLDER}/plugins\filter_plymc.dll" - File "${DISTRIB_FOLDER}/plugins\filter_poisson.dll" - File "${DISTRIB_FOLDER}/plugins\filter_qhull.dll" - File "${DISTRIB_FOLDER}/plugins\filter_quality.dll" - - File "${DISTRIB_FOLDER}/plugins\filter_sampling.dll" - File "${DISTRIB_FOLDER}/plugins\filter_sdfgpu.dll" - File "${DISTRIB_FOLDER}/plugins\filter_select.dll" - File "${DISTRIB_FOLDER}/plugins\filter_ssynth.dll" - - - - File "${DISTRIB_FOLDER}/plugins\filter_texture.dll" - File "${DISTRIB_FOLDER}/plugins\filter_trioptimize.dll" - File "${DISTRIB_FOLDER}/plugins\filter_unsharp.dll" - File "${DISTRIB_FOLDER}/plugins\filter_zippering.dll" - - - File "${DISTRIB_FOLDER}/plugins\samplefilter.dll" - ;File "${DISTRIB_FOLDER}/plugins\samplefilterdoc.dll" - File "${DISTRIB_FOLDER}/plugins\samplefilterdyn.dll" - - File "${DISTRIB_FOLDER}/plugins\filter_geodesic.dll" - File "${DISTRIB_FOLDER}/plugins\filter_createiso.dll" - ;File "${DISTRIB_FOLDER}/plugins\filterborder.dll" - - - ; edit plugins (14) - File "${DISTRIB_FOLDER}/plugins\edit_align.dll" - File "${DISTRIB_FOLDER}/plugins\edit_arc3D.dll" - File "${DISTRIB_FOLDER}/plugins\edit_measure.dll" - File "${DISTRIB_FOLDER}/plugins\edit_paint.dll" - File "${DISTRIB_FOLDER}/plugins\edit_point.dll" - ;File "${DISTRIB_FOLDER}/plugins\editrgbtri.dll" - ;File "${DISTRIB_FOLDER}/plugins\editsegment.dll" - - File "${DISTRIB_FOLDER}/plugins\sampleedit.dll" - File "${DISTRIB_FOLDER}/plugins\edit_pickpoints.dll" - File "${DISTRIB_FOLDER}/plugins\edit_quality.dll" - File "${DISTRIB_FOLDER}/plugins\edit_referencing.dll" - - File "${DISTRIB_FOLDER}/plugins\edit_select.dll" - ;File "${DISTRIB_FOLDER}/plugins\edit_texture.dll" - File "${DISTRIB_FOLDER}/plugins\edit_hole.dll" - File "${DISTRIB_FOLDER}/plugins\edit_manipulators.dll" - ;File "${DISTRIB_FOLDER}/plugins\edit_topo.dll" - - ; decorate plugins (2) - File "${DISTRIB_FOLDER}/plugins\decorate_base.dll" - File "${DISTRIB_FOLDER}/plugins\decorate_background.dll" - ;File "${DISTRIB_FOLDER}/plugins\sampledecoration.dll" - File "${DISTRIB_FOLDER}/plugins\decorate_shadow.dll" - File "${DISTRIB_FOLDER}/plugins\decorate_raster_proj.dll" - - ; render plugins (1) - File "${DISTRIB_FOLDER}/plugins\render_splatting.dll" - File "${DISTRIB_FOLDER}/plugins\render_radiance_scaling.dll" - File "${DISTRIB_FOLDER}/plugins\render_gdp.dll" - File "${DISTRIB_FOLDER}/plugins\render_rfx.dll" - - - ; All the U3D binary stuff - SetOutPath "$INSTDIR\plugins\U3D_W32" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\IDTFConverter.exe" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\*.dll" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\*.txt" - SetOutPath "$INSTDIR\plugins\U3D_W32\plugins" - File "${DISTRIB_FOLDER}/plugins\U3D_W32\Plugins\IFXExporting.dll" - - SetOutPath "$INSTDIR\textures" - File "${DISTRIB_FOLDER}/textures\chrome.png" - File "${DISTRIB_FOLDER}/textures\*.dds" - File "${DISTRIB_FOLDER}/textures\fur.png" - File "${DISTRIB_FOLDER}/textures\glyphmosaic.png" - ;File "${DISTRIB_FOLDER}/textures\NPR Metallic Outline.tga" - File "${DISTRIB_FOLDER}/textures\hatch*.jpg" - - SetOutPath "$INSTDIR\textures\litspheres" - File "${DISTRIB_FOLDER}/textures\litspheres\*.png" - - SetOutPath "$INSTDIR\textures\cubemaps" - File "${DISTRIB_FOLDER}/textures\cubemaps\uffizi*.jpg" - SetOutPath "$INSTDIR\samples" - File "${DISTRIB_FOLDER}/sample\texturedknot.ply" - File "${DISTRIB_FOLDER}/sample\texturedknot.obj" - File "${DISTRIB_FOLDER}/sample\texturedknot.mtl" - File "${DISTRIB_FOLDER}/sample\TextureDouble_A.png" - File "${DISTRIB_FOLDER}/sample\Laurana50k.ply" - File "${DISTRIB_FOLDER}/sample\duck_triangulate.dae" - File "${DISTRIB_FOLDER}/sample\seashell.gts" - File "${DISTRIB_FOLDER}/sample\chameleon4k.pts" - File "${DISTRIB_FOLDER}/sample\normalmap\laurana500.*" - File "${DISTRIB_FOLDER}/sample\normalmap\matteonormb.*" - SetOutPath "$INSTDIR\samples\images" - File "${DISTRIB_FOLDER}/sample\images\duckCM.jpg" - SetOutPath "$INSTDIR\imageformats" - File ${QT_BASE}\plugins\imageformats\qjpeg.dll - File ${QT_BASE}\plugins\imageformats\qgif.dll - File ${QT_BASE}\plugins\imageformats\qtiff.dll - SetOutPath "$INSTDIR\plugins\platforms" - File "${QT_BASE}\plugins\platforms\qminimal.dll" - File "${QT_BASE}\plugins\platforms\qwindows.dll" - - SetOutPath "$INSTDIR" - File "${DISTRIB_FOLDER}\common.dll" - File "${QT_BASE}\bin\Qt5Core.dll" - File "${QT_BASE}\bin\Qt5Gui.dll" - File "${QT_BASE}\bin\Qt5OpenGL.dll" - File "${QT_BASE}\bin\Qt5Xml.dll" - File "${QT_BASE}\bin\Qt5Network.dll" - File "${QT_BASE}\bin\Qt5Script.dll" - File "${QT_BASE}\bin\Qt5XmlPatterns.dll" - File "${QT_BASE}\bin\Qt5Widgets.dll" - File "${QT_BASE}\bin\icuin51.dll" - File "${QT_BASE}\bin\icudt51.dll" - File "${QT_BASE}\bin\icuuc51.dll" - File "${QT_BASE}\bin\libgcc_s_dw2-1.dll" - File "${QT_BASE}\bin\libstdc++-6.dll" - File "${QT_BASE}\bin\libwinpthread-1.dll" - File ".\qt.conf" - - File "..\..\docs\readme.txt" - ;File "..\..\docs\history.txt" - File "..\..\docs\gpl.txt" -SectionEnd - -Section -AdditionalIcons - WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}" - CreateShortCut "$SMPROGRAMS\MeshLab\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url" - CreateShortCut "$SMPROGRAMS\MeshLab\Uninstall.lnk" "$INSTDIR\uninst.exe" -SectionEnd - -Section -Post - WriteUninstaller "$INSTDIR\uninst.exe" - WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\meshlab.exe" - WriteRegStr HKLM "${PRODUCT_DIR_REGKEY_S}" "" "$INSTDIR\meshlabserver.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\meshlab.exe" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}" - WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}" -SectionEnd - - -Function un.onUninstSuccess - HideWindow - MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer." -FunctionEnd - -Function un.onInit - MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2 - Abort -FunctionEnd - -Section Uninstall - Delete "$INSTDIR\${PRODUCT_NAME}.url" - Delete "$INSTDIR\*.dll" - Delete "$INSTDIR\*.txt" - Delete "$INSTDIR\*.exe" - Delete "$INSTDIR\shaders\*.frag" - Delete "$INSTDIR\shaders\*.vert" - Delete "$INSTDIR\shaders\*.gdp" - Delete "$INSTDIR\shadersrm\*.rfx" - Delete "$INSTDIR\samples\*.*" - Delete "$INSTDIR\samples\images\*.*" - Delete "$INSTDIR\plugins\*.dll" - Delete "$INSTDIR\plugins\U3D_W32\*.dll" - Delete "$INSTDIR\plugins\U3D_W32\*.exe" - Delete "$INSTDIR\plugins\U3D_W32\*.txt" - Delete "$INSTDIR\plugins\U3D_W32\plugins\*.dll" - Delete "$INSTDIR\plugins\*.dll" - Delete "$INSTDIR\imageformats\*.dll" - Delete "$INSTDIR\textures\*.png" - Delete "$INSTDIR\textures\*.dds" - Delete "$INSTDIR\textures\cubemaps\*.jpg" - Delete "$INSTDIR\textures\*.jpg" - Delete "$INSTDIR\textures\*.tga" - - SetShellVarContext all - Delete "$SMPROGRAMS\MeshLab\Uninstall.lnk" - Delete "$SMPROGRAMS\MeshLab\Website.lnk" - Delete "$DESKTOP\MeshLab.lnk" - Delete "$SMPROGRAMS\MeshLab\MeshLab.lnk" - - RMDir "$SMPROGRAMS\MeshLab" - RMDir "$INSTDIR\CVS" - RMDir "$INSTDIR\imageformats" - RMDir "$INSTDIR\plugins\U3D_W32\plugins" - RMDir "$INSTDIR\plugins\U3D_W32" - RMDir "$INSTDIR\plugins" - RMDir "$INSTDIR\samples\images" - RMDir "$INSTDIR\samples" - RMDir "$INSTDIR\textures\cubemaps" - RMDir /r "$INSTDIR\textures" - RMDir /r "$INSTDIR\shaders" - RMDir /r "$INSTDIR\shadersrm" - RMDir /r "$INSTDIR" - - DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" - DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}" - DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY_S}" - SetAutoClose true -SectionEnd - - ;******************** PARTE SPERIMENTALE SULLE ASSOCIAZIONI FILE **************** -;Things that need to be extracted on startup (keep these lines before any File command!) -;Only useful for BZIP2 compression -;Use ReserveFile for your own InstallOptions INI files too! - -!define TEMP1 $R0 ;Temp variable - -ReserveFile "${NSISDIR}\Plugins\InstallOptions.dll" -; ReserveFile "fileassociation_nsis.ini" - -;Order of pages -; la prox linea se scommnentata serve ad abilitare il loading di una pagine aggiuntiva -; in cui si settano le associazioni file extensions-registro per il meshlab. -; Page custom SetCustom ValidateCustom ": Testing InstallOptions" ;Custom page. InstallOptions gets called in SetCustom. -;Page instfiles - -Section "Components" - - ;Get Install Options dialog user input - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 2" "State" - DetailPrint "Install X=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 3" "State" - DetailPrint "Install Y=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 4" "State" - DetailPrint "Install Z=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 5" "State" - DetailPrint "File=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 6" "State" - DetailPrint "Dir=${TEMP1}" - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 8" "State" - DetailPrint "Info=${TEMP1}" - -SectionEnd - -Function .onInit - - ;Extract InstallOptions files - ;$PLUGINSDIR will automatically be removed when the installer closes - - InitPluginsDir -; File /oname=$PLUGINSDIR\fileassociation_nsis.ini "fileassociation_nsis.ini" - -FunctionEnd - -Function SetCustom - - ;Display the InstallOptions dialog - - Push ${TEMP1} - - InstallOptions::dialog "$PLUGINSDIR\fileassociation_nsis.ini" - Pop ${TEMP1} - - Pop ${TEMP1} - -FunctionEnd - -Function ValidateCustom - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 2" "State" - StrCmp ${TEMP1} 1 done - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 3" "State" - StrCmp ${TEMP1} 1 done - - ReadINIStr ${TEMP1} "$PLUGINSDIR\fileassociation_nsis.ini" "Field 4" "State" - StrCmp ${TEMP1} 1 done - MessageBox MB_ICONEXCLAMATION|MB_OK "You must select at least one install option!" - Abort - - done: - -FunctionEnd