vimb.git
7 years agoFixed none cleared valid hints #427.
Daniel Carl [Sat, 8 Jul 2017 22:13:22 +0000 (00:13 +0200)]
Fixed none cleared valid hints #427.

7 years agoMerge pull request #429 from fanglingsu/issue-427
Daniel Carl [Sat, 8 Jul 2017 21:20:04 +0000 (23:20 +0200)]
Merge pull request #429 from fanglingsu/issue-427

Switch to numeric hint labeling for hint-keys beginning wiht '0'

7 years agoMention numeric hint-keys in man page #427.
Daniel Carl [Sat, 8 Jul 2017 21:16:25 +0000 (23:16 +0200)]
Mention numeric hint-keys in man page #427.

7 years agoUse new numeric hint-keys as default setting #427.
Daniel Carl [Sat, 8 Jul 2017 21:01:05 +0000 (23:01 +0200)]
Use new numeric hint-keys as default setting #427.

7 years agoHandle hintkeys beginning with 0 special #427.
Daniel Carl [Sat, 8 Jul 2017 19:57:21 +0000 (21:57 +0200)]
Handle hintkeys beginning with 0 special #427.

Number hints with hintkeys that begin with '0' as numbers starting from
next hint char. Moved hint labeling logic into separate closure.

7 years agoAdd factory to get hint labeler #427.
Daniel Carl [Wed, 28 Jun 2017 22:38:18 +0000 (00:38 +0200)]
Add factory to get hint labeler #427.

7 years agoFixed alignements.
Daniel Carl [Tue, 27 Jun 2017 22:34:17 +0000 (00:34 +0200)]
Fixed alignements.

7 years agoFixed wrong scroll position calculation #428.
Daniel Carl [Tue, 27 Jun 2017 21:21:16 +0000 (23:21 +0200)]
Fixed wrong scroll position calculation #428.

We use the scrollHeight and the scrollTop of the
document.documentElement. But there are pages where the scrollHeight is
calculated as the same value like the height of the viewport. I can't
identify what causes this issue, but using the document.body
scrollHeight fixes this.

7 years agoAlways create new user content manager.
Daniel Carl [Sat, 24 Jun 2017 23:00:52 +0000 (01:00 +0200)]
Always create new user content manager.

We sett all we need on the user content manager so it's the best to set
it to new related webview too.

7 years agoFixed wrong case of bool values in JS calls.
Daniel Carl [Sat, 24 Jun 2017 22:16:08 +0000 (00:16 +0200)]
Fixed wrong case of bool values in JS calls.

7 years agoUse Uppercase bool value from glib.
Daniel Carl [Sat, 24 Jun 2017 00:29:08 +0000 (02:29 +0200)]
Use Uppercase bool value from glib.

7 years agoUse more async script evaluation #421.
Daniel Carl [Sat, 24 Jun 2017 00:10:57 +0000 (02:10 +0200)]
Use more async script evaluation #421.

It's better to block UI less by running the hinting stuff. But there are
some points at the time where we can't avoid running the JavaScript
syncronously e.g. to check if the user typed key was handled by the
hinting script or not. Later means that we let the normal mode decide
what to do with this.

7 years agoEnable JavaScript as long the hinting is done #421.
Daniel Carl [Wed, 21 Jun 2017 22:43:19 +0000 (00:43 +0200)]
Enable JavaScript as long the hinting is done #421.

As another benefit the scroll and resize observer works so that the
hints are redrawn when the window is resized or the top window is
scrolled.

7 years agoAvoid dbus timeout by timeout function in js #421.
Daniel Carl [Wed, 21 Jun 2017 20:50:11 +0000 (22:50 +0200)]
Avoid dbus timeout by timeout function in js #421.

I don't understand why the JavaScript blocks the dbus processing or the
return from JavaScript on case of e.click() or on window.location.href =
href; the later only cause dbus timeout when the url does not change
except of the location hash.

