summaryrefslogtreecommitdiff
path: root/frontends/amiga
Commit message (Collapse)AuthorAgeFilesLines
* Amiga: Update for new HTTP auth API.Michael Drake2018-08-152-32/+28
|
* Amiga: Fix silly.Michael Drake2018-08-131-1/+1
|
* Amiga: Ensure realm is copied for local struct.Michael Drake2018-08-131-1/+2
|
* Browser: Rename function to access bw URL.Michael Drake2018-07-234-10/+10
|
* Plotters: Remove width param from path plotter.Michael Drake2018-05-231-2/+0
| | | | We now use the stroke_width in the plot_style.
* Plotters: Change stroke width in the plot_style_t to fixed point.Michael Drake2018-05-233-6/+6
|
* Plotters: Add plot_style_fixed type, and use for font size.Michael Drake2018-05-232-3/+3
|
* move html and text content handlers where they belongVincent Sanders2018-05-101-1/+1
|
* Fix embarassing typo in amiga MakefileDaniel Silverstone2018-04-221-1/+1
|
* Fix amiga Icons->icons issueDaniel Silverstone2018-04-221-1/+2
|
* Fix last uses of !NetSurf outside of riscos buildDaniel Silverstone2018-04-222-18/+18
|
* Initial shuffle of stuff out of !NetSurfDaniel Silverstone2018-04-229-9/+4
|
* Minor optChris Young2018-02-271-4/+2
|
* Avoid potential division by zeroChris Young2018-02-011-1/+3
|
* Don't destroy layers if we never created them.Chris Young2017-12-231-0/+2
|
* Ensure we have a layer before deleting it.Chris Young2017-12-231-1/+1
|
* Explicitly open dos.libraryChris Young2017-12-102-1/+4
|
* Fix switching back to own screen after using a public screen.Chris Young2017-11-161-1/+1
|
* Fix radio button labels on OS3 (thx Mikhail Malyshev)Chris Young2017-11-141-3/+2
|
* Remove the iconify gadget from the OS3 buildChris Young2017-11-131-0/+2
| | | | It is unlikely to ever work and I'm bored of hearing about it not working.
* Remove excess loggingChris Young2017-10-241-1/+0
|
* Update version for next development cycleVincent Sanders2017-10-151-1/+1
|
* Ensure X DPI set correctlyChris Young2017-10-031-1/+1
|
* Widen available values for DPIChris Young2017-10-031-2/+2
|
* Button disable state updates should now work correctly on OS3Chris Young2017-09-261-4/+2
|
* OS3 was not checking the GA_Disabled tag valueChris Young2017-09-261-1/+2
|
* Fix attributeChris Young2017-09-241-1/+1
|
* rationalise history icon bitmap handling to ensure correct lifetimeVincent Sanders2017-09-101-4/+3
|
* Finalise nslog layer properly in closedownDaniel Silverstone2017-09-101-0/+3
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-075-15/+24
|
* Update scheduler logging to use catagoryVincent Sanders2017-09-071-3/+5
|
* update plotter logging to use a catagoryVincent Sanders2017-09-061-23/+11
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-0627-155/+235
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* Content API: Make content_broadcast take pointer to content_msg_data.Michael Drake2017-08-263-6/+6
|
* Don't double-convert stringChris Young2017-06-281-3/+1
|
* cleanup use of internal frames scrollbar widget headerVincent Sanders2017-06-111-1/+6
|
* Use the correct function to get the URL at positionChris Young2017-06-101-19/+21
| | | | Hint popup still broken though :(
* Migrate Amiga local history to corewindowChris Young2017-06-105-318/+247
|
* Split local history data from viewer in headersVincent Sanders2017-06-101-6/+21
| | | | | | This separates the local history data object API from the viewing API. It also changes the api to return nsurl references instead of strings.
* Core window: Ensure all front ends initialise drag_status.Michael Drake2017-06-101-0/+1
|
* Local history: Pass clip rectangle around as struct.Michael Drake2017-06-101-3/+6
|
* Update documentation removing junk and moving to markdown for most text filesVincent Sanders2017-06-092-2/+2
|
* Free the structure with the correct function callChris Young2017-06-081-1/+1
|
* Correct alignment (thx Jaime Cagigal)Chris Young2017-06-071-1/+1
|
* update amiga corewindow implementation for changed APIVincent Sanders2017-05-231-4/+15
|
* fixup errors introduced in set_scroll API changeVincent Sanders2017-04-261-15/+33
|
* update amiga frontend to new set_scroll APIVincent Sanders2017-04-261-3/+18
|
* update amiga frontend to remove reformat APIVincent Sanders2017-04-261-29/+20
|
* Amiga: Update for core hotlist API change.Michael Drake2017-04-251-2/+3
|
* update amiga frontend invalidate window API changeVincent Sanders2017-04-191-35/+48
|