From 195edd9a593adc24a5a63569d8f973cab28fd7c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uwe=20St=C3=B6hr?= Date: Sun, 15 May 2016 04:11:28 +0200 Subject: [PATCH] Win installer: release a new version for 2.1.4 The reason is that the default MiKTeX package server I used was permanently turned off. So new users of LyX won't currently get any missing LaTeX package but a cryptic error message from MiKTeX. --- .../Win32/packaging/installer/ChangeLog.txt | 58 ++++++++++++++++++- .../Win32/packaging/installer/settings.nsh | 16 ++--- 2 files changed, 65 insertions(+), 9 deletions(-) diff --git a/development/Win32/packaging/installer/ChangeLog.txt b/development/Win32/packaging/installer/ChangeLog.txt index 9cb89b3d90..51be63623a 100644 --- a/development/Win32/packaging/installer/ChangeLog.txt +++ b/development/Win32/packaging/installer/ChangeLog.txt @@ -1,4 +1,60 @@ -Changelog for LyX-213-1: +Changelog for LyX-214-6: +- use a new default download server for missing LaTeX packages +- updated to MiKTeX 2.9 build 5872 +- updated to Imagemagick 6.9.4-1 + + +Changelog for LyX-214-5: +- enable the usage of 'texindy' as index generation program in LyX +- updated to JabRef 2.11 +- updated to Perl 5.22 +- updated to Imagemagick 6.9.2-6 + + +Changelog for LyX-214-4: +- fixed broken US English spell-checker. + (To benefit from it you must uninstall an already installed LyX 2.1.x and + then use this installer.) + + +Changelog for LyX-214-3: +- updated to MiKTeX 2.9 build 5721 +- updated to Imagemagick 6.9.2-3 +- updated spell-checker dictionaries for English (GB and US) + (To benefit from them you must uninstall an already installed LyX 2.1.x and + then use this installer.) + + +Changelog for LyX-214-2: +- fix bug that viewing/exporting of some file formats failed because of + unknown executable for .py files +- updated to Python 2.7.10 (fixes problems that LyX got erroneous if + Python 2.7.10 was installed before LyX) +- updated spell-checker dictionary for English (GB) + (To benefit from it you must uninstall an already installed LyX 2.1.x and + then use this installer.) +- updated thesaurus for Slovenian + (you need to reinstall LyX to benefit from this) + + +Changelog for LyX-214-1: +- installs LyX 2.1.4 +- fixes problems with viewing PDF files + NOTE: If you use Adobe Reader as PDF viewer the view is updated by pressing + again the view button in LyX while the update button does nothing +- new method to view/export LyX files to OpenDocument and MS Word +- updated Slovak translation of the installer +- updated to Ghostscript 9.16 +- updated to Qt 4.8.7 +- updated spell-checker dictionaries for Catalan, English (GB), English (US), + Portuguese, Scottish Gaelic, Spanish, Spanish (MX) and Turkish + (To benefit from them you must uninstall an already installed LyX 2.1.x and + then use this installer.) +- updated thesaurus for English (US), Portuguese and Spanish + (you need to reinstall LyX to benefit from this) + + +Changelog for LyX-213-1: - installs LyX 2.1.3 diff --git a/development/Win32/packaging/installer/settings.nsh b/development/Win32/packaging/installer/settings.nsh index 382a824052..e3ded09025 100644 --- a/development/Win32/packaging/installer/settings.nsh +++ b/development/Win32/packaging/installer/settings.nsh @@ -11,10 +11,10 @@ These typically need to be modified for each LyX release !define APP_VERSION_MAJOR 2 !define APP_VERSION_MINOR 1 -!define APP_VERSION_REVISION 3 +!define APP_VERSION_REVISION 4 !define APP_VERSION_EMERGENCY "" # use "1" for an emergency release of LyX otherwise "" !define APP_EMERGENCY_DOT "" # use "." for an emergency release of LyX otherwise "" -!define APP_VERSION_BUILD 1 # Start with 1 for the installer releases of each version +!define APP_VERSION_BUILD 6 # Start with 1 for the installer releases of each version !define APP_VERSION "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_REVISION}${APP_EMERGENCY_DOT}${APP_VERSION_EMERGENCY}" # Version to display @@ -39,7 +39,7 @@ These typically need to be modified for each LyX release !define FILES_LYX "D:\LyXPackage2.1\LyX" !define FILES_DEPS "D:\LyXGit\Master\lyx-windows-deps-msvc2010" -!define FILES_QT "C:\Qt\4.8.6" +!define FILES_QT "C:\Qt\4.8.7" !define ClassFileDir "${FILES_LYX}\Resources\tex" !define DVIPostFileDir "${FILES_DEPS}\tex" @@ -48,17 +48,17 @@ These typically need to be modified for each LyX release # Sizes in KB # it seems that some companies block ftp access by default, therefore http access is preferred here -!define MiKTeXRepo "http://ftp.fernuni-hagen.de/ftp-dir/pub/mirrors/www.ctan.org/systems/win32/miktex/tm/packages/" +!define MiKTeXRepo "http://sunsite.informatik.rwth-aachen.de/ftp/pub/mirror/ctan/systems/win32/miktex/tm/packages/" #!define MiKTeXRepo "ftp://ftp.tu-chemnitz.de/pub/tex/systems/win32/miktex/tm/packages/" -!define JabRefVersion "2.10" +!define JabRefVersion "2.11" !define MiKTeXDeliveredVersion "2.9" -!define ImageMagickVersion "6.8.0" +!define ImageMagickVersion "6.9.4" # definitions for the Complete installer !if ${SETUPTYPE} == BUNDLE - !define JabRefInstall "external\JabRef-2.10-setup.exe" + !define JabRefInstall "external\JabRef-2.11-setup.exe" !define SIZE_JABREF 14100 - !define MiKTeXInstall "$INSTDIR\external\basic-miktex-2.9.5105.exe" + !define MiKTeXInstall "$INSTDIR\external\basic-miktex-2.9.5872.exe" !endif