7 years agoRemove event observers in clear().
Daniel Carl [Wed, 21 Jun 2017 20:43:34 +0000 (22:43 +0200)]
Remove event observers in clear().

7 years agoShow extension dir in version output too.
Daniel Carl [Tue, 20 Jun 2017 09:14:04 +0000 (11:14 +0200)]
Show extension dir in version output too.

Hope this helps to identify compilation issues in the future where the
webextension is not found.

7 years agoFixed endless loop on hints with same length.
Daniel Carl [Tue, 20 Jun 2017 22:38:06 +0000 (00:38 +0200)]
Fixed endless loop on hints with same length.

In case hints with same length where generated the loop to get the
number of addressable hints did not end when there was only one single
hintkey defined.
So now do not attempt to run the same length hint label logic in case
there is only one hint key set. In this case normal hint labels are
generated.

7 years agoShortened hint logic a little.
Daniel Carl [Tue, 20 Jun 2017 22:18:59 +0000 (00:18 +0200)]
Shortened hint logic a little.

7 years agoRecalculate and draw hints after resize or scroll.
Daniel Carl [Tue, 20 Jun 2017 20:41:50 +0000 (22:41 +0200)]
Recalculate and draw hints after resize or scroll.

Refresh the hints in case of scrolling or resizing of the window. This
does only work in case JavaScript is enabled, else the timeout function
nor the event listeners work.

7 years agoMore fine grained version info.
Daniel Carl [Mon, 19 Jun 2017 21:36:08 +0000 (23:36 +0200)]
More fine grained version info.

Show the libraries vimb was compiled against and that are used at
runtime. Remove license info from the output for 'version' or '-v'
option.

7 years agohistory: skip adding items if history is disabled
Patrick Steinhardt [Mon, 19 Jun 2017 05:41:49 +0000 (07:41 +0200)]
history: skip adding items if history is disabled

Previous to the migration to webkit2gtk, history items were not added
when either "history-max-items" was set to "0" or if a command was not
inserted by typing, but for example triggered by "au" commands. Right
now, though, this code is #ifdef'd out, so we'll always add items to the
history.

While we currently have no easy way of determining whether a command was
typed or not, we should still refuse adding history items whenever the
"history-max-items" variable is set to "0". As "au"-triggered commands
are not yet supported again, we do not even have to worry about this
case right now, but only later on when it is added. So we fix the issue
now by returning early when `history_max` is not set.

7 years agoShortened variables.
Daniel Carl [Sun, 18 Jun 2017 19:17:05 +0000 (21:17 +0200)]
Shortened variables.

7 years agoMerge branch 'improve_hint_char_selection' of https://github.com/rti/vimb.
Daniel Carl [Sun, 18 Jun 2017 18:04:34 +0000 (20:04 +0200)]
Merge branch 'improve_hint_char_selection' of https://github.com/rti/vimb.

7 years agoadds hints.html manual test page
Robert Timm [Thu, 15 Jun 2017 21:17:13 +0000 (23:17 +0200)]
adds hints.html manual test page

7 years agoimproves hint char selection
Robert Timm [Thu, 15 Jun 2017 21:16:53 +0000 (23:16 +0200)]
improves hint char selection

7 years agoHelp contributors to find something to work on.
Daniel Carl [Thu, 15 Jun 2017 12:57:59 +0000 (14:57 +0200)]
Help contributors to find something to work on.

7 years agoRemove TODO which is now available as issue.
Daniel Carl [Thu, 15 Jun 2017 12:42:33 +0000 (14:42 +0200)]
Remove TODO which is now available as issue.

7 years agoAdded goals to CONTRIBUTING file.
Daniel Carl [Wed, 14 Jun 2017 21:53:18 +0000 (23:53 +0200)]
Added goals to CONTRIBUTING file.

7 years agoRenamed CONTRIBUTING file because github likes that.
Daniel Carl [Wed, 14 Jun 2017 21:35:22 +0000 (23:35 +0200)]
Renamed CONTRIBUTING file because github likes that.

