summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Monkey: Buildsystem: Set messages directory.Michael Drake2018-11-031-0/+11
|
* More monkey stuffDaniel Silverstone2018-11-034-44/+129
|
* Remove redundant redraw methodDaniel Silverstone2018-11-031-7/+0
|
* Monkey tests: Add more example test plans.Michael Drake2018-11-034-0/+79
|
* Monkey driver: Initial loader for monkey test plans.Michael Drake2018-11-033-0/+176
|
* Update farmer a little ready for laterDaniel Silverstone2018-11-031-6/+27
|
* Correct wrong MOUT_ERROR to MOUT_WINDOWDaniel Silverstone2018-11-031-1/+1
|
* centralise monkey output generationVincent Sanders2018-11-0311-126/+221
|
* Upgrade monkey farmer to python 3 (badly)Daniel Silverstone2018-11-031-16/+24
|
* GTK: Squash GCC8.2 warning.Michael Drake2018-11-031-2/+14
| | | | | | | frontends/gtk/download.c: In function ‘gui_download_window_create’: frontends/gtk/download.c:829:10: warning: cast between incompatible function types from ‘gboolean (*)(gboolean)’ {aka ‘int (*)(int)’} to ‘gboolean (*)(void *)’ {aka ‘int (*)(void *)’} [-Wcast-function-type] (GSourceFunc) nsgtk_download_update, FALSE); ^
* GTK: Make nsgtk_download_selection_action match GFunc prototype.Michael Drake2018-11-031-4/+10
| | | | | | | | | | Squashes GCC 8.2 warning: frontends/gtk/download.c:244:22: warning: cast between incompatible function types from ‘nsgtk_download_selection_action’ {aka ‘void (*)(struct gui_download_window *)’} to ‘void (*)(void *, void *)’ [-Wcast-function-type] g_list_foreach(dls, (GFunc)action, NULL); ^
* GTK: Squash a couple of warnings from GCC 8.2.Michael Drake2018-11-031-2/+22
| | | | | | | | | | | | | frontends/gtk/download.c: In function ‘nsgtk_download_do’: frontends/gtk/download.c:238:24: warning: cast between incompatible function types from ‘void (*)(GtkTreePath *)’ {aka ‘void (*)(struct _GtkTreePath *)’} to ‘void (*)(void *, void *)’ [-Wcast-function-type] g_list_foreach(rows, (GFunc)gtk_tree_path_free, NULL); ^ frontends/gtk/download.c:239:24: warning: cast between incompatible function types from ‘void (*)(void *)’ to ‘void (*)(void *, void *)’ [-Wcast-function-type] g_list_foreach(rows, (GFunc)g_free, NULL); ^
* check dom call return and improve handling of missing form typeVincent Sanders2018-10-091-22/+30
|
* fix stupid typo in previous commitVincent Sanders2018-10-081-1/+1
|
* explicitly check for null string before compareVincent Sanders2018-10-061-1/+1
|
* add sha 256 checksum fallback binary name for openbsdVincent Sanders2018-10-051-0/+1
|
* fix sha256 file name suffix in scriptVincent Sanders2018-10-051-1/+1
|
* fix stupid error expanding shell variableVincent Sanders2018-10-041-1/+1
|
* cope with md5sum being named different things on bsdVincent Sanders2018-10-041-5/+17
|
* update the deployment script to add sha and md5 checksumsVincent Sanders2018-10-041-11/+13
|
* Treeview: Fix designated struct initialisation.Michael Drake2018-10-041-6/+6
|
* ensure fedora gcc gives us all the version informationVincent Sanders2018-10-041-1/+1
|
* rewrite form_successful_controls_dom as form_dom_to_dataVincent Sanders2018-09-291-556/+883
| | | | | | | | | | | | | | | | | | | | | | | | Trying to reason about error propagation and resource leakage within the form submission code was impossible because of the form_successful_controls_dom function. This function was over six hundred lines long, had twenty six top level local variables and six levels of indent in places. This commit splits it out into thirteen shorter and more obvious functions. The resulting operation is identical except errors are properly propagated (all failures were reported as out of memory) and resource management can be reasoned about. The compiler appears to inline the entirety of the code from form_submit() down excepting a handful of leaf functions. This results in similar code output size as previous implementation. The new implementation has a greater number of variables passed to sub functions than desirable because multiple character sets are required to encode names and values in the multipart data list. However as noted the compiler effectively inlines all these functions so this does not actually become a major problem.
* 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
* gcc on openbsd is unable to reason about res variable usage and generates ↵Vincent Sanders2018-09-261-1/+1
| | | | bogus warning
* fix url encoding to be compatible with nsurl API changes.Vincent Sanders2018-09-265-158/+177
| | | | | As part of this fix the form submission error handling and reporting has been improved.
* improve nsurl query handling.Vincent Sanders2018-09-265-44/+77
| | | | | | | | | | | Alter the handling of query values within nsurl to be like fragments. This ensures callers never have to care about the query punctuation, e.g. the question mark This also means the strings generated will no longer have trailing question marks which now conforms to behaviour in whatwg url spec on url serializing in section 4.5
* squash clang warning about increased alignment requirements.Vincent Sanders2018-09-261-1/+2
|
* Change logging back to INFOChris Young2018-09-091-5/+5
|
* Fix compiler version comparison testVincent Sanders2018-09-071-1/+1
|
* stop overriding non test warning flagsVincent Sanders2018-09-071-4/+4
|
* allow comments to supress implicit fallthrough warningsVincent Sanders2018-09-073-6/+11
|
* fix framebuffer BUILD libpng flags on freebsdVincent Sanders2018-09-071-2/+7
|
* Change BUILD compiler target to ccVincent Sanders2018-09-072-15/+24
| | | | | | | | The use of gcc explicitly does not work on systems where the local building system only has the clang compiler. Framebuffer was the only user of the BUILD_CC target for local tooling and its handling of flags was also improved.
* correctly setup feature flagsVincent Sanders2018-09-061-7/+14
|
* _XOPEN_SOURCE needs defining to avoid warnings on BSDVincent Sanders2018-09-061-0/+1
|
* seems freebsd needs _XOPEN_SOURCE for math.h macros to be definedVincent Sanders2018-09-061-0/+1
|
* stop defining _XOPEN_SOURCEVincent Sanders2018-09-064-5/+2
| | | | | This is necessary with some libc as it overrides _POSIX_C_SOURCE and removes definitions of scandir etc.
* Log version numbers of opened librariesChris Young2018-09-021-4/+10
| | | | Log open failures as ERROR instead of INFO
* fix up package version on haikuVincent Sanders2018-08-291-1/+1
|
* Update version for next development cycleVincent Sanders2018-08-291-3/+3
|
* Merge branch 'heads/releasing/3.8'Vincent Sanders2018-08-290-0/+0
|\
| * Update version files for releaserelease/3.8Vincent Sanders2018-08-291-7/+2
|/
* update copyright years and versions in docs and readmeVincent Sanders2018-08-299-29/+29
|
* remove use of strcpyVincent Sanders2018-08-292-5/+11
|
* remove a warning on openbsdVincent Sanders2018-08-282-2/+6
|
* update certificate bundleVincent Sanders2018-08-281-543/+211
|