- 03 Aug, 2018 5 commits
-
-
Peter Hutterer authored
This used to do a lot more but now it can be handled as simple switch statement. Bonus: we get to log a bug if we ever get here in NONE state. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Not needed by the more generic evdev header Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Only one link leads to it and it doesnt (right now) fit into the hierarchy. Let's get rid of the sphinx warning. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Switching from doxygen to sphinx broke a bunch of links because doxygen used whatever the argument to @page was - and that usually had underscores. Sphinx uses filenames (which use dashes) so now we have a bunch of old links going to a 404. For the transition period at least, insert a custom 404 page for each of those to tell users this doesn't exist anymore. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Nope, doesn't work, our server doesn't support htaccess. This reverts commit 548e0eb9.
-
- 02 Aug, 2018 13 commits
-
-
Peter Hutterer authored
Obsolete with the switch to the device quirks Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Things moved around, so let's have a custom 404 page where we can put information in. This ist the barebones version, not sure if .htaccess is supported. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
It's really not that good, so no point to keep it around Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Everything else is, let's be consistent here. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Because why not... Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
meson doesn't have configuration_data() in vcs_tag so we can only replace one string. sphinx cannot include things in-line. Since we want the git version to be replaced in random places, we need to put it into rst_prolog in conf.py - but that's where we neet to replace other things too. Work around this by generating a mini python module that returns the git version, then call that in conf.py. Side-bonus: we now have access to the full commit and the abbreviated commit. Not that anything actually uses this... Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
No doxygen leftovers in README anymore, exspecially now that we don't use it for doxygen anymore. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
"activated" sounds like we're disabling things here, but we're just pairing the two devices Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- 01 Aug, 2018 1 commit
-
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- 31 Jul, 2018 9 commits
-
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Now that we dropped autotools anyway, it's better to link to the meson version of that blog post. Related #96 Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Related #96 Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Related #96 Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Anyone who's still on <= 1.8 either knows how to build it already or relies on a distribution to do that for them. Drop the section. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
See #96 Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Listed in #96 Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- 30 Jul, 2018 6 commits
-
-
On some ELAN tablets we get a coordinate jump in the same frame that we put the tip down. The existing axis smoothing causes that jump to be somewhere in the middle between the previous and the next coordinates, causing a small stroke from the smoothed position to the next. Prevent this by resetting the history on tip down/up so we always take that coordinate. Fixes #94 Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
High level view only but at least it's a link we can point people to. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
This is a large commit because it's difficult to split this up and we don't care about bisecting here anyway. doxygen is going to produce the API documentation only sphinx is going to produce the prose user (and a bit of developer) documentation. The source split is doc/api and doc/user. Steps performed: - run the doxygen-to-sphinx.sh script to convert all .dox sources to .rst - manually fixed the .rst to render correctly - add a few extra .rst documents to generate the right hierarchy - hook up sphinx-build in meson - add a new @mainpage for doxygen more aimed at developers For the build directory: - sphinx produces /Documentation - doxygen now produces /api/ These need to be manually combined in the wayland-web repo, meson doesn't support subdirectories as output paths within the build dir and the documentation doesn't need to be installed anywhere. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Helps with debugging purposes Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Because Godot doesn't care about tzdata, so waiting for him is pointless. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- 29 Jul, 2018 1 commit
-
-
Peter Hutterer authored
Separate commit so we can prep the containers for the real PR and thus test if something break. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- 27 Jul, 2018 5 commits
-
-
Peter Hutterer authored
We need this in the sphinx documentation. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
This is mostly for sphinx' parsing benefit, doxygen doesn't need it and renders the same either way. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
sphinx only supports one line of <dt> content, so we have to compress these. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
This is in preparation for a change to sphinx as the user-visible documentation. Ideally we could cross-link between the two but that's tricky to do automatically. Linking to the html pages/anchors directly works fine but risks the links going stale, especially while the documentation is still in flux. Having a generic "refer to the libinput documentation" is a bit of a cop-out least this way the links cannot go stale. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-