summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Replace strncpy with strlcpy, as strncpy is not guaranteed to beChris Young2012-04-182-3/+3
| | | | | | NULL-terminated. (thx Colin Wenzel) svn path=/trunk/netsurf/; revision=13881
* Add libdom to the list of required libraries.François Revel2012-04-171-0/+1
| | | | | | Patch by Paul Waring. svn path=/trunk/netsurf/; revision=13880
* Fix building on Haiku.François Revel2012-04-171-4/+9
| | | | | | Some ui_color codes were renamed recently. Account for this. svn path=/trunk/netsurf/; revision=13879
* Port to libdom changed HTML content's base_target from talloc_strdup to ↵Michael Drake2012-04-171-1/+1
| | | | | | strdup, so use free instead of talloc_free in html_destroy. svn path=/trunk/netsurf/; revision=13877
* Fix meta refresh.Michael Drake2012-04-161-1/+2
| | | | svn path=/trunk/netsurf/; revision=13876
* Fix frameset processing.Michael Drake2012-04-161-0/+3
| | | | svn path=/trunk/netsurf/; revision=13875
* Border width hint is concerned with border attribute, not width attribute. ↵Michael Drake2012-04-161-4/+3
| | | | | | Fixes table borders. svn path=/trunk/netsurf/; revision=13874
* Fix processing of tags in HEAD. Fixes title, favicons, etc.Michael Drake2012-04-161-5/+5
| | | | svn path=/trunk/netsurf/; revision=13873
* Added menu shortcuts.Ole Loots2012-04-153-6/+6
| | | | svn path=/trunk/netsurf/; revision=13872
* Correct commentChris Young2012-04-151-2/+5
| | | | svn path=/trunk/netsurf/; revision=13871
* Fix bitmap creation - JPEG where always set to opaque = false, which lead to ↵Ole Loots2012-04-142-23/+30
| | | | | | | | blitter checking all pixels for transparency in an loop. Prepare for caching of converted bitmaps. svn path=/trunk/netsurf/; revision=13869
* Remove image cache status from user-facing listing.Michael Drake2012-04-131-12/+22
| | | | svn path=/trunk/netsurf/; revision=13865
* Updated FAQOle Loots2012-04-121-4/+16
| | | | svn path=/trunk/netsurf/; revision=13862
* call toolbar_exit()Ole Loots2012-04-122-1/+1
| | | | svn path=/trunk/netsurf/; revision=13861
* Share a single icon instance for multiple toolbars. Ole Loots2012-04-122-28/+62
| | | | svn path=/trunk/netsurf/; revision=13860
* Fix errors when installing multiple times due to cp failing on .svn directories.François Revel2012-04-121-8/+4
| | | | svn path=/trunk/netsurf/; revision=13859
* Redo r13857 differently, to avoid issues with non-unixish shells.François Revel2012-04-121-2/+4
| | | | svn path=/trunk/netsurf/; revision=13858
* Make sure we use the default locale before parsing output of a localized ↵François Revel2012-04-121-2/+2
| | | | | | | | program. This fixes generating the testament here. svn path=/trunk/netsurf/; revision=13857
* More work on about:imagecache entry listing table.Michael Drake2012-04-123-28/+57
| | | | svn path=/trunk/netsurf/; revision=13855
* Close paragraph tags and other minor imagecache page cleanups.Michael Drake2012-04-121-11/+13
| | | | svn path=/trunk/netsurf/; revision=13854
* Style for about:imagecache page.Michael Drake2012-04-121-5/+16
| | | | svn path=/trunk/netsurf/; revision=13853
* Make more readable and fix use double quotes for href attribute value.Michael Drake2012-04-121-3/+13
| | | | svn path=/trunk/netsurf/; revision=13852
* Pass correct width/height values to textarea redraw callback when setting ↵Michael Drake2012-04-121-6/+19
| | | | | | caret position. Reduces flicker. svn path=/trunk/netsurf/; revision=13851
* Fix caret redraw height. Thanks to m0n0.Michael Drake2012-04-121-1/+1
| | | | svn path=/trunk/netsurf/; revision=13850
* Init toolbar.Ole Loots2012-04-104-28/+27
| | | | svn path=/trunk/netsurf/; revision=13849
* Initial support for (truecolor) image toolbar ( toolbar icons loaded from ↵Ole Loots2012-04-103-191/+338
| | | | | | image file, not from resource ). svn path=/trunk/netsurf/; revision=13848
* Added function load_iconOle Loots2012-04-102-8/+107
| | | | svn path=/trunk/netsurf/; revision=13847
* Introduced BITMAPF_BUFFER_NATIVE and native image buffer, for fast redraw of ↵Ole Loots2012-04-102-4/+6
| | | | | | bitmaps. svn path=/trunk/netsurf/; revision=13846
* Introduced BITMAPF_BUFFER_NATIVE, for fast redraw of bitmaps. Ole Loots2012-04-103-39/+77
| | | | svn path=/trunk/netsurf/; revision=13845
* Just get glyph widths rather than the entire glyph when calculating sizes.Chris Young2012-04-091-11/+49
| | | | | | | This should be faster but isn't (probably still rendering the glyph internally) svn path=/trunk/netsurf/; revision=13843
* Removed obsolete menu item struct member.Ole Loots2012-04-092-30/+29
| | | | svn path=/trunk/netsurf/; revision=13842
* Removed debug output, text format changes...Ole Loots2012-04-093-14/+13
| | | | svn path=/trunk/netsurf/; revision=13841
* Simplified keyboard-shortcut code: Don't use Messages file for Menu strings ↵Ole Loots2012-04-091-231/+105
| | | | | | and accelerator definitions. These things are now taken from the RSC file. svn path=/trunk/netsurf/; revision=13840
* Optimize redraw when window is on-top: do not intersect redraw areas with ↵Ole Loots2012-04-071-33/+97
| | | | | | visible window rectangles. svn path=/trunk/netsurf/; revision=13833
* Added missing include.Ole Loots2012-04-071-1/+2
| | | | svn path=/trunk/netsurf/; revision=13832
* Added linkage to libdom.Ole Loots2012-04-071-3/+7
| | | | svn path=/trunk/netsurf/; revision=13831
* Added missing declaration of "html_redraw_debug". Ole Loots2012-04-071-1/+2
| | | | svn path=/trunk/netsurf/; revision=13830
* Fix a crash when opening Preferences panel and Choices file doesn't exist:François Revel2012-04-072-9/+13
| | | | | | | - add missing strdup(), - fix free() vs g_free() mixups. svn path=/trunk/netsurf/; revision=13824
* Fix typo and unhide imagecache from about:aboutChris Young2012-04-071-1/+1
| | | | svn path=/trunk/netsurf/; revision=13823
* Update NetSurf's system colours when OS prefs changeChris Young2012-04-071-0/+11
| | | | svn path=/trunk/netsurf/; revision=13822
* Add Seeks <http://www.seeks-project.info/> to the list of search engines. ↵François Revel2012-04-072-0/+2
| | | | | | Use http for the favicon to avoid a cert popup. svn path=/trunk/netsurf/; revision=13821
* Implement gui_launch_url() for GTK.François Revel2012-04-071-0/+11
| | | | svn path=/trunk/netsurf/; revision=13820
* Convert to use image cacheChris Young2012-04-061-99/+71
| | | | svn path=/trunk/netsurf/; revision=13797
* Removed unused variable.Ole Loots2012-04-041-4/+2
| | | | svn path=/trunk/netsurf/; revision=13790
* This version was used to build release package of netsurf 2.9Ole Loots2012-04-041-7/+14
| | | | svn path=/trunk/netsurf/; revision=13789
* Added script to invoke make process for different architecture. Ole Loots2012-04-041-0/+88
| | | | svn path=/trunk/netsurf/; revision=13788
* Added script to compile all the libraries needed (build optimized for netsurf). Ole Loots2012-04-041-0/+625
| | | | svn path=/trunk/netsurf/; revision=13787
* Move status basr left one pixelChris Young2012-04-021-1/+1
| | | | svn path=/trunk/netsurf/; revision=13786
* Remove old commented out tagsChris Young2012-03-311-3/+0
| | | | svn path=/trunk/netsurf/; revision=13784
* Change the status bar frameiclass to a gaugeiclass, as it is moreChris Young2012-03-311-2/+6
| | | | | | | aesthetically pleasing, and also allows us to show progress bar if it is possible to get this data from the core in the future. svn path=/trunk/netsurf/; revision=13783