summaryrefslogtreecommitdiff
path: root/amiga
Commit message (Collapse)AuthorAgeFilesLines
* Stop images disappearing when they are half-way off the screen.Chris Young2009-02-251-2/+1
| | | | svn path=/trunk/netsurf/; revision=6621
* Fix memory leak and make freeing bitmaps that might be cached a little safer.Chris Young2009-02-251-6/+6
| | | | svn path=/trunk/netsurf/; revision=6620
* Move native bitmap creation/caching routine into bitmap.cChris Young2009-02-253-240/+112
| | | | svn path=/trunk/netsurf/; revision=6619
* Force AmiUpdate to pick the part-Cairo version on OS4.1, as it hasn't seen ↵Chris Young2009-02-251-3/+4
| | | | | | | | | any release yet and I'd rather people made a conscious decision to use the static one rather than the update picking it because updating a Cairo version is impossible. svn path=/trunk/netsurf/; revision=6618
* The native bitmap caching was eating memory, this should be correct now.Chris Young2009-02-251-13/+20
| | | | svn path=/trunk/netsurf/; revision=6616
* Optimise tile plotterChris Young2009-02-241-26/+82
| | | | svn path=/trunk/netsurf/; revision=6615
* Purge NETSURF_USE_SSL and WITH_SSLJohn Mark Bell2009-02-222-4/+0
| | | | svn path=/trunk/netsurf/; revision=6599
* Tidy-up and clarificationsChris Young2009-02-221-41/+47
| | | | svn path=/trunk/netsurf/; revision=6596
* File should be named "NetSurf" in all circumstances.Chris Young2009-02-211-0/+1
| | | | svn path=/trunk/netsurf/; revision=6593
* Oops. Fixed this in the wrong file, so got missed from previous commit.Chris Young2009-02-211-1/+1
| | | | svn path=/trunk/netsurf/; revision=6592
* Fix some things which didn't work correctly when installing over an existing ↵Chris Young2009-02-211-16/+5
| | | | | | install svn path=/trunk/netsurf/; revision=6591
* Show which build we are using, modify install script to give an option of ↵Chris Young2009-02-213-14/+219
| | | | | | | | | which build needs to be installed, and do date-compare when copying shared objects if they have no version string. svn path=/trunk/netsurf/; revision=6590
* Don't show the option for AISS theme is AISS is not installedChris Young2009-02-211-6/+12
| | | | svn path=/trunk/netsurf/; revision=6588
* Remove default theme's dependency on AISSChris Young2009-02-1820-25/+48
| | | | svn path=/trunk/netsurf/; revision=6567
* Destroy bitmap if thumbnailing fails.John Mark Bell2009-02-181-0/+1
| | | | | | Make amiga port's thumbnail_create() actually return something svn path=/trunk/netsurf/; revision=6560
* Port our UTF-8 routines to parserutils (only enabled when building against ↵John Mark Bell2009-02-171-6/+4
| | | | | | | | | Hubbub). Sync our temporary internal copies of these functions with parserutils (which is rather better tested and fixes a number of known bugs in NetSurf's previous UTF-8 handling). Ideally, this will be the only place in NetSurf that has any dependency on parserutils, so port the amiga font code to our internal APIs. svn path=/trunk/netsurf/; revision=6550
* Divorce PDF export and printing.John Mark Bell2009-02-171-1/+3
| | | | | | At some point, the RISC OS printing code should be ported to the core page-based output engine. svn path=/trunk/netsurf/; revision=6544
* Fix a bug where public screens would remain open if NetSurf was the last visitorChris Young2009-02-141-0/+5
| | | | | | window to close. svn path=/trunk/netsurf/; revision=6485
* make schedule_run return if it has active jobs to scheduleVincent Sanders2009-02-111-2/+4
| | | | svn path=/trunk/netsurf/; revision=6447
* Don't bother trying to render things that are completely off the screenChris Young2009-02-101-0/+3
| | | | svn path=/trunk/netsurf/; revision=6412
* Fix assert when there is no hotlist fileChris Young2009-02-081-1/+1
| | | | svn path=/trunk/netsurf/; revision=6398
* Fix animated GIF displayChris Young2009-02-081-1/+1
| | | | svn path=/trunk/netsurf/; revision=6397
* Really stop overwriting window borders (also fix fast scrolling down, and ↵Chris Young2009-02-071-14/+27
| | | | | | | | break fast scrolling up) svn path=/trunk/netsurf/; revision=6394
* Enable/disable caching of native bitmaps in gfx board memChris Young2009-02-073-13/+43
| | | | svn path=/trunk/netsurf/; revision=6393
* Some attempt at faster scrolling - can be enabled with option faster_scroll:1Chris Young2009-02-052-29/+28
| | | | svn path=/trunk/netsurf/; revision=6364
* Try to stop rendering of things that can't be seenChris Young2009-02-041-4/+22
| | | | svn path=/trunk/netsurf/; revision=6362
* - Constify parameters of struct plotter_table::polygon and struct ↵John Tytgat2009-02-032-6/+6
| | | | | | | | | | | plotter_table::path - riscos/save_draw.c(ro_save_draw_plotters): Make it static. - desktop/save_pdf/pdf_plotters.c(pdf_plot_path): fix broken implementation (coordinates path were wrong, no clip/text mode update, transformation matrix was overwritten); only update fill and/or stroke color when fill and/or stroke is done. (pdf_begin): disable compression when PDF_DEBUG is set svn path=/trunk/netsurf/; revision=6361
* Unexport pdf_scale variable (use pdf_set_scale to set it) and initialize it ↵John Tytgat2009-02-021-1/+0
| | | | | | to DEFAULT_EXPORT_SCALE. svn path=/trunk/netsurf/; revision=6350
* Tidy-up of redraw codeChris Young2009-02-011-110/+21
| | | | svn path=/trunk/netsurf/; revision=6345
* gui_window_update_box and gui_window_redraw now only update the relevant ↵Chris Young2009-02-011-35/+42
| | | | | | | | | areas.. I think. They are liable to destroy things outside of the render area as well currently. svn path=/trunk/netsurf/; revision=6342
* Remove the caret by replacing it with the area under the caret, rather than ↵Chris Young2009-02-011-1/+1
| | | | | | | | the area displayed somewhere else on the page. svn path=/trunk/netsurf/; revision=6338
* - C strings have always an implicit NUL character at the end, no need to ↵John Tytgat2009-02-011-2/+2
| | | | | | | | specify an extra one. - riscos/configure/con_theme.c: removed spurious code line. svn path=/trunk/netsurf/; revision=6331
* Oops, probably shouldn't double-convert textChris Young2009-02-011-1/+1
| | | | svn path=/trunk/netsurf/; revision=6330
* Convert UTF-8 titles to local charset for display in tabsChris Young2009-02-011-2/+5
| | | | | | | Disable keyboard shortcuts for tabs as an underscore in the title was causing keypresses to be ignored or tabs to be switched unexpectedly svn path=/trunk/netsurf/; revision=6329
* Change to use names instead of numbers for keypressesChris Young2009-02-013-20/+86
| | | | | | Add missing keypresss svn path=/trunk/netsurf/; revision=6328
* Next batch of menu changes; clarify some key pressesAdrian Lees2009-02-011-1/+1
| | | | svn path=/trunk/netsurf/; revision=6327
* Added context menu option to download the link target.Chris Young2009-01-316-16/+94
| | | | | | Added SAVEAS/K to OPEN ARexx command to download a URL instead of displaying it. svn path=/trunk/netsurf/; revision=6326
* This change belonged to r6323.John Tytgat2009-01-311-1/+1
| | | | svn path=/trunk/netsurf/; revision=6324
* This is the actual fix for the crashing, although this is temporary as theChris Young2009-01-261-3/+3
| | | | | | implementation needs changing. svn path=/trunk/netsurf/; revision=6283
* This appears to fix an odd crash Chris Young2009-01-251-6/+3
| | | | svn path=/trunk/netsurf/; revision=6262
* Handle key-presses manually for greater control, and to remove some keyboardChris Young2009-01-251-15/+44
| | | | | | copy'n'paste annoyances. Caps lock still fails to work though. svn path=/trunk/netsurf/; revision=6261
* It's probably a good idea to free memory once we've finished with it.Chris Young2009-01-241-5/+10
| | | | svn path=/trunk/netsurf/; revision=6222
* Implement bold and italic font rendering for Unicode display and make it the ↵Chris Young2009-01-205-21/+83
| | | | | | default. svn path=/trunk/netsurf/; revision=6155
* position in string was off by oneChris Young2009-01-181-3/+29
| | | | svn path=/trunk/netsurf/; revision=6141
* Clear render area properly when switching tabsChris Young2009-01-171-1/+1
| | | | svn path=/trunk/netsurf/; revision=6116
* Complete Unicode text display implementation bar styles (bold, italic)Chris Young2009-01-171-17/+48
| | | | | | Need to find out why it is freezing on yahoo.ru svn path=/trunk/netsurf/; revision=6115
* Most nsfont placement routines done for UTF-8 printing, missing the odd ↵Chris Young2009-01-171-23/+122
| | | | | | | | character off of the end of lines though so needs some tweaking. svn path=/trunk/netsurf/; revision=6109
* nsfont_width implemented for Unicode textChris Young2009-01-164-57/+68
| | | | | | | | | cache outline fonts for big speedup still need to implement other text size functions and also bold and italic fonts svn path=/trunk/netsurf/; revision=6095
* Saving hotlist immedaitely after adding now saves it to the correct fileChris Young2009-01-161-1/+1
| | | | svn path=/trunk/netsurf/; revision=6093
* Add copy and select all itemsChris Young2009-01-162-0/+37
| | | | svn path=/trunk/netsurf/; revision=6092