summaryrefslogtreecommitdiff
path: root/amiga
Commit message (Collapse)AuthorAgeFilesLines
* Only show context menu text selection options if there is text selectedChris Young2016-01-141-2/+7
|
* Re-instate the ability to do a web search for selected textChris Young2016-01-141-0/+29
|
* Use layers.library for bitmap tiling on OS3Chris Young2016-01-142-57/+40
| | | | This solves the worst of the rendering problems on that platform.
* Fix the bitmap font layout a bitChris Young2016-01-131-17/+58
|
* Cut/paste errorChris Young2016-01-111-0/+2
|
* Fix OS4 build errors/warningsChris Young2016-01-112-0/+4
|
* More consistent naming for font cache elementsChris Young2016-01-115-44/+48
|
* Separate font cache code into a new fileChris Young2016-01-114-160/+262
|
* Close the font when we finish with itChris Young2016-01-111-2/+2
|
* Add a status gadget inside the window for OS3Chris Young2016-01-111-22/+32
|
* Use correct parametersChris Young2016-01-101-3/+4
|
* If the specified font won't open, use the fallback font for character 'A'.Chris Young2016-01-101-2/+7
| | | | This helps stop pages showing up blank when the default fonts are wrong.
* Revert "Set a unicode fallback to LetterGothic on OS3"Chris Young2016-01-101-9/+5
| | | | | | This reverts commit 3e71a538c343b3341a435ece56f46b39f1bb3b74. This is pointless because the fallback is picked up from the font scan, so we should get text on screen from some other font.
* Set a unicode fallback to LetterGothic on OS3Chris Young2016-01-101-5/+9
| | | | This should ensure we get text on screen even if use_diskfont is disabled and a bitmap font is set.
* Set some memory and speed options by default for OS3Chris Young2016-01-102-24/+33
|
* Set some sensible default bitmap fonts on OS3 when using diskfontChris Young2016-01-091-5/+13
|
* Add missing menu imageChris Young2016-01-031-1/+1
|
* Increase minimum stack as sometimes Duktape runs outChris Young2016-01-021-1/+1
|
* Fix OS3 buildChris Young2015-12-201-1/+1
|
* Add missing rawkey codesChris Young2015-12-201-0/+3
|
* Missing initialisationChris Young2015-12-201-1/+1
|
* Soak up -v so command line processing still works with logging enabledChris Young2015-11-271-1/+2
|
* Allow specifying location of the users directories on the commandlineChris Young2015-11-252-14/+19
| | | | Arg USERSDIR/K
* Move ReadArgs commandline processing earlier whilst leaving core commandline ↵Chris Young2015-11-241-8/+14
| | | | processing where it was previously
* Make an effort to free resources when a fatal error occurs during initialisationChris Young2015-11-241-1/+26
|
* Abort if we're on a write-protected volumeChris Young2015-11-241-0/+24
| | | | Partial fix for 2397
* Remove the setting of mimetype in default tooltypesChris Young2015-11-242-46/+9
| | | | NetSurf is a lot more liberal now in accepting files, so the mimetype guessing routines are sufficient without forcing CSS files to be recognised as text/css. The ability to add a tooltype to troublesome files remains.
* Added Amiga ToolTypes parser.Chris Young2015-11-225-4/+82
| | | | Initially this allows setting the location of the Users directory, and the current user's name.
* Optimise for PPCChris Young2015-11-171-1/+1
|
* Faster hashingChris Young2015-11-176-400/+1160
|
* Use a hash as the skiplist keyChris Young2015-11-173-13/+21
|
* Import FNV-1aChris Young2015-11-172-0/+393
|
* Fix refresh of hotlist menu/toolbar when hotlist window is closedChris Young2015-11-161-1/+1
| | | | This definitely used to work...!
* Prettier hotlist toolbarChris Young2015-11-162-4/+35
|
* Don't position the statusbar based on font heightChris Young2015-11-161-2/+2
| | | | The statusbar has a finite height because it is sitting in a window border which does not adjust with font size.
* Don't translate F8/F9/F10 into printable characters.Chris Young2015-11-161-0/+4
|
* Improve the position of the status bar gadget at different font sizesChris Young2015-11-151-2/+2
|
* Add missing NSOPTS/M command line arg to documentation.Chris Young2015-11-151-7/+5
|
* Add F8/F9/F10 as shortcuts to the scale functionalityChris Young2015-11-153-23/+36
|
* Allow space bar to be used to page downChris Young2015-11-151-1/+2
|
* Don't try to write to an uninitialised file handle.Chris Young2015-11-151-4/+6
|
* Forcibly enable cut/copy/paste menu items until such a time as I can figure ↵Chris Young2015-11-061-3/+8
| | | | out why they are disabling at the wrong times.
* Make nsurl utf8 string conversion function consistent with nsurl API.Michael Drake2015-10-251-1/+1
|
* Update gtk frontend to new APIChris Young2015-10-241-1/+1
|
* Rework IDN URL retrieval to return an nserrorChris Young2015-10-241-14/+18
|
* Enable Amiga frontend to show decoded IDNs subject to local charset ↵Chris Young2015-10-241-3/+15
| | | | | | restrictions. TODO: Statusbar link text
* Allow the popupmenu-based select menu to cascade into multiple sub-menus ↵Chris Young2015-09-071-3/+53
| | | | containing further items, when there are too many to fit on the screen in one column.
* Move status bar gadget to the correct place on OS3Chris Young2015-09-061-1/+5
| | | | Still practically useless as it constantly overprints.
* Fix broken headersChris Young2015-09-062-3/+8
|
* Create menus on OS3 and 4 the same way (manual GadTools method).Chris Young2015-09-064-52/+26
| | | | | This makes it easier to switch to menuclass. It also fixes a crash-on-exit bug on OS3.