diff options
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | history.txt | 2 | ||||
-rw-r--r-- | src/htsglobal.h | 4 |
5 files changed, 12 insertions, 4 deletions
@@ -2892,7 +2892,7 @@ fi # Define the identity of the package. PACKAGE=httrack - VERSION=3.47.13 + VERSION=3.47.14 cat >>confdefs.h <<_ACEOF diff --git a/configure.ac b/configure.ac index 384395f..29ca49a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_INIT(src/httrack.c) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS(config.h) -AM_INIT_AUTOMAKE(httrack, 3.47.13) +AM_INIT_AUTOMAKE(httrack, 3.47.14) VERSION_INFO="2:47:0" AM_MAINTAINER_MODE diff --git a/debian/changelog b/debian/changelog index e927850..7a38c34 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +httrack (3.47.14-1) unstable; urgency=low + + * Updated to 3.47.14 (3.47-14) + + -- Xavier Roche <xavier@debian.org> Sun, 26 May 2013 10:14:45 +0200 + httrack (3.47.13-1) unstable; urgency=low * Updated to 3.47.13 (3.47-13) diff --git a/history.txt b/history.txt index ca46908..098816c 100644 --- a/history.txt +++ b/history.txt @@ -24,7 +24,9 @@ This file lists all changes and fixes that have been made for HTTrack. + Fixed: webhttrack caused bus error on certain systems, such as Mac OSX, due to the stack size (Patrick Gundlach) + Fixed: bogus charset for requests when filenames have non-ascii characters (Steven Hsiao) + Fixed: bogus charset on disk when filenames have non-ascii characters (Steven Hsiao) ++ Fixed: fixed 260-characters path limit for Windows (lugusto) + New: support for IDNA / RFC 3492 (punycode) handling ++ New: openssl is no longer dynamically probed at stratup, but dynamically linked 3.46-1 * New: Unicode filenames handling diff --git a/src/htsglobal.h b/src/htsglobal.h index 2317966..addfc96 100644 --- a/src/htsglobal.h +++ b/src/htsglobal.h @@ -37,8 +37,8 @@ Please visit our Website: http://www.httrack.com #define HTTRACK_GLOBAL_DEFH // Version (also check external version information) -#define HTTRACK_VERSION "3.47" -#define HTTRACK_VERSIONID "3.47.13" +#define HTTRACK_VERSION "3.47-14" +#define HTTRACK_VERSIONID "3.47.14" #define HTTRACK_AFF_VERSION "3.x" #define HTTRACK_LIB_VERSION "2.0" |