Changeset 7517
- Timestamp:
- 11/27/06 12:19:23 (5 years ago)
- Location:
- trunk/Bui_scKit/resources/win/packaging
- Files:
-
- 4 edited
-
setup.exe (modified) (previous)
-
src/locales/lang_en.nsh (modified) (1 diff)
-
src/locales/lang_fr.nsh (modified) (1 diff)
-
src/scAppInstaller.nsi (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Bui_scKit/resources/win/packaging/src/locales/lang_en.nsh
r6067 r7517 41 41 ; Language strings 42 42 LangString strWelcomeText ${LANG_ENGLISH} "Welcome to the $(^NameDA) Setup Wizard" 43 LangString strAppExists ${LANG_ENGLISH} "$vProductName is already installed on your computer.$\nThe existing verstion will now be uninstalled before proceeding." 43 LangString strAppInstReplacePrev ${LANG_ENGLISH} "$vProductName is already installed on your computer.$\n$\nDo you want to upgrade the existing version?" 44 LangString strAppInstUninstPrev ${LANG_ENGLISH} "$vProductName is already installed on your computer.$\n$\nThe existing version nust now be uninstalled, do you want to proceed?" 44 45 LangString strNoOo ${LANG_ENGLISH} "The installer cannot find OpenOffice on this system.$\nCertain features of $(^Name) may be affected.$\n$\nIt is therefore advisable to install OpenOffice (www.openoffice.org)." 45 46 LangString strUninstallReboot ${LANG_ENGLISH} "In order to finish the uninstall process it is necessary to reboot the computer.$\n$\nDo you want to reboot now?" -
trunk/Bui_scKit/resources/win/packaging/src/locales/lang_fr.nsh
r6067 r7517 41 41 ; Language strings 42 42 LangString strWelcomeText ${LANG_FRENCH} "Bienvenue dans l'installeur de $(^NameDA)" 43 LangString strAppExists ${LANG_FRENCH} "$vProductName est déjà installé sur votre ordinateur.$\nLa version existante sera maintenant désinstallée avant de poursuivre." 43 LangString strAppInstReplacePrev ${LANG_FRENCH} "$vProductName est déjà installé sur votre ordinateur.$\n$\nVoulez vous mettre à jour la version existante ?" 44 LangString strAppInstUninstPrev ${LANG_FRENCH} "$vProductName est déjà installé sur votre ordinateur.$\n$\nLa version existante doit maintenant être désinstallée, voulez-vous poursuivre ?" 44 45 LangString strNoOo ${LANG_FRENCH} "L'installeur n'a pas pu détecter OpenOffice sur cet ordinateur.$\nCertaines fonctionnalités de $(^Name) peuvent être affectées.$\n$\nIl est fortement conseillé d'installer OpenOffice (téléchargeable à partir de www.openoffice.org)." 45 46 LangString strUninstallReboot ${LANG_FRENCH} "Pour terminer la désinstallation du logiciel, il est nécessaire de redémarrer l'ordinateur.$\n$\nVoulez-vous redémarrer maintenant ?" -
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.