Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-11-18 | Reject 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-21 | Lintian fixes | Xavier Roche | |
2023-01-21 | Removed log files | Xavier Roche | |
2023-01-21 | Added missing EXTRA_DIST | Xavier Roche | |
2023-01-15 | Fixed build error due to renamed zlib's OF() macro | Xavier Roche | |
Closes #246 | |||
2023-01-15 | Fixed gl_VISIBILITY hidden dependency | Xavier Roche | |
Copied from https://raw.githubusercontent.com/coreutils/gnulib/master/m4/visibility.m4 Closes #245 | |||
2023-01-14 | Updated submodules | Xavier Roche | |
2023-01-14 | Updated to 3.49.4 | Xavier Roche | |
2023-01-14 | Added history entry for upcoming release | Xavier Roche | |
2023-01-14 | Push default bandwidth to 100kiB/s, max to 10MiB/s | Xavier Roche | |
2023-01-14 | Fixed typos | Xavier Roche | |
2023-01-14 | Fixed and modernize lintian handling | Xavier Roche | |
2023-01-14 | Move htsserver from /usr/lib/httrack to regular /usr/bin | Xavier Roche | |
2023-01-14 | Add support for -fcf-protection | Xavier Roche | |
2023-01-14 | Fixed LD_FLAGS | Xavier Roche | |
2023-01-14 | Fixed more lintian warnings | Xavier Roche | |
2023-01-14 | Fixed lintial warning over breakout-link | Xavier Roche | |
2023-01-14 | Fixed lintial warning over missing-depends-on-sensible-utils | Xavier Roche | |
2023-01-14 | Fixed lintial warning over libc for tests | Xavier Roche | |
2023-01-14 | Set debian/compat to 13 | Xavier Roche | |
2023-01-14 | Fixed null format | Xavier Roche | |
2023-01-14 | Fixed sprintf | Xavier Roche | |
2023-01-14 | Do not use ftime (deprecated) | Xavier Roche | |
2023-01-14 | Fixed a bunch of warnings | Xavier Roche | |
2023-01-14 | Set debian/compat to 10 (multiarch) | Xavier Roche | |
2023-01-14 | Fixed warnings about missing spaces between literal and string macro ↵ | Xavier Roche | |
(Bernhard Übelacker) | |||
2023-01-13 | Added missing closes | Xavier Roche | |
2023-01-13 | Add support for -fstack-clash-protection | Xavier Roche | |
2023-01-13 | Add support for pie | Xavier Roche | |
2023-01-13 | Fixed DEFAULT_LDFLAGS | Xavier Roche | |
2023-01-13 | Revert to Multi-Arch: no | Xavier Roche | |
2023-01-12 | Updated history.txt | Xavier Roche | |
2023-01-12 | Updated to 3.49.3 | Xavier Roche | |
2023-01-10 | Add debian/libhttrack-dev.lintian-overrides | Xavier Roche | |
2023-01-10 | Removed extra-license-file usr/share/httrack/html/license.txt | Xavier Roche | |
2023-01-10 | Update debhelper version | Xavier Roche | |
2023-01-10 | Depends also on sensible-utils | Xavier Roche | |
2023-01-10 | Removed debian/libhttrack-dev.lintian-overrides | Xavier Roche | |
2023-01-10 | Updated autotools | Xavier Roche | |
2023-01-10 | Add -fstack-protector, -Wl,-z,relro, -Wl,-z,noexecstack | Xavier Roche | |
2023-01-10 | Add Multi-Arch field (https://wiki.ubuntu.com/MultiarchSpec) | Xavier Roche | |
2023-01-10 | Updated standards to 4.6.2 | Xavier Roche | |
2022-12-30 | Merge pull request #195 from fornwall/fix-android-build | Xavier Roche | |
Fix Android build | |||
2022-12-30 | Merge pull request #214 from sickcodes/firefox-developer-edition | Xavier Roche | |
Add firefox-developer-edition. | |||
2022-12-30 | Merge pull request #220 from brianredbeard/data-image-fix | Xavier Roche | |
feature: Support data-src and data-srcset | |||
2022-12-30 | Merge pull request #197 from PabloCastellano/mimetypes-update | Xavier Roche | |
Add mimetypes for documents | |||
2022-12-30 | Merge pull request #221 from smokris/55-file-extension | Xavier Roche | |
When using the '%N' structure naming key, separate the filename and extension with a dot. | |||
2022-11-20 | Updated libtool | Xavier Roche | |
2021-12-08 | When using the '%N' structure naming key, separate the filename and ↵ | Steve Mokris | |
extension with a dot. | |||
2021-12-07 | feature: Support data-src and data-srcset for img | Brian '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). |