aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* BREAKING CHANGE: remove toggle_zoom_type, toggle_statusGravatar Brendan Taylor2011-11-23
| | | | they've been replaced with the new toggle command
* add toggle commandGravatar Brendan Taylor2011-11-23
|
* Check for the beginning of the page as wellGravatar Ben Boeckel2011-11-23
|
* Add absolute scrolling argumentGravatar Ben Boeckel2011-11-23
|
* Merge branch 'master' of github.com:Dieterbe/uzblGravatar Brendan Taylor2011-10-30
|\
* | use GLIB_CHECK_VERSION instead of a Makefile hackGravatar Brendan Taylor2011-10-30
| |
* | Check if glib needs g_thread_initGravatar Ben Boeckel2011-10-25
| | | | | | | | | | | | | | Newer glib versions don't need g_thread_init. Of course, there is no announcement or whatever, so you have to go to the docs to discover this. Nevermind the lack of backwards compatibility with a nice message about when it will be removed for a while either.
| * Get the click context all the timeGravatar Ben Boeckel2011-10-25
|/
* fix segfault when setting 'accept_languages'Gravatar Brendan Taylor2011-10-21
|
* set the window name on embedded windows tooGravatar Brendan Taylor2011-10-05
| | | | this allows hiding scrollbars when using uzbl-tabbed
* fix set_iconGravatar Brendan Taylor2011-09-27
|
* fix a warning i just introducedGravatar Brendan Taylor2011-09-20
|
* do the exit lag workaround in plug mode tooGravatar Brendan Taylor2011-09-20
|
* refactor set_uri, fixing a memory leakGravatar Brendan Taylor2011-09-17
|
* don't change the page when given a blank URLGravatar Brendan Taylor2011-09-17
|
* convert show_status to a getterGravatar Brendan Taylor2011-09-17
|
* introduce getter and setter functions.Gravatar Brendan Taylor2011-09-17
| | | | | | | | | | | | some variables didn't always have a value reflecting the browser's internal state. for example, if `default_encoding` was never set then `print @default_encoding` would always print a blank string. this introduces getter functions that ensure the value of a variable is always in sync with the internal state of the browser. also: setters, because sometimes you need to process user input before storing it.
* don't repeat yourself: settings X propertiesGravatar Brendan Taylor2011-09-15
|
* Merge remote-tracking branch 'keis/event-format' into experimentalGravatar Brendan Taylor2011-09-13
|\
* | make init_fifo and init_socket be less surprising.Gravatar Brendan Taylor2011-09-13
| |
* | delete stale sockets instead of reattachingGravatar Brendan Taylor2011-09-13
| |
* | delete stale fifos instead of reattachingGravatar Brendan Taylor2011-09-13
| |
* | remove a particularly useless verbose messageGravatar Brendan Taylor2011-09-13
| |
* | use process id as the default instance nameGravatar Brendan Taylor2011-09-13
| | | | | | | | | | | | we were using the X window id, but this won't be unique if you have several displays on the same machine, and it doesn't exist if you're in plug mode.
* | GTK+ 3.1 has deprecated VBox and HBoxGravatar Brendan Taylor2011-09-11
| |
* | stupid typo in the last commitGravatar Brendan Taylor2011-09-11
| |
* | backwards compatibility with key names from GTK < 2.22Gravatar Brendan Taylor2011-09-11
| |
| * remove event formatting from run_parsed_commandGravatar keis2011-09-11
| | | | | | | | | | | | * split event formatting and sending into separate functions and expose both in events.h * make it possible to format array of strings
| * bail if trying to send events with newlinesGravatar keis2011-09-11
| | | | | | | | | | | | each line is treated as a new event by the event manager so previous behaviour could cause to event injection, which in theory could be use to exploit uzbl.
| * format events in C localeGravatar keis2011-09-11
|/
* new variable: enable_cross_file_accessGravatar Brendan Taylor2011-09-05
| | | | controls whether `file:` URIs are allowed to access other `file:` URIs.
* Merge remote-tracking branch 'keis/exit-lag-workaround' into experimentalGravatar Brendan Taylor2011-08-07
|\
* \ Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into mouse-eventsGravatar keis2011-07-28
|\ \
| | * add workaround for slow npviewer cleanupGravatar keis2011-07-28
| |/
| * add a spellcheck_languages variableGravatar Brendan Taylor2011-07-25
| | | | | | | | exposes http://webkitgtk.org/reference/WebKitWebSettings.html#WebKitWebSettings--spell-checking-languages
| * remove the scrollbars_visible variableGravatar Brendan Taylor2011-07-25
| | | | | | | | | | | | it doesn't work on GTK3, and discussion on the webkit-gtk mailing list suggests that it was never intended to work. instead, GTK theming can be used to hide scrollbars.
| * fix testsGravatar Brendan Taylor2011-07-12
| |
| * rearrange variable functions so they aren't all exposedGravatar Brendan Taylor2011-07-12
| |
| * Merge branch 'tailhook/wm-integ' into experimentalGravatar Brendan Taylor2011-07-12
| |\ | | | | | | | | | | | | | | | | | | Conflicts: src/callbacks.c src/callbacks.h src/uzbl-core.c
| * \ Merge branch 'master' into experimentalGravatar Brendan Taylor2011-07-12
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/uzbl-core.c I accidentally merged a pull request into master, getting everything synced up again.
| * | | fix ellipsization on gtk2Gravatar Brendan Taylor2011-07-03
| | | | | | | | | | | | | | | | | | | | | | | | 1. a stupid copy/paste error 2. add a bit of room to our estimation of the natural size so things don't get ellipsized unnecessarily
| * | | the status bar is now a custom gtk widgetGravatar Brendan Taylor2011-07-03
| | | | | | | | | | | | | | | | | | | | | | | | it gives the left side of the status bar as much space as it needs (but importantly, no more than the size of the window. this should put the window resize bug to rest for good...
| | | * Added window_role variable to set WM_WINDOW_ROLEGravatar Paul Colomiets2011-07-02
| | | | | | | | | | | | | | | | Another feature for easier integrating with window managers
| | | * Ensures that UZBL_URI is set when window is mappedGravatar Paul Colomiets2011-07-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will help window manager to sort windows when they are mapped, instead of moving them back and forth when they are already shown. This is theoretically incurs tiny delay of showing window, but it's shown before main loop is started anyway, and you can't see anything useful before, so the delay is negligible.
| | | * Implemented setting UZBL_URI window propertyGravatar Paul Colomiets2011-07-02
| | |/ | | | | | | | | | | | | This property is set for all uzbl windows unconditionally. This allows window managers and other tools organize windows more carefully.
| * | Revert "wrap the mainbar_label_left when it gets too long."Gravatar Brendan Taylor2011-06-07
| | | | | | | | | | | | | | | This reverts commit 31b12cc2715db2da0b90bab9b51f33438b7af1c4. It didn't work the way I wanted.
| * | Merge remote-tracking branch 'keis/split-core' into experimentalGravatar Brendan Taylor2011-06-05
| |\ \
| | * | hide some implementation details of variablesGravatar David Keijser2011-05-30
| | | |
| | * | move variable hashtable to a more sane placeGravatar David Keijser2011-05-30
| | | |
| | * | move uri_change_cb to variablesGravatar David Keijser2011-05-30
| | | |