summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-11-18Reject overflows of zip header fields in minizip.Hans Wennborg
This checks the lengths of the file name, extra field, and comment that would be put in the zip headers, and rejects them if they are too long. They are each limited to 65535 bytes in length by the zip format. This also avoids possible buffer overflows if the provided fields are too long. (cherry picked from commit 73331a6a0481067628f065ffe87bb1d8f787d10c)
2023-01-21Lintian fixesXavier Roche
2023-01-21Removed log filesXavier Roche
2023-01-21Added missing EXTRA_DISTXavier Roche
2023-01-15Fixed build error due to renamed zlib's OF() macroXavier Roche
Closes #246
2023-01-15Fixed gl_VISIBILITY hidden dependencyXavier Roche
Copied from https://raw.githubusercontent.com/coreutils/gnulib/master/m4/visibility.m4 Closes #245
2023-01-14Updated submodulesXavier Roche
2023-01-14Updated to 3.49.4Xavier Roche
2023-01-14Added history entry for upcoming releaseXavier Roche
2023-01-14Push default bandwidth to 100kiB/s, max to 10MiB/sXavier Roche
2023-01-14Fixed typosXavier Roche
2023-01-14Fixed and modernize lintian handlingXavier Roche
2023-01-14Move htsserver from /usr/lib/httrack to regular /usr/binXavier Roche
2023-01-14Add support for -fcf-protectionXavier Roche
2023-01-14Fixed LD_FLAGSXavier Roche
2023-01-14Fixed more lintian warningsXavier Roche
2023-01-14Fixed lintial warning over breakout-linkXavier Roche
2023-01-14Fixed lintial warning over missing-depends-on-sensible-utilsXavier Roche
2023-01-14Fixed lintial warning over libc for testsXavier Roche
2023-01-14Set debian/compat to 13Xavier Roche
2023-01-14Fixed null formatXavier Roche
2023-01-14Fixed sprintfXavier Roche
2023-01-14Do not use ftime (deprecated)Xavier Roche
2023-01-14Fixed a bunch of warningsXavier Roche
2023-01-14Set debian/compat to 10 (multiarch)Xavier Roche
2023-01-14Fixed warnings about missing spaces between literal and string macro ↵Xavier Roche
(Bernhard Übelacker)
2023-01-13Added missing closesXavier Roche
2023-01-13Add support for -fstack-clash-protectionXavier Roche
2023-01-13Add support for pieXavier Roche
2023-01-13Fixed DEFAULT_LDFLAGSXavier Roche
2023-01-13Revert to Multi-Arch: noXavier Roche
2023-01-12Updated history.txtXavier Roche
2023-01-12Updated to 3.49.3Xavier Roche
2023-01-10Add debian/libhttrack-dev.lintian-overridesXavier Roche
2023-01-10Removed extra-license-file usr/share/httrack/html/license.txtXavier Roche
2023-01-10Update debhelper versionXavier Roche
2023-01-10Depends also on sensible-utilsXavier Roche
2023-01-10Removed debian/libhttrack-dev.lintian-overridesXavier Roche
2023-01-10Updated autotoolsXavier Roche
2023-01-10Add -fstack-protector, -Wl,-z,relro, -Wl,-z,noexecstackXavier Roche
2023-01-10Add Multi-Arch field (https://wiki.ubuntu.com/MultiarchSpec)Xavier Roche
2023-01-10Updated standards to 4.6.2Xavier Roche
2022-12-30Merge pull request #195 from fornwall/fix-android-buildXavier Roche
Fix Android build
2022-12-30Merge pull request #214 from sickcodes/firefox-developer-editionXavier Roche
Add firefox-developer-edition.
2022-12-30Merge pull request #220 from brianredbeard/data-image-fixXavier Roche
feature: Support data-src and data-srcset
2022-12-30Merge pull request #197 from PabloCastellano/mimetypes-updateXavier Roche
Add mimetypes for documents
2022-12-30Merge pull request #221 from smokris/55-file-extensionXavier Roche
When using the '%N' structure naming key, separate the filename and extension with a dot.
2022-11-20Updated libtoolXavier Roche
2021-12-08When using the '%N' structure naming key, separate the filename and ↵Steve Mokris
extension with a dot.
2021-12-07feature: Support data-src and data-srcset for imgBrian 'Redbeard' Harrington
Increasingly HTML5 sites use a number of mechanisms for responsive image loading. Many of these mechanisms revolve around the use of `data-src` and `data-srcset` attributes within an img tag to provide a list of valid images to display, along with their relevant sizes (e.g. https://github.com/aFarkas/lazysizes, https://github.com/malchata/yall.js ). This change adds the two previously mentioned tags to the list in `hts_detect[]`, resulting in httrack detecting them correctly. Initially an attempt was made at using `hts_detectbeg[]` with the potential of resolving #203. Unfortunately it became apparent that the implementation of `hts_detectbeg[]` only supports a suffix of integers (see `src/htstools.h#rech_tageqbegdigits` for more information).