- Timestamp:
- 11/27/06 12:19:23 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Bui_scKit/resources/win/packaging/src/scAppInstaller.nsi
r6538 r7517 58 58 59 59 !define LAUNCHER_LIBS "..\..\..\..\..\Bui_Core\resources\launcher\win\libs" 60 !define INSTALLER_VERSION_NUM "3.0.0.0"61 !define INSTALLER_COPYRIGHT "© ${YEAR} scenari-platform"62 !define INSTALLER_COMPANY "scenari-platform"63 !define INSTALLER_BRANDING "SCENARI install system v3"64 60 !define PRODUCT_NAME "SCENARIapp" 65 61 !define PRODUCT_VERSION "3" … … 68 64 !define PRODUCT_STARTMENU_REGVAL "NSIS:StartMenuDir" 69 65 !define PRODUCT_ICON_PATH "bin\scApp\chrome\icons\default\scenaricms.ico" 66 !define INSTALLER_VERSION_NUM "3.0.1.0" 67 !define INSTALLER_COMPANY "scenari-platform.org" 68 !define INSTALLER_COPYRIGHT "© ${YEAR} ${INSTALLER_COMPANY}" 69 !define INSTALLER_BRANDING "SCENARI install system v${PRODUCT_VERSION}" 70 70 !define LIC_NAME "License.txt" 71 71 … … 150 150 VIProductVersion "${INSTALLER_VERSION_NUM}" 151 151 152 Name "$vProductName v$vProductVersion"152 Name "$vProductName $vProductVersion" 153 153 BrandingText "$(^Name) - ${INSTALLER_BRANDING}" 154 154 OutFile "../${PRODUCT_INSTALLER_FILENAME}" … … 342 342 StrCmp $0 "" xNoAlreadyInstalled xAlreadyInstalled ;Old install detected? 343 343 xAlreadyInstalled: 344 StrCmp $0 $INSTDIR xSameDir xNewDir ;Old install in same folder as new install wants to use? 344 StrCmp $0 $INSTDIR 0 xNewDir ;Old install in same folder as new install wants to use? 345 MessageBox MB_ICONEXCLAMATION|MB_YESNO "$(strAppInstReplacePrev)" IDYES xSameDir 346 Quit 345 347 xSameDir: ;Just delete the old install folder 346 348 DetailPrint "$(strUninstallPrevLog)" … … 356 358 357 359 xNewDir: ;Call a full uninstall of the old install 358 MessageBox MB_ICONEXCLAMATION|MB_ OKCANCEL "$(strAppExists)" IDOKxDesinstall360 MessageBox MB_ICONEXCLAMATION|MB_YESNO "$(strAppInstUninstPrev)" IDYES xDesinstall 359 361 Quit 360 362 xDesinstall:
Note: See TracChangeset
for help on using the changeset viewer.