7 years agoFix O after searching caused empty inputbox.
Daniel Carl [Wed, 14 Jun 2017 21:21:28 +0000 (23:21 +0200)]
Fix O after searching caused empty inputbox.

In case a searching is active vimb is still in normal mode. So
'O'-keypress should write ':open URL' to the inputbox and switch vimb
into command mode. But during the switching of the modes, the already
written ':open ..' string was immediately overwritten by empty string.
So the user was left with cursor in empty inputbox.

Now the input is only cleared on stopping searching when a links was
fired during searching which is done in code during
WEBKIT_LOAD_COMMITTED event processing.

7 years agoDon't allocate memory for none shown messages.
Daniel Carl [Wed, 14 Jun 2017 20:59:08 +0000 (22:59 +0200)]
Don't allocate memory for none shown messages.

The logic that decided if a message could be written to input box was in
input_print() which is called with newly allocated and prepared message
string. But in case the widget is focused and we do not intend a forced
update the string preparation was in vain.
So do the check if the input could be written before allocating any
memory.

7 years agoUse web context of the webview instead of default.
Daniel Carl [Wed, 14 Jun 2017 20:10:04 +0000 (22:10 +0200)]
Use web context of the webview instead of default.

This should not make any difference at the time but we are free to use
custom web context later.

7 years agoKeep xid generation and setting to env close together.
Daniel Carl [Tue, 13 Jun 2017 20:41:27 +0000 (22:41 +0200)]
Keep xid generation and setting to env close together.

7 years agoDon't set window size if embedded #417.
Daniel Carl [Tue, 13 Jun 2017 20:22:19 +0000 (22:22 +0200)]
Don't set window size if embedded #417.

In case vimb is embedded the window size is determined by the embedding
application. Setting the default window size in this case caused screen
redraw issue so that statusbar was not updated properly.

7 years agoLower required webkit version #415.
Daniel Carl [Thu, 8 Jun 2017 22:26:24 +0000 (00:26 +0200)]
Lower required webkit version #415.

7 years agoDon't limit web processes to one.
Daniel Carl [Thu, 8 Jun 2017 22:05:41 +0000 (00:05 +0200)]
Don't limit web processes to one.

7 years agoFixed unused function parameter.
Daniel Carl [Mon, 5 Jun 2017 22:14:06 +0000 (00:14 +0200)]
Fixed unused function parameter.

7 years agoDon't recompile all objects in scripts change.
Daniel Carl [Fri, 2 Jun 2017 22:48:27 +0000 (00:48 +0200)]
Don't recompile all objects in scripts change.

7 years agoRemove also desktop file on uninstall.
Daniel Carl [Fri, 2 Jun 2017 21:22:19 +0000 (23:22 +0200)]
Remove also desktop file on uninstall.

7 years agoAdapt comment to fit the js2h logic.
Daniel Carl [Fri, 2 Jun 2017 21:17:44 +0000 (23:17 +0200)]
Adapt comment to fit the js2h logic.

7 years agoRemove duplicate call to webkit_uri_request_get_uri.
Daniel Carl [Tue, 30 May 2017 21:22:36 +0000 (23:22 +0200)]
Remove duplicate call to webkit_uri_request_get_uri.

7 years agoRemove function parameter to embed new spawned instances.
Daniel Carl [Tue, 30 May 2017 21:18:39 +0000 (23:18 +0200)]
Remove function parameter to embed new spawned instances.

All calls used the embed flag so this can be removed.

7 years agoFree memory of pid string.
Daniel Carl [Tue, 30 May 2017 21:14:45 +0000 (23:14 +0200)]
Free memory of pid string.

7 years agoReleased version 3.0-alpha.
Daniel Carl [Fri, 26 May 2017 21:56:23 +0000 (23:56 +0200)]
Released version 3.0-alpha.

