summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-18Kick the lousy status barPeter Hofmann
- It didn't show the load progress. - It destroyed the browser's usability. When there's a horizontal scroll bar, it MUST be placed at the bottom of the screen. There MUST NOT be any widget below it.
2014-06-17Built-in download featurePeter Hofmann
Downloading via an external tool poses a problem: You have to pass the current "web context" from the browser to your tool. This context comprises cookies, the referrer, the user agent and information about HTTP basic auth. With some effort, you can pass most of this to your tool -- except for HTTP basic auth. tl;dr: Downloading via wget is pretty complicated. With this commit, WebKit handles the downloads. What's missing, are some GUI elements to monitor and cancel downloads.
2014-06-17Fix and enhance creation/destruction of tabsPeter Hofmann
Websites can now open or close tabs/windows if requested by the user. - We must not destroy the window in its destroy handler. - WebKit's "new-window-policy-decision-requested" is totally irrelevant. - Handle WebKit's "create-web-view" by allocating a new window and an "empty" WebView. - Handle WebKit's "close-web-view" by destroying the window, which will call client_destroy(), which will do exactly the same as closing the window manually.
2014-06-16Nitpicking: ht_uri is a gchar *Peter Hofmann
2014-06-16Fix missing URI in ^GPeter Hofmann
2014-06-16Also log the URI that the user actually requestedPeter Hofmann
2014-06-15README: Fix spelling ;-)Peter Hofmann
2014-06-15Code style: Fix whitespace and a wrapPeter Hofmann
2014-06-15README: Fix typoPeter Hofmann
2014-06-15Shorten grab_environment_configuration()Peter Hofmann
2014-06-15README: Mention wgetPeter Hofmann
2014-06-15README: A word about local storagePeter Hofmann
2014-06-15Full content zoom is buggy... -_-Peter Hofmann
2014-06-15Revert "Catch button-release-events, feels more natural"Peter Hofmann
This reverts commit 26713eb349b4c8b7d2fb22a5973e898ea43e1b7f. It's a break between lariza and tabbed -- the latter responds to button-press-events.
2014-06-15Don't fiddle with __NAME__ at runtimePeter Hofmann
2014-06-15README tweaksPeter Hofmann
2014-06-15User configuration using environment variablesPeter Hofmann
I think of these options (language, download dir, zoom) as user settings. The user does not change them all the time. He sets them once and for all in his shell rc. "-e" and friends, however, are considered runtime settings. "THIS TIME, I want my browser to debug all requests!"
2014-06-15Launch new tabbed windows relative to the current positionPeter Hofmann
2014-06-15Catch button-release-events, feels more naturalPeter Hofmann
2014-06-15Better ensure_http_prefix() -> ensure_url_scheme()Peter Hofmann
2014-06-15ensure_http_prefix knows about file://Peter Hofmann
2014-06-15Use ensure_http_prefix() in client_new()Peter Hofmann
2014-06-15Auto-add "http://" when typed in location barPeter Hofmann
2014-06-15Re-show URI in location bar on EscapePeter Hofmann
2014-06-15Open new windows on middle clickPeter Hofmann
2014-06-15Simplify key_web_view()Peter Hofmann
2014-06-15Support back/forward keys on micePeter Hofmann
2014-06-15Refactor: Declare variables at the beginning of functionsPeter Hofmann
2014-06-15Set WM_CLASSPeter Hofmann
2014-06-15s/zea/lariza -- this is finalPeter Hofmann
2014-06-15Refactoring: Group and unify identifiersPeter Hofmann
2014-06-15Refactoring: Make the application name a simple parameter in MakefilePeter Hofmann
2014-06-15Refactoring: Remove "zea" from function namesPeter Hofmann
2014-06-15Try to explain the builtin tabbed launcherPeter Hofmann
2014-06-15Fix minor memleakPeter Hofmann
2014-06-15Do not hardcode the path to the FIFOPeter Hofmann
2014-06-15Set Accept-Language headerPeter Hofmann
Deep down inside... Had to look into dwb's code to find out how to do this. Kudos, dear portix!
2014-06-15Usage: There can be multiple options and multiple URIsPeter Hofmann
2014-06-15Disable tabbed on "-e"Peter Hofmann
2014-06-15Deal with embedding failuresPeter Hofmann
Now, that's a real issue. :-)
2014-06-15Revert "Deal with race conditions while embedding"Peter Hofmann
This reverts commit c32e64b89186c09c5d2c9f82a18e0a541dd414b4. Nonsense. We read the XID from tabbed, which means tabbed must know its XID, which means there must be a window to plug-in to.
2014-06-14Deal with race conditions while embeddingPeter Hofmann
I have not encountered any race conditions. In theory, they could happen, though.
2014-06-14Abort on invalid argumentsPeter Hofmann
2014-06-14Negating options are upper casePeter Hofmann
2014-06-14Launch tabbed automaticallyPeter Hofmann
2014-06-14Simplify zea_load_adblock()Peter Hofmann
2014-06-14Cooperative instancesPeter Hofmann
2014-06-14Use g_build_filename()Peter Hofmann
2014-06-14UI tweaksPeter Hofmann
2014-06-14Fix lulzPeter Hofmann