Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-07-18 | Fix some links, add release daterelease-2_2_1 | Jorge Arellano Cid | |
2011-07-18 | Minor corrections to user_help.html | Jorge Arellano Cid | |
2011-07-16 | Fix a keybinding in user_help.html | Jorge Arellano Cid | |
2011-07-16 | user_help version | corvid | |
2011-07-16 | README version | corvid | |
2011-07-16 | Updated the README file with build directions | Jorge Arellano Cid | |
2011-07-15 | Updated README (fltk version) and NEWS | Jorge Arellano Cid | |
2011-07-15 | Updated dillorc and keysrc links in help files | Jorge Arellano Cid | |
2011-07-15 | Eliminated a pack of compiler warnings (gcc-4.6.1 amd64) | Jorge Arellano Cid | |
2011-07-14 | wording | corvid | |
2011-07-14 | Update dillorc URL in splash page | Jorge Arellano Cid | |
2011-07-14 | Changelog | Jorge Arellano Cid | |
2011-07-14 | Updated README | Jorge Arellano Cid | |
2011-07-14 | Updated about:splash page and set VERSION to 2.2.1 | Jorge Arellano Cid | |
2011-07-13 | Changelog | Jorge Arellano Cid | |
2011-07-10 | rm backslash line continuation from dGetline() | corvid | |
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-June/008461.html and no one objected, so... | |||
2011-07-10 | MSG giving HTTP status if page was empty | corvid | |
Sometimes a server will send, say, 500 Internal Server Error with a Content-Length of 0, and Dillo just happily shows the empty page instead of the document that you thought you were going to get, and it's confusing. | |||
2011-07-10 | MSGs | corvid | |
2011-06-11 | fix table leak with overlapping spans | corvid | |
2011-06-07 | widgets draw their own border and background | Johannes Hofmann | |
Don't draw background for widgets in Textblock::drawLine(). This fixes the border_background_margin.html test in css_compat. | |||
2011-06-07 | support !important in style attributes | Johannes Hofmann | |
2011-06-05 | Don't allocate gif->linebuf so soon. | corvid | |
Occasionally, linebuf leaks have appeared in Jeremy's valgrind logs. linebuf is used in Gif_literal() and Gif_sequence(). They are called by Gif_process_code(), which is called by Gif_decode(). In Gif_process_bytes(), you have to be in state 3 to call it. linebuf is allocated inside Gif_do_img_desc(), which is called by GIF_Block(). In Gif_process_bytes(), you have to be in state 2 to call it. After the allocation, there are a couple of cases where the code can return while still in state 2, which would mean coming back to Gif_do_img_desc() later and leaking the linebuf by allocating another. Jeremy has kindly run on this patch for ten days or so without incident. | |||
2011-06-03 | smallcaps use the proper enum value | corvid | |
2011-06-03 | cookies doc | corvid | |
2011-05-27 | ChangeLog | corvid | |
2011-05-20 | free content/transfer decoder in Cache_entry_free | corvid | |
This leak had long made occasional appearances in Jeremy's valgrind logs, and I supposed it was some complicated CCC interaction, and didn't want to put a band-aid over the problem without knowing why it's happening first. But now I finally dug into it, and I see it coming from aborting in Cache_process_queue() (not viewable, for instance), and then a_Cache_process_dbuf() never gets IOClose, which makes a lot of sense! | |||
2011-05-02 | indentation | corvid | |
2011-05-02 | findtext search msg | corvid | |
2011-05-01 | fix handling of CSS length values of 0 without unit | Johannes Hofmann | |
Reported by: "Rob S." <mr_semantics@hotmail.com> Submitted by: corvid <corvid@lavabit.com> | |||
2011-04-20 | catch up on ChangeLog a bit | corvid | |
2011-04-14 | https dpi: error strings for certificate error code 19 and 20 | corvid | |
I was tired of those meaningless numbers. | |||
2011-04-04 | clearer MSG for suspicious image size | corvid | |
I saw a MSG with size 0x[something], and of course I thought it was complaining that a size was given in hex notation. | |||
2011-04-03 | flush the Textblock we last added to | Johannes Hofmann | |
In Html_write_raw() the current textblock can change while parsing HTML. Instead of flushing the Textblock we started with, we now flush the current one. This fixes a long standing drawing bug where text was not positioned initially. | |||
2011-04-02 | dlib/Makefile.am: clean up whitespace | Jeremy Henty | |
2011-03-31 | html.cc: Html_tag_open_meta(): check that the URL exists before redirecting. | Jeremy Henty | |
2011-03-27 | dw/style.cc: drawBorder*(): use the correct border colors. | Jeremy Henty | |
2011-02-11 | downloads dpi: init some time variables | corvid | |
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-February/008058.html | |||
2011-02-07 | dpi/downloads.cc: make the indentation consistent. | Jeremy Henty | |
2011-01-08 | configure.in: define the {int,uint}*_t types with AC_TYPE_*. | Jeremy Henty | |
* * * drop d_size | |||
2011-01-28 | **/Makefile.am: #include $(top_srcdir). | Jeremy Henty | |
2011-01-28 | **/Makefile.am: replace .. paths with absolute paths using $(top_builddir). | Jeremy Henty | |
2011-01-08 | configure.in: fix the test code alignment. | Jeremy Henty | |
2011-01-08 | configure.in: replace obsolete AC_TRY_LINK_FUNC with ↵ | Jeremy Henty | |
AC_LINK_IFELSE/AC_LANG_CALL. | |||
2011-01-08 | configure.in: replace obsolete AC_TRY_COMPILE with ↵ | Jeremy Henty | |
AC_COMPILE_IFELSE/AC_LANG_PROGRAM. | |||
2011-01-08 | configure.in: replace obsolete AC_ERROR with AC_MSG_ERROR. | Jeremy Henty | |
2011-01-08 | configure.in: replace AC_CANONICAL_SYSTEM with AC_CANONICAL_TARGET. | Jeremy Henty | |
2011-01-08 | Add some missing entries to .hgignore. | Jeremy Henty | |
2011-01-09 | don't need --use-images with fltk2-config | corvid | |
This brings fltk's image/* files into the equation (which turn into libfltk2_images.a). Since dillo doesn't use them, ld seems to have the good sense not to add any of it in, but we can save it the trouble of looking through it... | |||
2011-01-07 | fix Pointer::hashValue() by including config.h | Johannes Hofmann | |
Submitted by: Sebastian Geerken <sgeerken@dillo.org> | |||
2011-01-05 | configure.in: remove obsolescent AC_HEADER_STDC. | Jeremy Henty | |