Main Menu

Recent posts

#21
WebCopy / Help copying single file forma...
Last post by gary1854 - March 20, 2024, 04:46:41 PM
Please help!
I have read the tutorial thoroughly on similar to what I want to achieve the tutorial where it shows you how to use rules to exclude all file types except image formats only I am trying to achieve the same but only for PDF format, I want to scan a whole site and only down PDF files From it It.  I am clearly doing something wrong using the rules feature only instead of using the image formats using my PDF format. It will ignore everything and download absolutely nothing at all, but I know that sees the files because if I don't use any rules at all until it to scan a site I can come back 12 hours later. It will still be scanning the site and will have already downloaded well over 1500 PDF files again all the PDF files all the files and everything else that's coming along with it and bloating my drive please someone is there a video on that tutorial where I could see it. I've tried looking through YouTube. I can't find anything if anyone can show me in a video of how exactly they're achieving this please let me know. Thank you. PS I have also tried not using rules and using the content type application/PDF and it doesn't find any PDF files but again I use no rules no exceptions. Nothing just the site all the PDF files just fine.
#22
Color Palette Editor / Re: Display a warning when the...
Last post by Richard Moss - March 17, 2024, 10:14:46 AM
Hello,

Thanks for the further feedback. I'd half forgotten that existed, I myself use the "Save Copy As" command which was added latter. The "general" Export was doing compatibility checks, but it lacked the context of knowing what the existing format was so it could only do basic checks on the new format (e.g. min / max colours). I've reworked the flow so it has the additional context and now it can run the full set of checks.

This will be present in 1.8.0.484 or higher.

The "general" Export dialog flow is a little annoying so at some point I'll tweak that further.

Regards;
Richard Moss

Edit: Fixed build number
#23
Color Palette Editor / Re: Display a warning when the...
Last post by desbest - March 16, 2024, 11:28:33 AM
Thank you for your help.

However while the warnings display when using "save as", it doesn't appear when using the "export wizard" feature.
#24
WebCopy / Changing image route from URL ...
Last post by nanarumi - March 15, 2024, 08:38:18 AM
Hello everyone,
I've been using WebCopy recently for my website and I need insight on something.
Is there a way to change the image route setting before proceeding with the copy process?
Because I want to change the image route from URL link to local folder

Here is the code snippet from my downloaded HTML file.
<meta name="image" content="https://archbee-image-uploads.s3.amazonaws.com/ZHvSjR5ZrsoxwKbJa3xmo/4WwgM-hG8zMTp2CmIYFrP_rdrx9d8diazpgm07xfz2test-1.png">
The local folder name is ZHvSjR5ZrsoxwKbJa3xmo.

Thanks in advance.
#25
WebCopy / Re: SSL/TLS error: Could not e...
Last post by darren - March 07, 2024, 06:48:02 PM
i have this same exact issue as described. same version.
#26
Color Palette Editor / Re: Display a warning when the...
Last post by Richard Moss - February 29, 2024, 10:52:43 AM
Hello,

Thanks for the bug report. Warnings should have been displayed but there was a nice subtle bug causing them sometimes not to be displayed. However, there wasn't an explicit warning regarding swatch names, so I've added one of these too.

This will be present in 1.8.0.482 or higher.

Regards;
Richard Moss
#27
Color Palette Editor / Re: HEX colours not being kept...
Last post by Richard Moss - February 29, 2024, 10:07:20 AM
Hello,

This is a problem with the editing components the Palette Editor uses, there seems to be an error in precision or rounding when converting between RGB and HSL. I can reproduce the issue, so just need to do some more diagnostics then come up with an appropriate fix.

Regards;
Richard Moss
#28
WebCopy / newbie help with exclude rule
Last post by maphew - February 16, 2024, 08:12:15 PM
I'm having trouble constructing an exclusion rule pattern that does what I want.

url: http://www.google.com/url?q=http%3A%2F%2Fwikipedia.nd.ax%2Fwiki%2FAmerican_black_bear&sa=D&sntz=1&usg=AOvVaw3tfof_60tw7mjXrlHgr0fN
I want to exlcude any url that starts with http://www.google.com/url?q=.

In Edit Rule I have the expression ^http://www\.google\.com/url\?q.
I'm confused about which Compare type I should use. No matter which one I pick, the Rule Checker shows "Not Matched". What am I doing wrong?





#29
WebCopy / Re: Multiple download threads
Last post by rooot - February 03, 2024, 10:46:20 AM
That's great, looking forward to multi threaded crawling! This would make a huge difference.
#30
WebCopy / hx-get attribute
Last post by rooot - February 02, 2024, 12:40:00 PM
Do you plan to support the hx-get attribute? It makes the browser issue a GET request to another URL and inserts the contents into the current page. This can also happen recursively, with those loaded contents in turn containing hx-get attributes that load contents from more URLs.

Explanation from here:

QuoteThe hx-get attribute will cause an element to issue a GET to the specified URL and swap the HTML into the DOM using a swap strategy:
  <div hx-get="/example">Get Some HTML</div>This example will cause the div to issue a GET to /example and swap the returned HTML into the innerHTML of the div.