From: Uwe Stöhr Date: Fri, 20 Apr 2007 01:15:47 +0000 (+0000) Subject: installer: better explanation as suggested by Christian X-Git-Tag: 1.6.10~10196 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9b1943330dde4d47662426fae936637c11b2e28d;p=features.git installer: better explanation as suggested by Christian git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17874 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/Win32/packaging/installer/LyXWinInstaller/Changelog.txt b/development/Win32/packaging/installer/LyXWinInstaller/Changelog.txt index 6f5304207f..e0b9f46217 100644 --- a/development/Win32/packaging/installer/LyXWinInstaller/Changelog.txt +++ b/development/Win32/packaging/installer/LyXWinInstaller/Changelog.txt @@ -1,8 +1,9 @@ Version LyX 1.5svn-xx-04-2007 - LyX 1.5svn from xx-04-2007 - math-macro fixes + - math delimiter changed again + - new ?? - math toolbar has been dropped -- fix bug that JabRef wasn't recognized by the uninstaller - Update installer: require to close LyX before it can be updated - Update installer: fix bug that sessions files weren't actualized while updating diff --git a/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-complete.nsh b/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-complete.nsh index e8b40c4e3f..a7c02ac324 100644 --- a/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-complete.nsh +++ b/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-complete.nsh @@ -1,6 +1,6 @@ +; this file contains the main installer section + ; The '-' makes the section invisible. -; Sections are entered in order, so the settings above are all -; available to SecInstallation Section "-Installation actions" SecInstallation ; extract all files diff --git a/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-small.nsh b/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-small.nsh index 00a7032948..5b332b905c 100644 --- a/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-small.nsh +++ b/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-small.nsh @@ -1,6 +1,6 @@ +; this file contains the main installer section + ; The '-' makes the section invisible. -; Sections are entered in order, so the settings above are all -; available to SecInstallation Section "-Installation actions" SecInstallation ; extract all files diff --git a/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-update.nsh b/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-update.nsh index 920adb7451..dd983bb33e 100644 --- a/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-update.nsh +++ b/development/Win32/packaging/installer/LyXWinInstaller/InstallActions-update.nsh @@ -1,6 +1,6 @@ +; this file contains the main installer section + ; The '-' makes the section invisible. -; Sections are entered in order, so the settings above are all -; available to SecInstallation Section "-Installation actions" SecInstallation ; extract modified files diff --git a/development/Win32/packaging/installer/LyXWinInstaller/InstallerStructure.odg b/development/Win32/packaging/installer/LyXWinInstaller/InstallerStructure.odg new file mode 100644 index 0000000000..1a806891f7 Binary files /dev/null and b/development/Win32/packaging/installer/LyXWinInstaller/InstallerStructure.odg differ diff --git a/development/Win32/packaging/installer/LyXWinInstaller/InstallerStructure.pdf b/development/Win32/packaging/installer/LyXWinInstaller/InstallerStructure.pdf new file mode 100644 index 0000000000..20662908d2 Binary files /dev/null and b/development/Win32/packaging/installer/LyXWinInstaller/InstallerStructure.pdf differ diff --git a/development/Win32/packaging/installer/LyXWinInstaller/Updated.nsh b/development/Win32/packaging/installer/LyXWinInstaller/Updated.nsh index 5cf01ad8e5..bc8ab9254a 100644 --- a/development/Win32/packaging/installer/LyXWinInstaller/Updated.nsh +++ b/development/Win32/packaging/installer/LyXWinInstaller/Updated.nsh @@ -7,6 +7,8 @@ Function UpdateModifiedFiles SetOutPath "$INSTDIR\Resources" File /r "${PRODUCT_SOURCEDIR}\Resources\locale" ; always here File "${PRODUCT_SOURCEDIR}\Resources\configure.py" + SetOutPath "$INSTDIR\Resources\bind" + File "${PRODUCT_SOURCEDIR}\Resources\bind\cua.bind" SetOutPath "$INSTDIR\Resources\doc" File "${PRODUCT_SOURCEDIR}\Resources\doc\Intro.lyx" File "${PRODUCT_SOURCEDIR}\Resources\doc\EmbeddedObjects.lyx" @@ -16,8 +18,14 @@ Function UpdateModifiedFiles File "${PRODUCT_SOURCEDIR}\Resources\doc\es\Extended.lyx" File "${PRODUCT_SOURCEDIR}\Resources\doc\es\EmbeddedObjects.lyx" File "${PRODUCT_SOURCEDIR}\Resources\doc\es\TOC.lyx" ; must be here when another \doc file has been changed + SetOutPath "$INSTDIR\Resources\images" + File /r "${PRODUCT_SOURCEDIR}\Resources\images\math" SetOutPath "$INSTDIR\Resources\layouts" File "${PRODUCT_SOURCEDIR}\Resources\layouts\g-brief2.layout" + SetOutPath "$INSTDIR\Resources\ui" + File "${PRODUCT_SOURCEDIR}\Resources\ui\default.ui" + File "${PRODUCT_SOURCEDIR}\Resources\ui\classic.ui" + File "${PRODUCT_SOURCEDIR}\Resources\ui\stdtoolbars.inc" FunctionEnd