7 years agoMerge branch 'webkit2'.
Daniel Carl [Fri, 26 May 2017 22:11:00 +0000 (00:11 +0200)]
Merge branch 'webkit2'.

7 years agoUpdate license year.
Daniel Carl [Fri, 26 May 2017 21:54:51 +0000 (23:54 +0200)]
Update license year.

7 years agoRemoved no_proxy from man.
Daniel Carl [Fri, 26 May 2017 21:34:17 +0000 (23:34 +0200)]
Removed no_proxy from man.

This is not done by vimb at the time because the proxy stuff is done by
webkit itself.

7 years agoSet window default size.
Daniel Carl [Wed, 24 May 2017 19:43:02 +0000 (21:43 +0200)]
Set window default size.

7 years agoAdd :clearcache command.
Daniel Carl [Wed, 24 May 2017 19:04:32 +0000 (21:04 +0200)]
Add :clearcache command.

This allows to discard all caches currently used by webkit.

7 years agoRemoved hard coded tls policy.
Daniel Carl [Wed, 24 May 2017 18:42:30 +0000 (20:42 +0200)]
Removed hard coded tls policy.

The policy is already set during setting initialization.

7 years agoSort changed settings.
Daniel Carl [Tue, 23 May 2017 21:17:40 +0000 (23:17 +0200)]
Sort changed settings.

7 years agoAdded hardware acceleration to man page.
Daniel Carl [Tue, 23 May 2017 21:09:57 +0000 (23:09 +0200)]
Added hardware acceleration to man page.

7 years agoUse dashed naming for user-agent too.
Daniel Carl [Tue, 23 May 2017 20:45:06 +0000 (22:45 +0200)]
Use dashed naming for user-agent too.

7 years agoChange default user-agent.
Daniel Carl [Tue, 23 May 2017 20:29:11 +0000 (22:29 +0200)]
Change default user-agent.

Use the user-agent that would be created by
webkit_settings_set_user_agent_with_application_details.

7 years agoStop hinting when element clicked by mouse.
Daniel Carl [Sat, 20 May 2017 23:58:54 +0000 (01:58 +0200)]
Stop hinting when element clicked by mouse.

In case a links was clicked by mouse during active hinting, the new page
was loaded and kept still in hinting mode but there where no hints shown
on the new page.

7 years agoDon't handle hint in new window by javascript.
Daniel Carl [Sat, 20 May 2017 23:55:03 +0000 (01:55 +0200)]
Don't handle hint in new window by javascript.

There are a lot of restrictions that introduces some hacks to allow to
open hints into new window. The hinting script does now only fire the
hints in case of ;o and ;t hinting and the decision where to open the
navigation decision is met in the c layer.

7 years agoDon't attempt to open empty url by hinting.
Daniel Carl [Sat, 20 May 2017 22:32:20 +0000 (00:32 +0200)]
Don't attempt to open empty url by hinting.

There are pages where following links are used <a href="#"
onclick="...">...</a>. In this special case of href="#" the elements
should be clicked to let webkit decide how to handle the element instead
of opening current page with appended location mark.

7 years agoMerge branch 'pks/hints-without-js' of https://github.com/pks-t/vimb into webkit2
Daniel Carl [Sat, 20 May 2017 22:18:53 +0000 (00:18 +0200)]
Merge branch 'pks/hints-without-js' of https://github.com/pks-t/vimb into webkit2

7 years agoMerge branch 'pks/scroll-page' of https://github.com/pks-t/vimb into webkit2
Daniel Carl [Sat, 20 May 2017 22:04:27 +0000 (00:04 +0200)]
Merge branch 'pks/scroll-page' of https://github.com/pks-t/vimb into webkit2

7 years agoMerge branch 'pks/acceleration-settings' of https://github.com/pks-t/vimb into webkit2
Daniel Carl [Sat, 20 May 2017 22:01:06 +0000 (00:01 +0200)]
Merge branch 'pks/acceleration-settings' of https://github.com/pks-t/vimb into webkit2

