summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-07-15Updated the local help file, and the remote help URLJorge Arellano Cid
2011-07-15Eliminated a pack of compiler warnings (gcc-4.6.1 amd64)Jorge Arellano Cid
2011-07-14wordingcorvid
2011-07-14Update dillorc URL in splash pageJorge Arellano Cid
2011-07-14Updated about:splash page and set VERSION to 2.2.1Jorge Arellano Cid
2011-07-11Made "hide-panels" hide the findbar, then panels (and removed "fullscreen").Jorge Arellano Cid
Redefined "hide-panels" to close the findbar if it's visible, and all the panels when the findbar is not visible.
2011-07-10avoid a lingering tooltip from the StatusBar (Bugmeter)Jorge Arellano Cid
2011-07-10Workaround: avoid a lingering tooltip from the PanelJorge Arellano Cid
2011-07-10MSG giving HTTP status if page was emptycorvid
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-10MSGscorvid
2011-07-07fix commentcorvid
2011-06-27Enabled CTRL+{a,e,d,k} in search dialog (for start,end,del,cut)Jorge Arellano Cid
2011-06-27Replaced fl_input() with a custom dialogJorge Arellano Cid
* avoids sound bell, allows customization (e.g. widgets, keyboard)
2011-06-27menu: tab before windowcorvid
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-June/008457.html
2011-06-25rm some references to fltk2corvid
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-21Eliminated a pack of 22 compiler warnings (gcc-4.6.1 amd64)Jorge Arellano Cid
2011-06-21rm comment warning about (left|right)-tabcorvid
2011-06-18silenced a lingering debug MSGJorge Arellano Cid
2011-06-18Made dillorc's middle_click_drags_page=NO operative againJorge Arellano Cid
* Added setDragScroll(bool) to the viewport to enable/disable it * Made middle-click paste URL upon FL_RELEASE
2011-06-14Made tab and window titles more informative (WRT length)Jorge Arellano Cid
2011-06-14indent: made html.cc fit in 80 columnsJorge Arellano Cid
2011-06-13Redraw current page when tabs = 2 and the new one doesn't take focusJorge Arellano Cid
2011-06-12merge in recent changes from main repocorvid
2011-06-11Avoid a compiler warning with ClangJorge Arellano Cid
2011-06-10Set modal for a_Dialog_choice5Jorge Arellano Cid
- Prevents multiple dialogs for repeated Ctrl-q - Re-enables window dialog closing with Escape key
2011-06-10Re-enable the "-f" fullscreen CLI switch (e.g. used by Claws email client).Jorge Arellano Cid
2011-06-10don't use monospace with the text window dialog anymorecorvid
It was nice when this dialog was used to view source, but it doesn't matter for viewing html bugs. If anything, it takes up space.
2011-06-09switch fltk font handling to Fl::get_font_name() entirelyJohannes Hofmann
This seems to give more consitent results when xft is disabled.
2011-06-07support !important in style attributesJohannes Hofmann
2011-06-06port preferred font code to fltk-1.3Johannes Hofmann
2011-06-05Don'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-01merge in recent changes from main repocorvid
2011-05-31Switched menu item callbacks to Fl_Menu_Item (instead of Fl_Widget)Jorge Arellano Cid
(segfaulted in Win32 with mingw) * Also lots of cosmetic whitespace
2011-05-31Corrected small icon reference for Forward buttonJorge Arellano Cid
2011-05-30user/pass dialog msg boundscorvid
A label won't fill an entire box. How much of a gap is there? Well, you know what the inside of fltk is like -- a million cases of "Let's add two here; it'll look nice!" Looking at, e.g., Fl_Tooltip, fl_ask, they just pick numbers, too, to make up for it. The "6" might turn out not to be enough under certain circumstances.
2011-05-29choice5: don't crash in the absence of choicescorvid
2011-05-27mergeJohannes Hofmann
2011-05-27more xembed portingJohannes Hofmann
2011-05-27move the disabling of prefs.limit_text_widthcorvid
2011-05-27Avoid unnecessary background redrawsJorge Arellano Cid
2011-05-27rm fltk2 workaroundcorvid
Haven't found any need for it with 1.3.
2011-05-27Hide tabbar when (tabs == 1), show tabbar when (tabs >= 2)Jorge Arellano Cid
2011-05-26Cleanups and bugfix for closing an unselected tabJorge Arellano Cid
* Removed the invisible widget from the tabbar * Fixed closing the first tab when not selected * Removed a workaround (not necessary anymore)
2011-05-26remove use of Fl_Pack to avoid resizing issuesJohannes Hofmann
CustGroup is split into CustGroupHorizontal and CustGroupVertical. CustGroupVertical is then used to replace Fl_Pack for TopGroup.
2011-05-26user/pass dialog appearancecorvid
2011-05-26fix compilation warningscorvid
reported in http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-May/008348.html
2011-05-26clickable menu items (even those introducing submenus) MUST have callbackscorvid
I clicked on the "Panel size" item itself instead of any of the options in its submenu, and: Segfault!
2011-05-25rm commentcorvid