aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)Author
2011-09-06avoid redraw loops with ComplexComplexButtonResourceJohannes Hofmann
ComplexButtonResource was creating endless redraws. Testcase: <table> <tr> <td> <div> <button></button> </div> <div> words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words <span style="white-space:nowrap">And words in a span</span> <button></button> </div> </td> </table> This also fixes redraw loops with <button> in combination with limit_text_width=YES, so we no longer need to disable this option. Reported and testcase by: corvid <corvid@lavabit.com>
2011-08-29Minor changes for dillo-3.0-rc2Jorge Arellano Cid
2011-08-27ChangeLogJohannes Hofmann
2011-08-24ChangeLogJohannes Hofmann
2011-08-24ChangelogJorge Arellano Cid
2011-08-22ChangeLogcorvid
2011-08-03ChangeLogcorvid
2011-08-01ChangeLogcorvid
2011-07-29Workaround: request to only check the root URL's certificate (https).Jorge Arellano Cid
This avoids the dialog bombing that stems from loading multiple https images/resources in a single page. A proper fix would take either to implement the https-dpi as a server (with state), or to move back https handling into dillo.
2011-07-29avoid double draw after scrollIdle()Jorge Arellano Cid
After going back or forward to any page, there were two redraws: one from the origin and another from the scroll position. This patch avoids flicker, and makes rendering 100% faster in this case.
2011-07-28ChangeLogcorvid
2011-07-27ChangelogJorge Arellano Cid
2011-07-26Updated the splash pageJorge Arellano Cid
2011-07-26merge port to fltk-1.3 (dillo_port1.3)Johannes Hofmann
2011-07-19ChangeLogcorvid
2011-07-18Fix some links, add release daterelease-2_2_1Jorge Arellano Cid
2011-07-15Eliminated a pack of compiler warnings (gcc-4.6.1 amd64)Jorge Arellano Cid
2011-07-14wordingcorvid
2011-07-14ChangelogJorge Arellano Cid
2011-07-13ChangelogJorge Arellano Cid
2011-07-11ChangeLogcorvid
2011-06-23multimedia key namescorvid
fltk-1.3 gives them special values, so they can't be used by specifying keysyms in keysrc anymore. I separated them from the other keys 1) so that they can be ignored when looking through the list of 'ordinary' keys 2) because Back and BackSpace could be confusing. Am I thrilled with the idea of having rules like "forward = forward"? Well, not particularly.
2011-06-23non-ASCII keybindingscorvid
Alexander Voigt has kindly done some testing, and it seems that this makes bindings to most keys on a German keyboard possible -- except those that need AltGr don't work yet.
2011-06-12merge in recent changes from main repocorvid
2011-06-07support !important in style attributesJohannes Hofmann
2011-06-01merge in recent changes from main repocorvid
2011-05-27ChangeLogcorvid
2011-05-27mention user-visible changes in ChangeLogcorvid
2011-04-20catch up on ChangeLog a bitcorvid
2010-08-03Fix segfault with https and self-signed certscorvid
Crashed when no "/CN=" substring in certificate name. I saw this with calomel.org (which just had "/C=US", if I recall correctly).
2010-04-20css word-spacing propertycorvid
2010-04-07white-space: pre-linecorvid
2010-04-04line-heightcorvid, Johannes Hofmann
2010-03-30white-space: pre-wrapcorvid
thread: http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-March/007420.html
2010-03-29ChangeLogcorvid
2010-03-23ChangeLogcorvid
2010-03-22limit total number of cookiescorvid
2010-02-20mergeJorge Arellano Cid
2010-02-20Interim patch for view sourceJorge Arellano Cid
2010-02-19(cautious version of) fix for configure.in for libpng 1.4 (reported by ↵corvid
xentalion)
2010-02-17Fix segfault when closing window from WM.corvid
I had thought it was a timing problem, but Johannes saw that there was a problem when the first tab in the window had already been closed earlier.
2010-02-16handle zero-width space.corvid
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2009-September/006894.html has the thread. Jorge expressed no opinion. Johannes approved, but wasn't sure that adding zero-width spaces to the page was necessary. I wasn't sure that it was necessary, either, so this version doesn't do that.
2010-02-14use png_sig_cmp()corvid
It seems that libpng 1.4 got rid of png_check_sig() (http://www.libpng.org/pub/png/src/libpng-1.2.x-to-1.4.x-summary.txt) The CHANGES doc that came with my libpng says that it was already obsolete by at least January 1999 (v. 1.0.2a). I checked 1.0.0 from March 98, and it has png_sig_cmp. I checked ummm... 0.89c, I think it was (it was from May 96, in any case), and it did not have it yet. I imagine we can ignore pre-1.0 from more than twelve years ago...
2010-02-11send Accept headercorvid
I would be more specific than image/* if servers were more likely to pay attention. The purpose for adding this is to go along with the User-Agent change, since I've seen server code disallow queries that are supposedly from Firefox but have no Accept header.
2010-02-11add http_user_agent preferenceAlexander Voigt, corvid
thread: http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-February/007267.html
2010-02-11prepare 2.2 releaserelease-2_2Johannes Hofmann
2010-01-24ChangeLogcorvid
2010-01-24limit the number of simultaneous connectionsJohannes Hofmann
The number of simultaneous connections to a single server is now limited by prefs.http_max_conns (default 6). This avoids opening hundreds of connections on pages with many images (BUG 685). This commit is partly based on a prototype by Jorge Arellano Cid.
2010-01-12backout: That way would make no_proxy complicated.corvid
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-January/007167.html
2010-01-12If http_proxy pref set, but env var not set, then set env var (for wget).corvid
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2009-December/007131.html