diff options
author | Garrett Brown <themagnificentmrb@gmail.com> | 2017-01-17 22:44:08 -0800 |
---|---|---|
committer | Garrett Brown <themagnificentmrb@gmail.com> | 2017-02-02 18:02:54 -0800 |
commit | 3a0abaf08195d431c678d5709903c5bf812989de (patch) | |
tree | fd60034b21ecc40290b01d6fed73c8391e8e6e10 /addons | |
parent | 49a1ee0a4ed9b8cab1c4144a33394740f88e8495 (diff) |
[peripheral API] v1.3.0 - Add handling for anomalous triggers
Anomalous triggers are triggers with a non-zero offset. For example, if a
trigger's rest position is +1 and it travels to -1 when fully pressed, then
it is an anomalous trigger with a center of +1 and a range of 2.
Two properties are added to the definition of a semiaxis:
* Center
* Range
The center is the rest position of the trigger. The range is 1 if the
trigger stops at 0, or 2 if the trigger continues past zero to the opposite
end of the axis.
Diffstat (limited to 'addons')
-rw-r--r-- | addons/kodi.peripheral/addon.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addons/kodi.peripheral/addon.xml b/addons/kodi.peripheral/addon.xml index 7dbd763262..8b804b83ae 100644 --- a/addons/kodi.peripheral/addon.xml +++ b/addons/kodi.peripheral/addon.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<addon id="kodi.peripheral" version="1.2.0" provider-name="Team-Kodi"> - <backwards-compatibility abi="1.2.0"/> +<addon id="kodi.peripheral" version="1.3.0" provider-name="Team-Kodi"> + <backwards-compatibility abi="1.3.0"/> <requires> <import addon="xbmc.core" version="0.1.0"/> </requires> |