summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Improve some documentation commentsVincent Sanders2021-02-262-7/+18
|
* Correct indentation for previous changeRob Kendrick2021-02-241-1/+1
|
* Allow drag-and-drop loading of WebP images on RISC OSRob Kendrick2021-02-243-1/+8
|
* tidy up GTK frontend initialisationVincent Sanders2021-02-221-514/+544
|
* split out gtk misc operations from gui moduleVincent Sanders2021-02-225-281/+362
|
* html: layout: Cleanup dom node tag name getting with helper.Michael Drake2021-02-201-14/+32
|
* html: layout: Fix to ignore non-element children of lists.Michael Drake2021-02-201-3/+10
|
* correct sizeChris Young2021-02-181-1/+1
|
* AMIGA: minor IFF DR2D export changesChris Young2021-02-181-1/+3
| | | | | NULL-terminate name Use more sensible font
* tests: Update corestring allocation count.Michael Drake2021-02-151-1/+1
|
* layout: Add support for OL reversed attribute.Michael Drake2021-02-101-1/+102
|
* util: corestring: Add DOM "reversed" string.Michael Drake2021-02-101-0/+1
|
* layout: list handling: Scope reduce some variables in the recursive call.Michael Drake2021-02-101-3/+3
|
* html: layout: Change list value step to variable.Michael Drake2021-02-101-1/+2
|
* html: Add support for OL start attribute.Michael Drake2021-02-103-13/+55
| | | | | | | | Note: Added new box member because rows was unsigned, and it was naughty to use something meant for tables. Note: Now numbers <= 0 can be generated, but LibCSS needs updated to support that.
* util: corestring: Add DOM "start" string.Michael Drake2021-02-101-0/+1
|
* layout: Add support for list item value attribute.Michael Drake2021-02-091-1/+52
|
* html: Do list item counting at layout time.Michael Drake2021-02-092-98/+82
|
* layout: Pass content into list layout function.Michael Drake2021-02-091-10/+12
|
* layout: Add counting for list items to layout.Michael Drake2021-02-092-1/+97
|
* undo debug driver changeVincent Sanders2021-02-081-1/+1
|
* allow monkey tests to specify a redraw area for plot-check stepsVincent Sanders2021-02-072-3/+23
|
* use list style formatting from libcssVincent Sanders2021-02-074-619/+29
|
* html: list counter style: Revert to string for {pre|post}fix.Michael Drake2021-02-021-4/+30
|
* html: list counter style: Constify {pre|post}fix memebers.Michael Drake2021-02-021-2/+2
|
* html: list counter style: Split out symbol copy.Michael Drake2021-02-021-36/+36
|
* change list counter style formatting to be table drivenVincent Sanders2021-02-023-266/+283
|
* Default CSS: Use 40px for list padding.Michael Drake2021-02-011-2/+2
|
* do not count the null terminator in list counter style length formattingVincent Sanders2021-01-311-1/+1
|
* implement armenian and georgian list counter stylesVincent Sanders2021-01-311-21/+238
|
* split counter style handling out of the box codeVincent Sanders2021-01-314-278/+366
|
* css: hints: Add support for OL type attribute.Michael Drake2021-01-311-0/+47
|
* implement list marker counting for roman, latin and greekVincent Sanders2021-01-301-54/+344
|
* Prevent overflow of disc cache hysteresis.Michael Drake2021-01-251-3/+3
| | | | | | | | | | | | The default disc cache size is 1GB (1024 * 1024 * 1024). On systems with 32bit size_t, the hysteresis calculation, which multiplied 1GB by 20 would overflow, causing a zero hysteresis. (1024 * 1024 * 1024) * 20 % (2^32) = 0 Thanks to Jonas Amoson for reporting.
* move remaining macros into separate macro makefileVincent Sanders2021-01-242-88/+113
|
* remove stray tab in hts makefile to fix amigaos3 buildVincent Sanders2021-01-171-1/+1
|
* split out library and feature building macrosVincent Sanders2021-01-172-132/+139
|
* Improve target setup in makefilesVincent Sanders2021-01-1710-257/+299
| | | | | split out HOST TARGET and SUBTARGET generation into separate file. split out target(frontend) specific tool settings into separate files.
* add back/forward mouse button processing to GTK frontendVincent Sanders2021-01-022-2/+16
|
* framebuffer: Fix internal font generated source for GCC 10.Michael Drake2020-11-131-3/+3
|
* risc os: Don't let URL complete start consume URL bar drags.Michael Drake2020-11-101-12/+14
|
* risc os: URL bar: Fall back to URL drag if OS doesn't have text selection.Michael Drake2020-11-031-1/+1
|
* risc os: wimputils: Make text-selection helper static inline.Michael Drake2020-11-031-1/+1
|
* risc os: Don't swallow URL bar drags if the OS supports text-selection.Michael Drake2020-11-031-4/+7
| | | | It should still be possible to drag save the URL from the favicon.
* risc os: wimputils: Helper to check OS support for text-selection.Michael Drake2020-11-031-0/+26
|
* treeview: Squash warnings about enum value conversion.Michael Drake2020-10-231-2/+32
|
* Add missing includeChris Young2020-10-094-0/+6
|
* Cache codesets structure ourselvesChris Young2020-10-091-6/+20
| | | | attempt to speed up conversion as apparently codesets is being very slow
* add simple chart generator and use it from the imagecacheVincent Sanders2020-10-055-2/+691
|
* gtk: In path plotter, maintain cairo transformation offsetDaniel Silverstone2020-10-031-2/+2
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>