aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--nsis/sylpheed-defs.nsh4
-rw-r--r--nsis/sylpheed.nsi1
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 517479df..ceca52d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2012-05-30
+ * nsis/sylpheed.nsi: reserve nsProcess.dll file to speed up the launch
+ of installer.
+
+2012-05-30
+
* src/compose.c: compose_send(): fixed a bug that messages could not
be sent with POP before SMTP enabled ([sylpheed-jp:11173]).
diff --git a/nsis/sylpheed-defs.nsh b/nsis/sylpheed-defs.nsh
index 684d5412..320b46db 100644
--- a/nsis/sylpheed-defs.nsh
+++ b/nsis/sylpheed-defs.nsh
@@ -1,7 +1,7 @@
;!define SYLPHEED_PRO
!define PRODUCT_NAME "Sylpheed"
-!define PRODUCT_VERSION "3.2beta7"
+!define PRODUCT_VERSION "3.2beta8"
!ifdef SYLPHEED_PRO
!define PRODUCT_PUBLISHER "SRA OSS, Inc. Japan"
@@ -19,7 +19,7 @@
!ifdef SYLPHEED_PRO
!define INST_NAME "Sylpheed Pro"
-!define INST_VERSION "2.1.3"
+!define INST_VERSION "2.1.4"
!define INST_FILENAME "Sylpheed_Pro"
!else
!define INST_NAME ${PRODUCT_NAME}
diff --git a/nsis/sylpheed.nsi b/nsis/sylpheed.nsi
index df9da347..05c55d9e 100644
--- a/nsis/sylpheed.nsi
+++ b/nsis/sylpheed.nsi
@@ -59,6 +59,7 @@ SetCompressor /SOLID lzma
; Reserve files
!insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
+ReserveFile "${NSISDIR}\Plugins\nsProcess.dll"
; MUI end ------