summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix screen clear bug - now plain text files are readable.Chris Young2008-09-201-2/+5
| | | | svn path=/trunk/netsurf/; revision=5379
* Stop double-freeing the document in some error cases.John Mark Bell2008-09-181-1/+1
| | | | svn path=/trunk/netsurf/; revision=5369
* Fix diagram to be fill -- not sure what happens with lines.Michael Drake2008-09-171-7/+7
| | | | svn path=/trunk/netsurf/; revision=5368
* Return MNG/PNG lib defaults to how they were originally. Explain in ↵Michael Drake2008-09-171-15/+15
| | | | | | Makefile.config which options actually have a big impact on the user experience for general web browsing. svn path=/trunk/netsurf/; revision=5367
* Drag Messages files back in sync.Michael Drake2008-09-163-11/+134
| | | | svn path=/trunk/netsurf/; revision=5360
* Fix some wrarnings.Michael Drake2008-09-161-11/+10
| | | | svn path=/trunk/netsurf/; revision=5359
* Amiga message additions/correctionsChris Young2008-09-165-5/+180
| | | | svn path=/trunk/netsurf/; revision=5358
* Fix some wrarnings.Michael Drake2008-09-161-1/+2
| | | | svn path=/trunk/netsurf/; revision=5357
* Make RISC OS use -O2 too and tidy comments.Michael Drake2008-09-162-28/+32
| | | | svn path=/trunk/netsurf/; revision=5356
* Re-enable MNG support for AmigaOS buildChris Young2008-09-161-0/+4
| | | | svn path=/trunk/netsurf/; revision=5355
* Make libmng string mention all formats it can support.Michael Drake2008-09-161-1/+1
| | | | svn path=/trunk/netsurf/; revision=5354
* Tidy up png support string.Michael Drake2008-09-161-5/+5
| | | | svn path=/trunk/netsurf/; revision=5353
* Fix warnings.Michael Drake2008-09-162-155/+153
| | | | svn path=/trunk/netsurf/; revision=5349
* Add support for displaying the tab bar if there's only one tab.Daniel Silverstone2008-09-166-2038/+3636
| | | | svn path=/trunk/netsurf/; revision=5348
* Wrap consistency.Michael Drake2008-09-161-25/+28
| | | | svn path=/trunk/netsurf/; revision=5347
* Treat image/jpg as JPEG content for Royal Mail captcha.Michael Drake2008-09-161-0/+1
| | | | svn path=/trunk/netsurf/; revision=5343
* Potentially squash warningsJohn Mark Bell2008-09-151-2/+2
| | | | svn path=/trunk/netsurf/; revision=5341
* Change default build to use libpng but not libmng.Michael Drake2008-09-151-2/+2
| | | | svn path=/trunk/netsurf/; revision=5340
* A bunch of fixes to the libpng bindingJohn Mark Bell2008-09-158-25/+51
| | | | svn path=/trunk/netsurf/; revision=5338
* Code cleanup, removed remnants of ttengine experimental code (way too slow to beChris Young2008-09-151-94/+6
| | | | | | useful) svn path=/trunk/netsurf/; revision=5337
* Fix some warnings.Michael Drake2008-09-152-96/+93
| | | | svn path=/trunk/netsurf/; revision=5336
* Hopefully fix detection of libpng header path with pkg-config.François Revel2008-09-151-0/+2
| | | | svn path=/trunk/netsurf/; revision=5335
* Add PNGError to Messages files.Michael Drake2008-09-154-0/+4
| | | | svn path=/trunk/netsurf/; revision=5334
* Fix include path for libpng.François Revel2008-09-152-2/+2
| | | | | | | | Libpng mandates using <png.h>, if it doesn't work for you, fix your OS :D (or use -I) See http://www.libpng.org/pub/png/libpng-1.2.5-manual.html#section-2 svn path=/trunk/netsurf/; revision=5333
* Fix build if NETSURF_USE_PNG := yes and NETSURF_USE_MNG := noJohn Mark Bell2008-09-151-1/+3
| | | | svn path=/trunk/netsurf/; revision=5332
* Comment group plotters.Michael Drake2008-09-151-2/+3
| | | | svn path=/trunk/netsurf/; revision=5331
* Add libpng support. Default to off.Daniel Silverstone2008-09-159-7/+377
| | | | svn path=/trunk/netsurf/; revision=5330
* Fixed bold/italic stylesChris Young2008-09-151-7/+42
| | | | svn path=/trunk/netsurf/; revision=5328
* Add general comment on knockout rendering.Michael Drake2008-09-151-0/+42
| | | | svn path=/trunk/netsurf/; revision=5327
* Oops - commit the latest version.Michael Drake2008-09-151-9/+21
| | | | svn path=/trunk/netsurf/; revision=5325
* Start commenting plotter functions.Michael Drake2008-09-151-7/+36
| | | | svn path=/trunk/netsurf/; revision=5324
* Update source directory info.Michael Drake2008-09-151-4/+7
| | | | svn path=/trunk/netsurf/; revision=5320
* Fix schedule_run so it doesn't occur outside gui_poll.Chris Young2008-09-131-3/+1
| | | | svn path=/trunk/netsurf/; revision=5311
* Improved throbber, works independently on multiple windows, stops when it ↵Chris Young2008-09-133-17/+94
| | | | | | | | | | | | | | should, no weird crashes, lock-ups etc. The format has changed, Resources/Throbber now needs to be in a picture.datatype format, as a "film strip" of frames with the first image the inactive (stopped throbber) and the rest the active animation. The number of frames needs to be set in the Options file throbber_frames variable (currently - will probably move to a tooltype of Resources/Throbber in the future for better theming ability) svn path=/trunk/netsurf/; revision=5310
* Added ability to load toolbar images from a different path.Chris Young2008-09-111-15/+55
| | | | | | | | | | | | | | | | | | | | Default is still TBImages: (ie AISS, http://www.masonicons.de) All of the following must be present, in any format that bitmap.image will load (usually this means any picture.datatype subclasses): home, home_g, home_s - Home button nav_east, nav_east_g, nav_east_s - History forward nav_west, nav_west_g, nav_west_s - History back reload, reload_g, reload_s - Reload stop, stop_g, stop_s - Stop The _g and _s files are ghosted and selected versions respectively. To set the path, use toolbar_images:<path> in Options. svn path=/trunk/netsurf/; revision=5304
* Basic throbber support code. The throbber is shared between windows and must beChris Young2008-09-113-3/+35
| | | | | | | | | | | | | stored as Resources/Throbber in animation.datatype supported format. The default animation is a small IFF ANIM which is only good for testing purposes. This throbber code is likely to be replaced by custom animation code in the future as using animation.datatype has issues and restrictions (only 8-bit formats, using NewDTObject() twice on the same file doesn't seem to work correctly, clicking on the anim starts it playing etc) svn path=/trunk/netsurf/; revision=5303
* Move where WARNFLAGS is set up so that we actually get warnings. Ahem, ↵Daniel Silverstone2008-09-101-8/+10
| | | | | | there's a lot of them. svn path=/trunk/netsurf/; revision=5299
* Disabled the new scheduler by default as it is more unstable than I thought :(Chris Young2008-09-092-10/+21
| | | | | | Defining AMI_SCHEDULER_USES_TIMER will enable it again. svn path=/trunk/netsurf/; revision=5291
* Enable dumping of DOM treeJohn Mark Bell2008-09-084-1799/+2736
| | | | svn path=/trunk/netsurf/; revision=5289
* New mouse pointer images by Martin Merz (Mason)Chris Young2008-09-086-94/+175
| | | | | | Extended pointer size to 32x32 pixels. svn path=/trunk/netsurf/; revision=5288
* Scheduled events now signal when the scheduled time has passed.Chris Young2008-09-084-17/+78
| | | | | | The timer appears to stop signalling events occasionally - needs some investigation. svn path=/trunk/netsurf/; revision=5287
* Ensure we actually use the FNV offset basis rather than the prime, for ↵Daniel Silverstone2008-09-081-1/+1
| | | | | | initialising the hash svn path=/trunk/netsurf/; revision=5286
* Revert r5282 -- it's now redundant.John Mark Bell2008-09-071-35/+0
| | | | svn path=/trunk/netsurf/; revision=5283
* Super-noisy logging. Do not use this build. Thanks.John Mark Bell2008-09-071-0/+35
| | | | svn path=/trunk/netsurf/; revision=5282
* Fix Amiga bitmap_get_bpp to be same as others. (It's bytes per pixel, not ↵Michael Drake2008-09-074-38/+41
| | | | | | bits.) Fix param comments for vbitmap. svn path=/trunk/netsurf/; revision=5281
* Support for dragging in files (for file upload forms etc)Chris Young2008-09-072-11/+121
| | | | svn path=/trunk/netsurf/; revision=5271
* Add param comments to layout_block_find_dimensions.Michael Drake2008-09-071-0/+4
| | | | svn path=/trunk/netsurf/; revision=5267
* Comment css_len2{pt|px} functions and wrap to 80 chars.Michael Drake2008-09-061-6/+24
| | | | svn path=/trunk/netsurf/; revision=5263
* Add comments and change height attribute handling on TR to only alter the ↵Michael Drake2008-09-052-10/+19
| | | | | | height if attribute height is greater than current height. svn path=/trunk/netsurf/; revision=5259
* Much more efficient message handling/input loops, allows me to raise task ↵Chris Young2008-09-042-33/+75
| | | | | | | | priority back to default of 0 without impacting other processes. svn path=/trunk/netsurf/; revision=5238