From b2edc69eb296700c2123ff63d85a94a2ce4bda86 Mon Sep 17 00:00:00 2001 From: nowrep Date: Fri, 13 Jan 2012 23:07:04 +0100 Subject: [PATCH] Added text codecs into Windows installer. Closes #139 - due to a missing text codecs, japanese/chinese characters were not displayed correctly --- windows/installer.nsi | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/windows/installer.nsi b/windows/installer.nsi index b0a6daea1..b4fac5f2c 100644 --- a/windows/installer.nsi +++ b/windows/installer.nsi @@ -3,7 +3,7 @@ SetCompressor /SOLID /FINAL lzma !define PRODUCT_NAME "QupZilla" -!define /date PRODUCT_VERSION "1.1.0" +!define /date PRODUCT_VERSION "1.1.5" !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\qupzilla.exe" !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" !define PRODUCT_UNINST_ROOT_KEY "HKLM" @@ -86,6 +86,12 @@ Section !$(TITLE_SecMain) SecMain File "imageformats\qtiff4.dll" File "imageformats\qtga4.dll" + SetOutPath "$INSTDIR\codecs" + File "codecs\qcncodecs4.dll" + File "codecs\qjpcodecs4.dll" + File "codecs\qkrcodecs4.dll" + File "codecs\qtwcodecs4.dll" + SetOutPath "$INSTDIR\sqldrivers" File "sqldrivers\qsqlite4.dll"