7 years agoMerge branch 'pks/clear-scripts' of https://github.com/pks-t/vimb into webkit2
Daniel Carl [Sat, 20 May 2017 21:55:02 +0000 (23:55 +0200)]
Merge branch 'pks/clear-scripts' of https://github.com/pks-t/vimb into webkit2

7 years agohints: do not execute `click` in addition to opening hints
Patrick Steinhardt [Sat, 20 May 2017 16:56:18 +0000 (18:56 +0200)]
hints: do not execute `click` in addition to opening hints

When the element which we are about to open has a "href" attribute, we
will execute either `window.open` or set the `window.location.href`
attribute to the target's reference. But as we forgot to call `return`
here, we will also execute the code to open elements without "href"
attribute. In the case of opening a new window, we will now first open
the new window and then also set the current window's URL to the target,
which is obviously wrong.

Fix the issue by putting the excution of `click()` inside an
else-branch.

7 years agohints: use `window.location.href` to change current URL
Patrick Steinhardt [Sat, 20 May 2017 16:49:08 +0000 (18:49 +0200)]
hints: use `window.location.href` to change current URL

When opening a hint in the current window, we do so by emulating a
`click()` on the element that we want to switch to. This enables us to
open hints when there is no href set, e.g. when the element executes
JavaScript to change the page. Unfortunately, this method of opening
links does not work when JavaScript is disabled in the client.

If the element has a `href` attribute, we can work around this problem
by directly setting `window.location.href` to the element's reference.
Next to being a more obvious method of setting the current URL, this
also fixes hints with JavaScript disabled. Note that we still have to
keep around the old method of using `click()` on the element in case it
has no href attribute.

7 years agoscroll: fix percent-based scrolling
Patrick Steinhardt [Sat, 20 May 2017 15:35:44 +0000 (17:35 +0200)]
scroll: fix percent-based scrolling

Scrolling via ^D and ^U should scroll by a percentage of the client's
current viewport. We do this in JavaScript via the client height of the
document's element. Accidentally, it may hold the desired value in some
cases, but in general it only holds the total height of the element
itself. What we desire instead is the window's height, which can be
retrieved via `Window.innerHeight`. Like this, our calculations are not
based upon the webpage but instead on the browser window, fixing
scrolling on some pages.

7 years agosetting: expose hardware acceleration settings
Patrick Steinhardt [Sat, 20 May 2017 10:25:25 +0000 (12:25 +0200)]
setting: expose hardware acceleration settings

Previous to the migration to the WebKit 2 API, we were exposing settings
to enable hardware acceleration for compositing via
"accelerated-compositing". With WebKit 2, there are two relevant
settings to enable compositing. The "hardware-acceleration_policy" is
used to determine when the rendering process should actually use
hardware acceleration. "accelerated-2d-canvas" enables hardware
acceleration for some 2D canvas content if WebKitGTK+ is built with
Cairo and its unstable CairoGL API.

Thes patch exposes both of these settings via vimb's settings engine.

7 years agohints: remove unused hints.js.h file
Patrick Steinhardt [Sat, 20 May 2017 08:42:40 +0000 (10:42 +0200)]
hints: remove unused hints.js.h file

The "hints.js.h" file has been superseded by "scripts.h", which is
generated by make from our JavaScript and CSS files. As such, we can
remove the unused "hints.js.h" file and remove the include from
"hints.c".

7 years agosetting: always clear scripts previous to adding global ones
Patrick Steinhardt [Sat, 20 May 2017 08:36:40 +0000 (10:36 +0200)]
setting: always clear scripts previous to adding global ones

Previous to adding user scripts to the content manager, we should always
clear existing scripts. Otherwise, e.g. in the sequence

    :set user-scripts=off
    :set user-scripts=on

we'd end up with the same global scripts injected twice.

Fix the issue by unconditionally clearing all user scripts previous to
adding scripts.

