about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* add an os init functionunknown2012-05-312-0/+5
|
* Prepare for release 1.0.0.Marco Peereboom2012-05-301-1/+1
|
* Xombrero -> xombreroMarco Peereboom2012-05-302-6/+6
|
* roll version back to 0.0.0Marco Peereboom2012-05-301-1/+1
|
* Add my copyright to the files I've added code toJosh Rickmar2012-05-304-0/+4
|
* Add an about:search page to notify users we are not in a position toJosh Rickmar2012-05-255-14/+204
| | | | | recommend any search engine. Save their choice to runtime, and document how runtime is being read in the manpage.
* Be sure to clear any show_oops messages before navigating to a newJosh Rickmar2012-05-241-0/+1
| | | | URL. This wasn't working before with the back/forward buttons.
* Truncate the startofday file before writing the current version to it.Josh Rickmar2012-05-231-1/+2
| | | | Noticed and patched by henrix@camandro.org.
* Prevent a double freeJosh Rickmar2012-05-211-1/+3
|
* gdk_flush -> GDK_FLUSH in run_scripts_lockedDavid Hill2012-05-181-1/+1
|
* Prevent a nasty bug where saved certificates were not being completelyJosh Rickmar2012-05-181-1/+1
| | | | | | checked for differences. This will cause the URL bar to be colored red if there are any differences between a saved and remote certificate.
* remove a couple of long long variables that confuse various compilerMarco Peereboom2012-05-181-4/+6
|
* add un.h in required locationsMarco Peereboom2012-05-181-0/+4
|
* make xombrero compile on windowsMarco Peereboom2012-05-172-6/+8
|
* Prepare for release 1.0.0.Marco Peereboom2012-05-171-1/+1
|
* Make sure include_config is alphabetical in the manpage with the restJosh Rickmar2012-05-171-24/+24
| | | | of the settings
* more xxxterm->xombreroOwain G. Ainsworth2012-05-171-2/+2
|
* rename xxxterm to xomreroMarco Peereboom2012-05-1736-146/+133
|
* Add a setting to read additional config files from any other configJosh Rickmar2012-05-163-3/+43
| | | | file and document it. This fixes FS#238.
* Add a setting to show download notifications via show_oops (default 0)Josh Rickmar2012-05-165-3/+28
| | | | and document it in the manpage.
* make gdk_flush compile time conditionalMarco Peereboom2012-05-161-0/+8
|
* make gdk_flush compile time conditionalMarco Peereboom2012-05-161-3/+3
|
* rewrite mutex implementation to fix some subtle bugs, also add some more ↵Marco Peereboom2012-05-161-41/+49
| | | | locking in places to prevent buggy mutex message (diagnosed by jrick)
* conditionally use pkg-config javascriptcoregtk-1.0Marco Peereboom2012-05-161-3/+6
|
* Revert "Do a show_oops when a download is finished"Josh Rickmar2012-05-161-2/+0
| | | | | | | This reverts commit da2bf7c6e80c0835b2a7791c2a6998f570b4c91f. Marco says no. I'll add a knob to trigger this and the download starting notification.
* Do a show_oops when a download is finishedJosh Rickmar2012-05-161-0/+2
|
* add some links as to where all this magic came fromMarco Peereboom2012-05-151-0/+4
|
* add gdk_flush per doco and call XInitThreads per some posting on the netMarco Peereboom2012-05-152-0/+5
|
* -g instead of -ggdb3Marco Peereboom2012-05-151-1/+1
|
* Merge branch 'master' of ssh://opensource.conformal.com/git/xxxtermMarco Peereboom2012-05-153-5/+35
|\
| * Remove encoding as a runtime setting for nowJosh Rickmar2012-05-151-2/+10
| |
| * Make enable_js_autorun a runtime setting. Missed this one before asJosh Rickmar2012-05-151-1/+15
| | | | | | | | it wasn't mentioned in the manpage.
| * Add a simple example for enable_js_autorun to the manpageJosh Rickmar2012-05-151-0/+8
| |
| * Fix the behavior of search_string so it matches the manpage. An emptyJosh Rickmar2012-05-151-2/+2
| | | | | | | | | | | | search_string now will not cause the search box to be drawn, and if search_string is dynamically changed at runtime to "\0", a show_oops warning is shown instead of loading the "broken" page.
* | add a missing got done; found by dhill and was sitting in my treeMarco Peereboom2012-05-151-1/+1
|/
* Rename js_autorun_enabled to enable_js_autorun and document the usage in the ↵Josh Rickmar2012-05-114-4/+19
| | | | manpage
* Make most of the rest of the settings dynamic.Josh Rickmar2012-05-113-60/+613
|
* tld_get_suffix will return NULL on bad input. Don't pass this toJosh Rickmar2012-05-101-1/+2
| | | | strcmp() unless we check for NULL first.
* Make show_url a runtime settingJosh Rickmar2012-05-073-4/+22
|
* Make show_tabs a runtime setting and replace atoi() calls withJosh Rickmar2012-05-073-23/+70
| | | | strtonum() when called on user input.
* Revert "Reorganize global default settings so the comments make sense. No"Josh Rickmar2012-05-071-62/+59
| | | | | | | | This reverts commit 8cf3ed194beb51595cc575c2fd7f8067d35c5dc7. Conflicts: settings.c
* enable_autoscroll is an action, not a setting. The old code wasJosh Rickmar2012-05-071-9/+0
| | | | correct.
* Why are these spaces? Fix with tabsJosh Rickmar2012-05-071-9/+9
|
* Make home a runtime setting.Josh Rickmar2012-05-041-4/+16
|
* Make append_next a runtime setting.Josh Rickmar2012-05-041-3/+12
|
* Make using :set enable_autoscroll = 1 actually work at runtime byJosh Rickmar2012-05-041-2/+11
| | | | | | iterating over each tab and running the autoscroll js. Dynamically Setting it to 0 doesn't work here because the js is still running. Need to find some way to kill it.
* Make marco happy. NULLs now completely fill the struct initializationJosh Rickmar2012-05-041-60/+60
| | | | so as to leave no doubt that values are being uninitialized.
* Reorganize global default settings so the comments make sense. NoJosh Rickmar2012-05-041-59/+62
| | | | functional changes.
* time_t -> long long -> fs271Marco Peereboom2012-04-301-6/+6
|
* add ctrl-enter for the windows headsMarco Peereboom2012-04-302-1/+23
|