Tim Rühsen
Tim Rühsen
I recently added a script `contrib/mingw.static` that creates a static .exe file. My plan is to extend it (e.g. add HTTP/2 support and other dependencies) and finally create and upload...
@dufferzafar Here is the one that I still had from my last experiment. I locally run it on Linux with wine (automatically done via binfmt). It has GnuTLS support, but...
@Vangelis66 We don't even have a CI runner for any 32bit built. I assume this would open up a can of worms... If someone would like to take responsibility for...
Hi, you might use a very old version of wget2. The current one (2.0.0 from git master) creates (with your command line) ``` html.spec.whatwg.org/ ├── demos │ ├── canvas │ ...
> How can I quit wget2 without removing the file being downloaded so that I can resume download later? Currently, wget2 uses a 10MB buffer (per file/thread) that is lost...
I could just reproduce, it is the combination of -c and --chunk-size, e.g. I see the same issue with ``` wget2 --chunk-size=1M -c https://ftp.gnu.org/gnu/libunistring/libunistring-0.9.5.tar.xz ``` but not with just one...
What you want is [Metalink](https://en.wikipedia.org/wiki/Metalink). It allows you to specify several mirrors as well as checksums for every part/chunk. Wget2 supports it. I currently don't know how user-friendly the tooling...
Don't be surprised if that isn't implemented yet (I currently can't test nor check the code). But it shouldn't be too hard to implement it. Possibly you run into issues...
Thanks for you report. I cannot reproduce on Debian Unstable with OpenSSL 1.1.1l-1 with `wget2 --progress bar --max-threads 10 https://www.vatican.va/ -r -k -p -E` (command line from the core dump)....
How to build+install wget2 from tarball, see https://gitlab.com/gnuwget/wget2/#downloading-and-building-from-tarball In your case I suggest a slightly different set of commands ```bash wget https://gnuwget.gitlab.io/wget2/wget2-latest.tar.gz tar xf wget2-latest.tar.gz cd wget2-* CFLAGS="-g -O0" ./configure...