7 years agoCast to OptArgFunction.
Daniel Carl [Fri, 19 May 2017 22:31:56 +0000 (00:31 +0200)]
Cast to OptArgFunction.

7 years agoMove include of hints.js.h to the right place.
Daniel Carl [Fri, 19 May 2017 21:55:06 +0000 (23:55 +0200)]
Move include of hints.js.h to the right place.

7 years agoadds insight about shortcut-default #365
Robert Timm [Fri, 19 May 2017 12:16:08 +0000 (14:16 +0200)]
adds insight about shortcut-default #365

7 years agoadds incsearch to manpage (#365)
Robert Timm [Fri, 19 May 2017 08:05:55 +0000 (10:05 +0200)]
adds incsearch to manpage (#365)

7 years agoMention runsandbox target in README.
Daniel Carl [Thu, 18 May 2017 23:47:58 +0000 (01:47 +0200)]
Mention runsandbox target in README.

7 years agoUpdate change settings in CHANGELOG.
Daniel Carl [Thu, 18 May 2017 23:41:58 +0000 (01:41 +0200)]
Update change settings in CHANGELOG.

7 years agoAdd settings for spell checking.
Daniel Carl [Thu, 18 May 2017 23:38:58 +0000 (01:38 +0200)]
Add settings for spell checking.

7 years agoIncrease default z-index for hint elements.
Daniel Carl [Thu, 18 May 2017 22:12:45 +0000 (00:12 +0200)]
Increase default z-index for hint elements.

There are some sites where the hint label where covered by on page
elements using a high z-index. So increase our default too.

7 years agofixes serif-font setting name to match manpage
Robert Timm [Thu, 18 May 2017 11:24:24 +0000 (13:24 +0200)]
fixes serif-font setting name to match manpage

7 years agoEliminate dead code from main.c
Ferenc- [Thu, 18 May 2017 08:58:55 +0000 (10:58 +0200)]
Eliminate dead code from main.c

1. Value stored in 'num' in line 161 was never read
   since it was unconditionally overwritten immediately in 166.

2. Value stored in 'suffix' in line 145 was never read
   since it was overwritten in both branches of 'if(dot_post)'.

3. Value stored in 'req' in line 1157 was never read
   if the branch of the first if statement is taken.
   Storing has been placed int to the second if statement,
   where it is actually used.

7 years agoAdded missed ;x hinting to man page.
Daniel Carl [Tue, 16 May 2017 22:01:12 +0000 (00:01 +0200)]
Added missed ;x hinting to man page.

7 years agoUse dashed setting names.
Daniel Carl [Tue, 16 May 2017 21:39:21 +0000 (23:39 +0200)]
Use dashed setting names.

The mixes use of none separated settings names and those containing
multiple dashes looked ugly. So use consequently dashes setting names.

7 years agoAdded current available settings to man page #365.
Daniel Carl [Tue, 16 May 2017 21:23:33 +0000 (23:23 +0200)]
Added current available settings to man page #365.

7 years agoAdded missed x-hint-command setting.
Daniel Carl [Tue, 16 May 2017 21:21:48 +0000 (23:21 +0200)]
Added missed x-hint-command setting.

7 years agoAdd space after sed -e option #388.
Daniel Carl [Mon, 15 May 2017 20:27:28 +0000 (22:27 +0200)]
Add space after sed -e option #388.

7 years agoRemove also whitespace around *%/[.
Daniel Carl [Fri, 12 May 2017 23:29:49 +0000 (01:29 +0200)]
Remove also whitespace around *%/[.

7 years agoClose comments in js on end of line.
Daniel Carl [Fri, 12 May 2017 23:13:58 +0000 (01:13 +0200)]
Close comments in js on end of line.

The multi line comments /* */ must be closed on the same line. Because
the simple script that minifies the scripts a little can only  remove
those on same line closed comments properly.

7 years agofixes :eval segfault (closes #397)
Robert Timm [Fri, 12 May 2017 21:32:15 +0000 (23:32 +0200)]
fixes :eval segfault (closes #397)

7 years agojs2sh.sh: sed for was GNU-specific.
Michael Danilov [Thu, 27 Apr 2017 14:33:08 +0000 (16:33 +0200)]
js2sh.sh: sed for was GNU-specific.

7 years agoMention mailing list also for the contributors.
Daniel Carl [Fri, 12 May 2017 11:26:39 +0000 (13:26 +0200)]
Mention mailing list also for the contributors.

7 years agoMoved contribution related stuff from README to CONTRIBUTE.
Daniel Carl [Fri, 12 May 2017 11:16:19 +0000 (13:16 +0200)]
Moved contribution related stuff from README to CONTRIBUTE.

7 years agoAdded editor to man page #347.
Daniel Carl [Thu, 11 May 2017 22:35:59 +0000 (00:35 +0200)]
Added editor to man page #347.

7 years agoFixed wrong link identifier.
Daniel Carl [Thu, 11 May 2017 22:30:04 +0000 (00:30 +0200)]
Fixed wrong link identifier.

7 years agoFixed wrong client to webpage relation #349.
Daniel Carl [Thu, 11 May 2017 22:08:45 +0000 (00:08 +0200)]
Fixed wrong client to webpage relation #349.

In case a related webview is created. The relation between webextensions
web page and the client in the ui process where mismatched. In fact the
relation was correct, but when a dbus call was fired from ui to
webextension, the webextension used the last created web page to run
javascript in or to focus input fields.
This patch adds the page_id of the web page to the dbus calls that
target a specific web page. So that th webextension can get the right
page by this id to use to answer the call.
Also the communication from webextension to ui lagged this essential
information. So that a click to a editable filed in a related webview
all related instances into input mode switched.

7 years agoimplements external editor (closes #347)
Robert Timm [Thu, 11 May 2017 21:15:45 +0000 (23:15 +0200)]
implements external editor (closes #347)

7 years agoRemoved dead code #393.
Daniel Carl [Thu, 11 May 2017 12:55:32 +0000 (14:55 +0200)]
Removed dead code #393.

7 years agoFixed possible null pointer dereference #392.
Daniel Carl [Thu, 11 May 2017 12:50:01 +0000 (14:50 +0200)]
Fixed possible null pointer dereference #392.

7 years agoAdded inofficial arch linux pkgbuild.
Daniel Carl [Thu, 11 May 2017 12:38:59 +0000 (14:38 +0200)]
Added inofficial arch linux pkgbuild.

7 years agoUpdated README.
Daniel Carl [Thu, 11 May 2017 12:35:45 +0000 (14:35 +0200)]
Updated README.

Also added known packages.

7 years agoAdded hinting to man page.
Daniel Carl [Thu, 11 May 2017 12:02:42 +0000 (14:02 +0200)]
Added hinting to man page.

7 years agofixes hintElem opacity for non opaque elements
Robert Timm [Tue, 9 May 2017 22:11:39 +0000 (00:11 +0200)]
fixes hintElem opacity for non opaque elements

Forces the hintElem to be fully opaque, even when attached to non opaque
elements (e.g. {opacity:0.5}). #349

7 years agoDon't give MFLAGS to make explicitly.
Daniel Carl [Tue, 9 May 2017 18:59:52 +0000 (20:59 +0200)]
Don't give MFLAGS to make explicitly.

The option given to the upper most make call are already given as
MAKEFLAGS on recursive calls to make. So there is no need to give them
explicitly.

7 years agohints: open links in async mode
Virgil Dupras [Tue, 9 May 2017 00:10:35 +0000 (20:10 -0400)]
hints: open links in async mode

When firing hints, open them (either by simulating a click or through
`window.open()`) in async mode with `window.setTimeout()`. If we don't
do that, the `EvalJS` dbus call will itself timeout and we'll end up
in an inconsistent state, that is, not back to Normal mode.

ref #349