summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Revert accidental changeChris Young2009-06-201-1/+1
| | | | svn path=/trunk/netsurf/; revision=7898
* Modify correct RastPortChris Young2009-06-201-2/+2
| | | | svn path=/trunk/netsurf/; revision=7897
* Support option_font_defaultChris Young2009-06-201-2/+26
| | | | svn path=/trunk/netsurf/; revision=7896
* Don't ask for a screenmode when one is not set unless we actually need it.Chris Young2009-06-202-19/+35
| | | | | | | | Immediately save Options once the user has selected a screenmode. This now makes it possible to ask whether they want NetSurf to run on the Workbench or a new NetSurf screen during installation. svn path=/trunk/netsurf/; revision=7895
* If the extent changes, make sure the next redraw does the entire visible area,Chris Young2009-06-201-0/+1
| | | | | | otherwise it goes a bit weird in faster_scroll mode. svn path=/trunk/netsurf/; revision=7889
* Actually return a value if the function requires it.Chris Young2009-06-191-6/+11
| | | | | | More faster_scroll fixes, redraws properly now when clicking anchor links. svn path=/trunk/netsurf/; revision=7885
* Permit referer to propagate to https hosts from httpJohn Mark Bell2009-06-191-3/+17
| | | | svn path=/trunk/netsurf/; revision=7875
* Allow setting throbber speed in Theme definition fileChris Young2009-06-153-3/+24
| | | | svn path=/trunk/netsurf/; revision=7807
* reset scroll values to reflect position for new contentChris Young2009-06-141-0/+2
| | | | svn path=/trunk/netsurf/; revision=7800
* Updated Italian translation from Samir HawamdehChris Young2009-06-131-21/+21
| | | | svn path=/trunk/netsurf/; revision=7792
* Fix frame targets.John Mark Bell2009-06-081-2/+3
| | | | svn path=/trunk/netsurf/; revision=7729
* Ensure page fully updates when faster_scroll active and clicking on a link ↵Chris Young2009-06-041-0/+2
| | | | | | | | with an anchor point. svn path=/trunk/netsurf/; revision=7710
* Pass scroller position to ami_do_redraw_limits, this fixes gaps and overlaps ↵Chris Young2009-06-033-40/+54
| | | | | | | | | | in fast scroll mode. Make faster_scroll the default as it is useful now. Will remove the option to disable it after further testing. svn path=/trunk/netsurf/; revision=7703
* Copy ChangeLog if it existsChris Young2009-06-031-1/+1
| | | | svn path=/trunk/netsurf/; revision=7702
* Fix new pages not always rendering when using faster_scrollChris Young2009-06-031-1/+3
| | | | svn path=/trunk/netsurf/; revision=7692
* SSL certificate verification stringsChris Young2009-06-017-14/+105
| | | | svn path=/trunk/netsurf/; revision=7685
* Add link to Italian dirChris Young2009-06-011-0/+1
| | | | svn path=/trunk/netsurf/; revision=7684
* Fix stupid error in the standalone/test codeChris Young2009-06-011-1/+1
| | | | svn path=/trunk/netsurf/; revision=7682
* Basic SSL certificate verification, needs some work.Chris Young2009-05-311-0/+229
| | | | svn path=/trunk/netsurf/; revision=7676
* Basic SSL certificate verification for Amiga versionChris Young2009-05-316-7/+11
| | | | | | | Treeview window is not browseable (TimedDOSRequester is blocking) Needs some strings writing svn path=/trunk/netsurf/; revision=7675
* Don't fast scroll when the user is scrolling more than one window's worth in anyChris Young2009-05-311-0/+6
| | | | | | direction svn path=/trunk/netsurf/; revision=7674
* set_scroll should only activate faster_scroll if it is set in the optionsChris Young2009-05-311-1/+3
| | | | svn path=/trunk/netsurf/; revision=7669
* Fix minor problems with tab switchingChris Young2009-05-311-1/+2
| | | | svn path=/trunk/netsurf/; revision=7668
* Fix faster_scrollChris Young2009-05-313-20/+21
| | | | svn path=/trunk/netsurf/; revision=7667
* Fully clear clipregion, stops eg. only a little bit of images being shown if ↵Chris Young2009-05-311-0/+5
| | | | | | | | the previous page had an animated GIF svn path=/trunk/netsurf/; revision=7662
* Check that p96AllocBitMap actually allocated a bitmap (fixes unsat bug#61)Chris Young2009-05-301-4/+6
| | | | svn path=/trunk/netsurf/; revision=7658
* Don't need height of css positioned boxes when laying out boxes in normal flow.Michael Drake2009-05-301-5/+1
| | | | svn path=/trunk/netsurf/; revision=7656
* Whoops. Lose spurious ')'.John Mark Bell2009-05-301-1/+1
| | | | svn path=/trunk/netsurf/; revision=7646
* Stop ro_gui_get_icon_string() returning a pointer to a location on the stack.John Mark Bell2009-05-301-5/+10
| | | | | | | Make explicit the semantics that strings returned from this call are transient and will be invalidated by subsequent calls. svn path=/trunk/netsurf/; revision=7645
* Simplify codeJohn Mark Bell2009-05-301-2/+1
| | | | svn path=/trunk/netsurf/; revision=7644
* A bunch of tidying. Also squash NULL-pointer dereferences.John Mark Bell2009-05-291-24/+33
| | | | svn path=/trunk/netsurf/; revision=7643
* Actually catch error and deal with itJohn Mark Bell2009-05-291-0/+5
| | | | svn path=/trunk/netsurf/; revision=7642
* Ensure we don't read beyond the end of the array of available matches. Set ↵John Mark Bell2009-05-291-3/+9
| | | | | | any remaining saved pointers to NULL. svn path=/trunk/netsurf/; revision=7641
* Add missing break statementJohn Mark Bell2009-05-291-0/+1
| | | | svn path=/trunk/netsurf/; revision=7640
* Add missing return statement.John Mark Bell2009-05-291-0/+1
| | | | svn path=/trunk/netsurf/; revision=7639
* Tidy up somewhat. Lose redundant assignment.John Mark Bell2009-05-291-33/+27
| | | | svn path=/trunk/netsurf/; revision=7638
* Add missing return statement.John Mark Bell2009-05-291-0/+1
| | | | svn path=/trunk/netsurf/; revision=7637
* Lose redundant variableJohn Mark Bell2009-05-291-2/+1
| | | | svn path=/trunk/netsurf/; revision=7636
* Add missing return.John Mark Bell2009-05-291-0/+1
| | | | svn path=/trunk/netsurf/; revision=7635
* Remove redundant variableJohn Mark Bell2009-05-291-2/+1
| | | | svn path=/trunk/netsurf/; revision=7634
* Add missing return statement.John Mark Bell2009-05-291-0/+1
| | | | svn path=/trunk/netsurf/; revision=7633
* Lose redundant assignmentJohn Mark Bell2009-05-291-6/+3
| | | | svn path=/trunk/netsurf/; revision=7632
* Add missing return in error case.John Mark Bell2009-05-291-0/+1
| | | | svn path=/trunk/netsurf/; revision=7631
* This really fixes the resize bug (#63)Chris Young2009-05-291-0/+2
| | | | svn path=/trunk/netsurf/; revision=7630
* Insert a redundant return, as scan-build fails to notice that die() never ↵John Mark Bell2009-05-291-0/+1
| | | | | | returns. svn path=/trunk/netsurf/; revision=7629
* Re-check window dimensions before copying contents in. This stops window ↵Chris Young2009-05-291-3/+6
| | | | | | | | borders getting corrupted and crashes when resizing (unsat bug#63) svn path=/trunk/netsurf/; revision=7628
* Much tidying, additional commentary, and fix for insane bit mask calculation.John Mark Bell2009-05-291-54/+121
| | | | svn path=/trunk/netsurf/; revision=7623
* When computing relative offset values for floats, use block formatting ↵Michael Drake2009-05-281-2/+11
| | | | | | context for containing block, rather than parent. svn path=/trunk/netsurf/; revision=7614
* Lose more redundancyJohn Mark Bell2009-05-281-1/+0
| | | | svn path=/trunk/netsurf/; revision=7613
* We don't care about the result of regexec(); only that it was successful or notJohn Mark Bell2009-05-281-3/+2
| | | | svn path=/trunk/netsurf/; revision=7612