about summary refs log tree commit diff stats
path: root/unix.c
Commit message (Collapse)AuthorAgeFilesLines
* Implement an about:runtime page and :runtime command to view andJosh Rickmar2012-07-311-1/+1
| | | | | | change runtime settings. Settings that have been modified show in a highlighted color in the table. Tooltips describe the setting's function, as well as the default values.
* Add a force_https setting (using the same domain syntax as theJosh Rickmar2012-07-311-1/+1
| | | | | | | | | | | | | | | whitelist settings) to make all requests to that domain use the HTTPS scheme, similar to HSTS. Install a new file, hsts-preload, into the resource dir. This is a regular config file with a bunch of force_https = ... lines, which is used to implement a preloaded HSTS list. Right now all the domains in this file, except for conformal.com and cyphertite.com, are taken directly from chromium's preloaded HSTS list (and should be synced with this file every so often). Also implement a new setting, preload_strict_transport (enabled by default), to enable or disable the loading of this preloaded HSTS list. Document force_https and preload_strict_transport in the manpage.
* move init of resource_dir into unix specific codeMarco Peereboom2012-07-031-2/+7
|
* Use glib's g_spawn_async() function instead of OS-specific fork/execJosh Rickmar2012-06-281-27/+0
| | | | | or spawning functions. Remove the SIGCHLD handling as that is no longer required to stop zombie processes.
* Fix some random stuff the rebasing lost. At least the build stillJosh Rickmar2012-06-011-0/+3
| | | | | works, will have to check later to make sure all the other features got in.
* Fix the behavior of show_url and fancy_bar so they actually act likeJosh Rickmar2012-06-011-3/+0
| | | | | | the manpage says they do. Setting show_url = 1 and fancy_bar = 0 will now only display the url bar on the toolbar and not draw the buttons and search box.
* add os_init to generic unix.c file, move it when neededMarco Peereboom2012-06-011-0/+3
|
* rename xxxterm to xomreroMarco Peereboom2012-05-171-1/+1
|
* move commentMarco Peereboom2012-02-211-2/+1
|
* add loudness flag on remote executionMarco Peereboom2012-02-141-1/+5
|
* add unix specific fileMarco Peereboom2012-01-311-0/+41