aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/uzbl-core.c
Commit message (Collapse)AuthorAge
* remove special handling of the SELECTION_CHANGED eventGravatar Brendan Taylor2012-04-21
| | | | | fixes #296 (primary selection replaces content of clipboard) fixes slow insertion in some textareas (#295 ?)
* Merge remote-tracking branch 'dylex/master'Gravatar Brendan Taylor2012-01-10
|\ | | | | | | | | Conflicts: src/uzbl-core.c
* | Check for the beginning of the page as wellGravatar Ben Boeckel2011-11-23
| |
* | Add absolute scrolling argumentGravatar Ben Boeckel2011-11-23
| |
* | 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.
* | set the window name on embedded windows tooGravatar Brendan Taylor2011-10-05
| | | | | | | | this allows hiding scrollbars when using uzbl-tabbed
* | 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.
* | Merge remote-tracking branch 'keis/event-format' into experimentalGravatar 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.
| | * Fix some quoting woesGravatar Dylan Simon2011-09-11
| | | | | | | | | | | | | | | | | | - Avoid buffer overrun in split_quoted with trailing backslash (!) - Properly quote COMMAND_EXECUTED arguments - Remove unused and misleading parse_command function
* | | GTK+ 3.1 has deprecated VBox and HBoxGravatar 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
| * fix shell argument orderGravatar Dylan Simon2011-08-27
|/
* 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.
* 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.
* | | 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.
* | 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
| | |
* | | drop the set_geometry_hints stuff, it never worked anyhowGravatar Brendan Taylor2011-05-27
| | |
* | | rename the window "Uzbl", spaces don't play well with themingGravatar Brendan Taylor2011-05-27
| | |
* | | wrap the mainbar_label_left when it gets too long.Gravatar Brendan Taylor2011-05-27
| | | | | | | | | | | | fixes the window resize bug, hopefully for good.
| * | move core variable stuff into variables fileGravatar David Keijser2011-05-25
| | |
| * | two more commands from uzbl-coreGravatar David Keijser2011-05-25
| | |
| * | refactor search commandsGravatar David Keijser2011-05-24
| | |
| * | split commands from uzbl-core.cGravatar David Keijser2011-05-24
|/ /
* | eval_js should take const gchar *scriptGravatar Brendan Taylor2011-05-20
| |
* | moved load_uri_imp into cmd_load_uri (the only place it was used)Gravatar Brendan Taylor2011-05-20
| |
* | add key-press/-release handlers to the status bar labels. fixes #262.Gravatar Brendan Taylor2011-05-19
| |
| * Check if file exist before trying to run itGravatar keis2011-05-15
| | | | | | | | | | | | | | | | find_existing_file modified to return NULL when file does not exist even for simple paths. run_external_js and spawn prints error messages when a file could not be loaded.
* | have another shot at fixing window geometry hint issues, thanks stinkyGravatar Brendan Taylor2011-05-10
| |
* | Merge remote-tracking branch 'keis/focus-event' into experimentalGravatar Brendan Taylor2011-05-09
|\ \ | | | | | | | | | | | | | | | Conflicts: src/callbacks.c src/callbacks.h
* | | dear uzbl, please listen to the user when they tell you what size to be.Gravatar Brendan Taylor2011-05-09
| | |
* | | fix compiler warningsGravatar Brendan Taylor2011-04-30
| | |
* | | GTK3 always has scrollbars, workaround for ↵Gravatar Brendan Taylor2011-04-30
| | | | | | | | | | | | | | | | | | https://bugs.webkit.org/show_bug.cgi?id=59197 :(
* | | Merge branch 'experimental' into scrollbarsGravatar Brendan Taylor2011-04-30
|\ \ \
| | * | add focus and blur events from DOMGravatar keis2011-04-29
| |/ /
| * | allow processes other than uzbl-tabbed to start uzbl-browser instances that ↵Gravatar Brendan Taylor2011-04-24
| | | | | | | | | | | | | | | | | | appear in -tabbed not entirely sure that this is useful yet.
| * | Merge remote-tracking branch 'mathstuf/dev/fix-clashing-long-option' into ↵Gravatar Brendan Taylor2011-04-14
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | experimental Conflicts: README
| | * | Avoid --name which GTK uses internallyGravatar Ben Boeckel2011-04-14
| | |/ | | | | | | | | | Addresses #170.
| * | allow a second argument to the 'download' command that specifies a ↵Gravatar Brendan Taylor2011-04-12
| | | | | | | | | | | | destination path
| * | add a 'download' command that can download the current url or an arbitrary urlGravatar Brendan Taylor2011-04-12
| |/
| * Merge remote-tracking branch 'keis/fix-clear-cookies-warning' into experimentalGravatar Brendan Taylor2011-03-22
| |\