summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated Dutch messages for NetSurfDick Tanis2015-06-021-115/+157
|
* Set the default cache size on RISC OS to zero (off)Vincent Sanders2015-06-011-1/+6
|
* use logfile as variable name as cocoa gives an error about the symbol type ↵Vincent Sanders2015-05-291-8/+8
| | | | of logf
* Improve logging interface to reduce overheadVincent Sanders2015-05-292-22/+20
| | | | | | | | | | | | | This reduces logging overhead by only calling the log output function once instead of three times. Additionally the nslog_gettime interface no longer needs to be exported and the static function is directly inlined further reducing function call overhead. Finally the appending of a newline uses fputc instead of a full printf call which is considerably more simple and further reduces overhead time.
* Allow verbose logging to be directed to a fileVincent Sanders2015-05-291-1/+34
|
* fixup logging macros that incorrectly override the LOG() macro nameVincent Sanders2015-05-284-4/+4
|
* fixup all the remaining logging macro callsitesVincent Sanders2015-05-2832-208/+208
| | | | | The semantic patch tool appears to have missed some difficult to reason about callsites which have now been manually cleaned up
* Fixup javascript logging to cope with new varadic LOG macroVincent Sanders2015-05-284-5/+5
|
* Change LOG() macro to be varadicVincent Sanders2015-05-28209-2617/+1921
| | | | | | | | | | | | This changes the LOG macro to be varadic removing the need for all callsites to have double bracketing and allows for future improvement on how we use the logging macros. The callsites were changed with coccinelle and the changes checked by hand. Compile tested for several frontends but not all. A formatting annotation has also been added which allows the compiler to check the parameters and types passed to the logging.
* Clean up atari source linendings, whitespace damage and executable statusVincent Sanders2015-05-2861-4858/+4862
|
* Fix warnings about using integer absolute operations on floating point valuesVincent Sanders2015-05-212-13/+18
|
* Change how GDK image resources are compiled in.Vincent Sanders2015-05-202-3/+3
| | | | | | | | | | The compiled in image resources were being created as a structure in a generated c source file. The generation of this file caused constness warning as a guint8 * was initialised from a const char array. This changes the generation and use of these compiled in resources to use the raw inline form as suggested by the documentation removing the const warning.
* Fix format string type missmatches on 32-bit systems.Michael Drake2015-05-121-3/+7
| | | | Use C99 inttypes header for format string macros.
* Avoid generating confusing warning.Michael Drake2015-05-122-4/+1
| | | | Now the disc cache will be disabled silently if its too slow.
* Fix the PNG handler crashing in low memory situations.Vincent Sanders2015-05-121-1/+13
| | | | | | | Obtaining a netsurf bitmap buffer may fail on some frontends (RISC OS especially) as the bitmap allocation is not performed until the buffer is requested. The PNG image handler failed to check for this when populating the row pointer structure.
* Improve the logge dinformation about written cache dataVincent Sanders2015-05-081-7/+7
|
* put assert back to protect against bad logic in frontend drag implementationsVincent Sanders2015-05-081-0/+4
|
* utility to translate public suffix data into a c codeVincent Sanders2015-05-061-0/+378
|
* Move the setting of block file extents to background maintinance.Vincent Sanders2015-05-041-16/+68
| | | | | | On some OS the ftruncate operation can take some time so move it to occour in the background maintinance operations instead of when data blocks are initialy opened. This should improve browsing responsiveness.
* remove assert if drag message contains an unknown type.Vincent Sanders2015-05-031-8/+12
| | | | | Instead of asserting if a message contains an unsupported drag type the message is now logged and ignored.
* Silence incorrect warning from gcc 4.9Vincent Sanders2015-05-031-9/+19
| | | | | | | This makes the box_move_xy function return a value on all code paths. This was not really necessary as there is an assert in the path that could have returned without a value. The gcc optimiser seems unable to reason about this in this case causing a warning.
* make global history treeview directory creation return error instead of abortingVincent Sanders2015-05-031-2/+11
|
* Remove legacy #undefMichael Drake2015-05-031-2/+0
|
* Use standard macros for monkey frontend mandantory pkg-config based librariesVincent Sanders2015-05-031-17/+17
|
* Update posix source version on monkey frontend to reflect oyr usage of scandirVincent Sanders2015-05-032-2/+2
|
* On OpenBSD framebuffer resource building should link the correct libraryVincent Sanders2015-05-031-1/+1
|
* Improve handling of compiler flags for resource tools with framebufferVincent Sanders2015-05-031-25/+36
|
* Ensure bandwidth minimum check is only performed when enough data hasVincent Sanders2015-04-301-6/+15
| | | | been written.
* Ensure small block cache files allocate their entire extent at open.Vincent Sanders2015-04-301-10/+18
| | | | | | | | | | It seems many filesystems are greatly more efficient if the block file is allocated its entire extent once rather than trying to continuously grown the file later. The size of the block files is known at their creation time so this change ensures they are grown to the full possible extent hence removing future inefficient writes.
* Remove unecessary dll from windows installer scriptVincent Sanders2015-04-291-2/+0
|
* Updated mingw32 toolchain names the regex library something differentVincent Sanders2015-04-281-1/+1
|
* Attempt to fix spurious plotter crashesChris Young2015-04-271-1/+8
|
* Revert "Attempt to avoid a crash in ami_plot()"Chris Young2015-04-271-2/+0
| | | | This reverts commit e64d48980e38448eeb83daa8659788d48f845692.
* Ensure result of ftell is checked for errorsVincent Sanders2015-04-261-0/+6
| | | | | | | | The ftell call in the html renderer handling of drag and drop was not checking its return value for errors which could have resulted in attempting to read -1 bytes. coverity 1251038
* Attempt to avoid a crash in ami_plot()Chris Young2015-04-251-0/+2
|
* Remove bogus commentChris Young2015-04-251-2/+0
|
* As the content interface is now doing the scaling, we render to a native ↵Chris Young2015-04-253-53/+50
| | | | | | BitMap and then copy that to the RGBA32 bitmap buffer without re-scaling. The native BitMap is currently discarded and will be re-created when it is displayed.
* Keep the size of the bitmap and layers used for rendering in the structure ↵Chris Young2015-04-251-6/+9
| | | | itself, rather than assuming it is the same as the tile size.
* Merge branch 'thumbnail-rework'Vincent Sanders2015-04-2442-1607/+1255
|\
| * Convert RISC OS to use bitmap render operationVincent Sanders2015-04-248-455/+371
| |
| * Convert cocoa to use bitmap render APIVincent Sanders2015-04-243-101/+84
| |
| * Convert windows to use the bitmap render interfaceVincent Sanders2015-04-243-109/+84
| |
| * Convert beos to bitmap render APIVincent Sanders2015-04-243-334/+303
| |
| * Convert atari to bitmap render interfaceVincent Sanders2015-04-244-26/+7
| |
| * Update amiga to use bitmap render APIVincent Sanders2015-04-244-122/+81
| |
| * Update monkey to use bitmap render APIVincent Sanders2015-04-243-33/+11
| |
| * Convert framebuffer to use bitmap render from thumbnail APIVincent Sanders2015-04-233-101/+81
| |
| * Remove unused thumbnail sources from core and gtkVincent Sanders2015-04-235-289/+2
| |
| * change browser history to use bitmap render interface for thumbnailsVincent Sanders2015-04-231-8/+14
| |
| * Change gtk bitmap render to use scaled content redraw.Vincent Sanders2015-04-231-4/+3
| |