]> git.lyx.org Git - features.git/commitdiff
installer: better explanation as suggested by Christian
authorUwe Stöhr <uwestoehr@web.de>
Fri, 20 Apr 2007 01:15:47 +0000 (01:15 +0000)
committerUwe Stöhr <uwestoehr@web.de>
Fri, 20 Apr 2007 01:15:47 +0000 (01:15 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17874 a592a061-630c-0410-9148-cb99ea01b6c8

development/Win32/packaging/installer/LyXWinInstaller/Changelog.txt
development/Win32/packaging/installer/LyXWinInstaller/InstallActions-complete.nsh
development/Win32/packaging/installer/LyXWinInstaller/InstallActions-small.nsh
development/Win32/packaging/installer/LyXWinInstaller/InstallActions-update.nsh
development/Win32/packaging/installer/LyXWinInstaller/InstallerStructure.odg [new file with mode: 0644]
development/Win32/packaging/installer/LyXWinInstaller/InstallerStructure.pdf [new file with mode: 0644]
development/Win32/packaging/installer/LyXWinInstaller/Updated.nsh

index 6f5304207f8a529ff663f037226b702d65eb9f1a..e0b9f4621750ded35a56f1db3425f85794cb89fb 100644 (file)
@@ -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
index e8b40c4e3fe3480dda23f537c82db06c63473807..a7c02ac3240a60f257fce1b6f08a4baea4d8f23f 100644 (file)
@@ -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
index 00a70329482911e27f194c253d7c54c1fe2b7e34..5b332b905c3cd06f8f20db8089c6f75facc831a1 100644 (file)
@@ -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
index 920adb745102f0247c411cef6fa4a6726eb0222c..dd983bb33eb223ffc9390a82c5103de4be7d5fc4 100644 (file)
@@ -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 (file)
index 0000000..1a80689
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 (file)
index 0000000..2066290
Binary files /dev/null and b/development/Win32/packaging/installer/LyXWinInstaller/InstallerStructure.pdf differ
index 5cf01ad8e5b3d795b599f45ef7b72b9bf13eaddb..bc8ab9254ada79fb46cef30cf7b8058b19ba8979 100644 (file)
@@ -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