On Sun, 9 May 2004, Johannes Hofmann wrote:
Hi,
dillo-0.8.1-pre2.tar.bz2 works nice here on DragonFly-BSD. The new handling of unknown MIME types is really a great addition.
Good!
Just one little thing: When canceling from the save dialog, the stop-button stays clickable. Shouldn't it get greyed out?
Yes it should; Fixed and commited. Patch: diff -pru dillo/src/cache.c dillo-0.8.0/src/cache.c --- dillo/src/cache.c 2004-05-08 20:31:37.000000000 -0400 +++ dillo-0.8.0/src/cache.c 2004-05-09 14:24:18.000000000 -0400 @@ -827,6 +827,7 @@ static void Cache_process_queue(CacheDat if (st == -1 && ClientWeb->flags & WEB_RootUrl) { /* Unhandled MIME type, prepare a download offer... */ AbortEntry = TRUE; + a_Interface_remove_client(Client_bw, Client->Key); Cache_client_dequeue(Client, NULLKey); --i; /* Keep the index value in the next iteration */ continue; Cheers Jorge.-