summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated Dutch resources for NetSurf / interactive Help corrections and additionsDick Tanis2015-03-303-56/+76
|
* Switch the English and French "fetches per host" text to the correct languages.Chris Young2015-03-291-2/+2
|
* Correct the screen depth check for setting friend bitmaps.Chris Young2015-03-291-1/+5
| | | | Add some comments because using friend bitmaps in NetSurf causes problems under OS4.
* pass a url info the RISC OS object info preparationVincent Sanders2015-03-281-11/+13
| | | | | | | | | The target url was previously being passed as a string derived from nsurl_access which was asserting if the target_url was NULL. The nsurl is now passed and a null check performed before attempting to access it. Closes #2298
* define _DEFAULT_SOURCE as well as _BSD_SOURCE to supress warnings in glibc 2.12Vincent Sanders2015-03-283-0/+3
|
* Reduce log spam esp. from animated gifs.Michael Drake2015-03-281-6/+0
|
* Reduce log spam from animations.Michael Drake2015-03-281-2/+0
|
* Remove trailing whitespace.Michael Drake2015-03-281-4/+4
|
* Bump versionChris Young2015-03-272-4/+4
|
* add some debug to form gadget freeingVincent Sanders2015-03-271-3/+10
| | | | | Serveral reports of form freeing segfaulting on RISC OS so this adds some debug in this area to see if we can tell why.
* Add some debug round thumbnail creationVincent Sanders2015-03-273-4/+13
| | | | | More debugging of thumbnail creation as it appears to be involved in a number of recently reported crashes on RISC OS.
* Remove fragment from nsurl hash.Michael Drake2015-03-271-3/+0
|
* To avoid namespace conflicts with ncurses add NetSurf key prefix.Witold Filipczyk2015-03-2736-402/+402
| | | | Adds a NetSurf key code prefix of NS_ to all key codes.
* allow the strip command to be overridden from the comamndlineVincent Sanders2015-03-221-1/+1
| | | | Closes #2208
* Update Shared Unix Library support module to version 1.12Vincent Sanders2015-03-181-0/+0
|
* Stop unneccessary closure of menu tree when asked for clipboard data.David Gee2015-03-171-1/+1
| | | | | | | | | | Currently, when asked for clipboard data, Netsurf unconditionally closes the menu tree of the requesting application. This occurs in the routine ro_gui_send_datasave. There is no reason to close the menu tree: this function is called in only one place, amd the code path is through Wimp user messages-- the highest priority type of message, so other interactions cannot interfere. The fix removes the line which closes the menu tree in this particular function.
* Create an empty !RunImage file in RISC OS page save appsVincent Sanders2015-03-171-0/+9
| | | | | | RISC OS apps take their creation date from the !RunImage apparently and loose the data if the application directory gets copied without one. Fixes #1970
* Remove unused #defines.Michael Drake2015-03-171-4/+0
|
* Fixup atari thumbnail creation function parametersVincent Sanders2015-03-151-3/+1
| | | | Missed this frontend in previous commit.
* Remove url from content thumbnailers APIVincent Sanders2015-03-1515-66/+44
| | | | | | | | | | | | | | | | The content thumbnailers for each frontend were being provided the contents url. This was only ever used to call the urldb thumbnail setting API. This changes it so the single callsite that passed a valid url adds the bitmap to that url itself in desktop_history.c instead of forcing every frontend to require the urldb API. Additionally the old API could pass the url as NULL which was causing asserts where this was not an expected parameter value. Because of this this fixes bug #2286 which was also present in the monkey frontend as both called nsurl_access() on the url without the NULL check and caused an assertion.
* Cleanup windows download window headerVincent Sanders2015-03-132-30/+23
|
* Clean up more windows frontend issues and split out more functionalityVincent Sanders2015-03-1314-220/+303
|
* Move win32 window operations into their own moduleVincent Sanders2015-03-128-1702/+1706
| | | | | | This splits up a great deal of the win32 window code out from other gui code. It also remove large quantities of unused and junk variables and functions.
* Remove outdated and inaccurate build instructions.John-Mark Bell2015-03-111-114/+0
| | | | See the wiki for something more accurate.
* update version info for next development cycleVincent Sanders2015-03-101-3/+3
|
* Merge branch 'heads/release/3.3'Vincent Sanders2015-03-100-0/+0
|\
| * Update version for 3.3 releaserelease/3.3Vincent Sanders2015-03-101-7/+2
|/
* Merge remote-tracking branch 'origin/stevef/ibarmenu'Vincent Sanders2015-03-102-8/+18
|\
| * Remove incorrect keyboard shortcuts from iconbar menu.stevef/ibarmenuGlen Walker2015-03-092-8/+18
| |
* | Forms: consider submit buttons successful. Fixes #2284.John-Mark Bell2015-03-101-2/+47
|/
* Add invalidate API to html content script handling and use it.Vincent Sanders2015-03-093-25/+66
| | | | | | | | | | The html content script handling needs to invalidate its JavaScript context when the browsing context (browser_window) containing it is either closed or the content fetch is aborted (stopped) Previously the invalidation was only done on browser_window close which resulted in use after free crashes because of the now invalid JavaScript context.
* clear the html content reference to javascript context.Vincent Sanders2015-03-061-0/+8
| | | | | | | | | | | | When the browser window is about to be destroyed html_close gets called indicating the browser_window previously associated with the html content is about to become invalid. This makes the javascript context invalid within the html content (it is held by the browser window) when that context is about to be destroyed. Previously the javascript children would continue to attempt to use the context after it had been destroyed causing all sorts of strange errors and failures.
* Fixup gtk viewdata window to open at appropriate sizeVincent Sanders2015-03-062-145/+205
| | | | | | | | | The size hints given were insufficient for gtk to open the window at a sensible size or position. This fixes it to open with a default 640x480 size which is a reasonable compromise. The gtk3 ui builder file was completely reconstructed from fresh as it was broken and was not working.
* Remove unused #include.Michael Drake2015-03-051-1/+0
|
* Remove branches that can't be taken under OS3Chris Young2015-03-015-40/+18
| | | | | Micro-optimise these for OS4.1 Remove dummy compositing defines from os3support.h
* Ensure dutch README is copied into target archiveDick Tanis2015-03-011-0/+1
|
* Updated Dutch template and README translationsDick Tanis2015-02-282-633/+730
|
* RISC OS: fix the worst of the !Cache badness.John-Mark Bell2015-02-282-9/+22
|
* Updated Dutch message translationsDick Tanis2015-02-281-15/+15
|
* Fix hook functions for 68kChris Young2015-02-2814-543/+833
|\ | | | | | | Add (partially working) bitmap fonts support
| * Merge branch 'master' of git://git.netsurf-browser.org/netsurf into ↵Chris Young2015-02-2822-785/+890
| |\ | |/ |/| | | chris/bitmap-fonts
* | Remove nsurl include.Michael Drake2015-02-261-3/+2
| |
* | Remove include of nsurl.hMichael Drake2015-02-261-2/+2
| |
* | Remove include of nsurl from corestrings.hMichael Drake2015-02-263-5/+7
| |
* | Need nsurl.Michael Drake2015-02-262-0/+2
| |
* | Need a nsurl fwd declaration.Michael Drake2015-02-261-2/+3
| |
* | Use forward declaration instead of #include for nsurl.Michael Drake2015-02-262-7/+7
| |
* | Move FILE_SCHEME_PREFIX to corestrings.Michael Drake2015-02-266-9/+12
| |
* | RISC OS: squash warnings from GCC 4.7John-Mark Bell2015-02-252-14/+12
| |
* | Monkey: fix double-free on exitJohn-Mark Bell2015-02-251-2/+0
| |