diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2015-06-23 10:22:10 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2015-06-23 10:22:10 +0000 |
commit | 5e1d2b9783862064853fb14f70756dc0bb40c2e9 (patch) | |
tree | c0acdf901f09e1e7cf63ca199c61b8d2a6b0f6dd | |
parent | 5e0398d8b2f1f960cff86b4d4be932c409b1d166 (diff) |
updated to 3.5.0beta3.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3468 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | nsis/sylpheed-defs.nsh | 4 | ||||
-rw-r--r-- | nsis/sylpheed.nsi | 1 |
5 files changed, 13 insertions, 4 deletions
@@ -1,3 +1,7 @@ +2015-06-23 + + * version 3.5.0beta3 + 2015-06-22 * src/addressbook.c: disabled autto expand of columns because it @@ -6,8 +6,14 @@ Changes of Sylpheed * The original file names of attachments are kept when opening them, and shorter suffixes are added in the case they conflict. * The crash when displaying HTML messages was fixed (#215). + * The bug that column sizes of the address book were not properly set was + fixed. * Win32: the bug that maximized state was unset on minimize was fixed. * Win32: the crash when linked with newer MSVCRT was fixed. + * Win32: dependency on libtiff was removed (GDI+ is used). + * Win32: libpng was updated to 1.4.16. + * Win32: OpenSSL was updated to v0.9.8zg. + * Win32: included SSL certificates were updated. * 3.5.0beta2 (development) diff --git a/configure.ac b/configure.ac index e03c4f26..8f55676f 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 EXTRA_VERSION=beta3 -BUILD_REVISION=1165 +BUILD_REVISION=1166 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl define if this is a development release diff --git a/nsis/sylpheed-defs.nsh b/nsis/sylpheed-defs.nsh index f4393f7e..a6f5a822 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.5beta2"
+!define PRODUCT_VERSION "3.5beta3"
!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.2.3"
+!define INST_VERSION "2.5"
!define INST_FILENAME "Sylpheed_Pro"
!else
!define INST_NAME ${PRODUCT_NAME}
diff --git a/nsis/sylpheed.nsi b/nsis/sylpheed.nsi index a66db5f2..5d65907d 100644 --- a/nsis/sylpheed.nsi +++ b/nsis/sylpheed.nsi @@ -282,7 +282,6 @@ Section "!un.Sylpheed" sec_un_sylpheed Delete "$INSTDIR\libpng14-14.dll"
Delete "$INSTDIR\libsylph-0-1.dll"
Delete "$INSTDIR\libsylpheed-plugin-0-1.dll"
- Delete "$INSTDIR\libtiff-3.dll"
Delete "$INSTDIR\ssleay32.dll"
Delete "$INSTDIR\sylpheed.exe"
Delete "$INSTDIR\wabread.exe"
|