summaryrefslogtreecommitdiff
path: root/frontends/amiga
Commit message (Collapse)AuthorAgeFilesLines
* Add a TODO for history context menuChris Young2018-09-271-0/+1
|
* Quick fix to convert helphints to correct charsetChris Young2018-09-272-3/+5
| | | | We should probably have our own strings for these
* Convert find window messages to local charsetChris Young2018-09-271-30/+52
|
* Stop using the same large list of gadget constants everywhereChris Young2018-09-265-98/+123
| | | | Saves a small amount of memory
* Change logging back to INFOChris Young2018-09-091-5/+5
|
* Log version numbers of opened librariesChris Young2018-09-021-4/+10
| | | | Log open failures as ERROR instead of INFO
* update copyright years and versions in docs and readmeVincent Sanders2018-08-292-4/+4
|
* Convert user/pass from/to UTF-8Chris Young2018-08-151-6/+20
| | | | Haven't successfully logged in with credentials featuring UTF-8 characters, but ASCII run through the conversion is working and UTF-8 usernames display correctly when the user is re-prompted.
* Convert user/pass to UTF-8 for submissionChris Young2018-08-151-5/+14
|
* Convert login UI strings from UTF-8 before displayChris Young2018-08-151-9/+32
|
* Close login window if NetSurf quitsChris Young2018-08-151-3/+5
|
* 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.