Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-03-01 | [Peripherals] Fix Android joysticks not detected on startup | Garrett Brown | |
2017-03-01 | Move to using unicode win32 api methods | Pär Björklund | |
This should have been done a long time ago but with UWP no longer supporting the ascii versions it's time to get it done. The changes in UnrarXLib isn't really tested but it's about to get dropped from our tree anyway. | |||
2017-02-26 | Merge pull request #11707 from garbear/fix-rumble | Garrett Brown | |
Fix rumble always enabled | |||
2017-02-23 | Merge pull request #11687 from garbear/input-fixes | Garrett Brown | |
Fix memory and resource leak | |||
2017-02-19 | Add setting to disable rumble notifications | Garrett Brown | |
2017-02-19 | Peripheral API v1.3.1 - Expose rumble and power off capabilities | Garrett Brown | |
2017-02-17 | [Peripherals] Fix memory leak in button mapping commands | Garrett Brown | |
2017-02-17 | [Peripherals] Fix add-ons not being destroyed on exit | Garrett Brown | |
2017-02-17 | [Peripherals] Clear busses in deterministic order | Garrett Brown | |
2017-02-17 | [Peripherals] Replace lock.Leave() with proper RAII pattern | Garrett Brown | |
2017-02-17 | [cosmetic] Whitespace fixes after moving JOYSTICK to KODI namespace | Garrett Brown | |
2017-02-14 | [Peripherals] Factor out constants | Garrett Brown | |
2017-02-09 | Move JOYSTICK, KEYBOARD and MOUSE namespaces into KODI | Garrett Brown | |
2017-02-06 | Fix anomalous triggers getting stuck in the background while mapping | Garrett Brown | |
This completes a TODO left in bd6697b01. | |||
2017-02-02 | Merge pull request #11571 from garbear/fix-axes | Garrett Brown | |
Fix analog stick/trigger "sticking" bug | |||
2017-02-01 | [peripherals] Add todo to fix erratic input with anomalous triggers | Garrett Brown | |
2017-01-31 | [peripheral API] v1.3.0 - Add handling for anomalous triggers | Garrett Brown | |
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. | |||
2017-01-31 | [cosmetic] Fix trailing whitespace in AddonButtonMap.cpp | Garrett Brown | |
2017-01-03 | spelling: comments | Josh Soref | |
2016-12-31 | Hide notifications shown on device connect | Garrett Brown | |
This also fixes CID 1398191: Control flow issues (DEADCODE) | |||
2016-12-29 | Merge pull request #11272 from Rechi/cleanupWarnings | Rainer Hochecker | |
[Cleanup] silent some warnings | |||
2016-12-28 | [cleanup] remove unused variables | Rechi | |
2016-12-27 | Hide device event notifications | Garrett Brown | |
2016-12-25 | [cleanup] replace AtomicIncrement & AtomicDecrement implementation with ↵ | Rechi | |
std::atomic | |||
2016-12-17 | [addons] rename struct PeripheralAddon to KodiToAddonFuncTable_Peripheral | Alwin Esch | |
2016-12-17 | [addons] create from AddonDll.h a new AddonDll.cpp | Alwin Esch | |
Needed to fix linker fault after remove of template usage. Further are a lot of include passed to the place where it is used. | |||
2016-12-17 | [addons] remove last template part from CAddonDll | Alwin Esch | |
2016-12-17 | [addons] add addons function tables to related classes and remove template ↵ | Alwin Esch | |
use from CAddonDll | |||
2016-12-17 | [addons] remove TheDll template from CAddonDll | Alwin Esch | |
2016-12-17 | [addons] remove the use of TheProps from template's | Alwin Esch | |
First bigger step to have CAddonDll independent from add-on type instances. On addons still no changes needed! | |||
2016-12-15 | Merge pull request #11179 from AlwinEsch/cleanup-addons | Alwin Esch | |
[addons] remove use of try, catch | |||
2016-12-15 | remove autotools buildsystem | notspiff | |
2016-12-14 | [peripheral] remove use of try, catch | Alwin Esch | |
2016-12-02 | Merge pull request #11026 from notspiff/fix_copy_ellusion | jenkins4kodi | |
2016-12-02 | [settings] integrate CSettings into CServiceManager/CServiceBroker | montellese | |
2016-12-01 | [retroplayer] Game add-ons | Garrett Brown | |
Thanks to Themaister for rewind functionality, fetzerch for mouse support, file length check and cmake modifications, topfs2 for fixing a crash when loading game clients, eibma for fixing linux compilation errors, a1rwulf for catching a missing callback symbol and fixing some rebase errors, and to notspiff for helping with the rebrand and cmake. | |||
2016-12-01 | [retroplayer] Keyboard players | Garrett Brown | |
2016-12-01 | fixed: do not use move into member variable here | Arne Morten Kvarving | |
clang points out that it actually hinders copy elusion, not aids it. | |||
2016-11-28 | Merge pull request #10630 from garbear/controller-fixes | Garrett Brown | |
Controller fixes | |||
2016-11-18 | Merge pull request #10932 from garbear/controller-dialog | Garrett Brown | |
Controller dialog fixes and code improvements | |||
2016-11-18 | Merge pull request #10921 from garbear/fix-100-cpu | Garrett Brown | |
Fix 100% cpu usage after a while while scanning for peripheral events | |||
2016-11-14 | Only force-enable peripheral add-ons with button mapping support | Garrett Brown | |
2016-11-14 | Fix crash on unplugging controller | Garrett Brown | |
2016-11-14 | [peripherals] Cleanup: Remove unused function | Garrett Brown | |
2016-11-14 | [controller dialog] Fix not refreshing config if multiple controllers are ↵ | Garrett Brown | |
attached | |||
2016-11-14 | Peripheral EventScanner: Handle wrap-around | Garrett Brown | |
2016-11-12 | [peripherals] Fix 100% cpu usage after a while | Garrett Brown | |
When float is large enough, small increments no longer increase it. | |||
2016-11-12 | [peripherals] Cosmetic: Add doxy for button mapping commands | Garrett Brown | |
2016-11-12 | [controller dialog] Modify dialog shown when peripheral add-ons are disabled | Garrett Brown | |
2016-11-13 | Merge pull request #10910 from garbear/fix-skipping | jenkins4kodi | |