aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-11-23[joystick] Code improvements in DefaultJoystick.cpp/hGarrett Brown
2016-11-23[cmake] fix linking wrapped libs with gold linker in debug buildswsnipex
make sure our custom command uses the correct linker flags
2016-11-23[cmake] don't rebuild ffmpeg and crossguid when building from dependswsnipex
both libs where already built during depends stage
2016-11-23[depends] pass build type (debug|release) to targetswsnipex
2016-11-23[cmake] fix linking on linux when not hardcoding python libswsnipex
partially reverts 3eb46877
2016-11-23[cmake] fix FindPythonwsnipex
2016-11-23GUIWindowSlideShow: Protect against empty slides accesspopcornmix
Without this when using an iPhone uPnP app kodi crashes trying to dereference the empty vector
2016-11-23Merge pull request #10976 from phil65/log_messagesjenkins4kodi
2016-11-23FileFactory: handle library protocolphil65
2016-11-22Merge pull request #10936 from ronie/controlidPhilipp Temminghoff
remove unused control id definitions
2016-11-22Merge pull request #10971 from popcornmix/emptyslidepopcornmix
GUIWindowSlideShow: Protect against empty slides access
2016-11-22Merge pull request #10670 from fritsch/aesinkossAlwin Esch
AESinkOSS: Fix compilation after STREAM_TYPE transition
2016-11-22[cmake] allow RPi to build with lirc support (#10962)Lukas Rusak
* [cmake] allow RPi to build with lirc support * fixup! [cmake] allow RPi to build with lirc support
2016-11-22Merge pull request #10960 from fetzerch/cmake_cecWolfgang Schupp
[cmake] Properly find correct libcec version
2016-11-21[cmake] - fixe wrong parsing of platforms.txt (platforms might be on ↵Memphiz
seperate lines...) after 897094feeef8357eaf7ce2a4328a062b1af9d151
2016-11-21GUIWindowSlideShow: Protect against empty slides accesspopcornmix
Without this when using an iPhone uPnP app kodi crashes trying to dereference the empty vector
2016-11-21Merge pull request #10938 from ronie/estuary-starratingronie
[estuary] fix missing texture log error
2016-11-21Merge pull request #10939 from ronie/estuary-sourceronie
[estuary] fix lost focus in mediasource dialog
2016-11-21Merge pull request #10969 from hawkeyexp/patch-2Cristiano A. Silva
Update README.raspberrypi
2016-11-21Update README.raspberrypihawkeyexp
Correct commandlines to make it more failsave to read
2016-11-20[joysticks] Fix digital buttons with analog actions only sending one actionGarrett Brown
Furthermore, because digital buttons can only send 0.0 or 1.0 amounts, apply a ramp-up function when the button is held.
2016-11-20Merge pull request #10965 from DaveTBlake/RolesNodesaaoDave Blake
Fix Music Standard Roles Nodes (part2)
2016-11-20Set option albumartistsonly=false, so that all artists with the role are ↵DaveTBlake
shown regardless of system settings
2016-11-20Merge pull request #10955 from Glenn-1990/overlayfixKai Sommerfeld
[PVR][Estuary] Folder overlay fixes
2016-11-20Merge pull request #10963 from ksooo/pvr-fix-recordings-subfoldersKai Sommerfeld
[PVR] Recordings window: fix recordings sub folders after #10930.
2016-11-20Merge pull request #10961 from AlwinEsch/prevent-ossAlwin Esch
[audioengine] use OSS only on FreeBSD
2016-11-20[PVR] fix recordings unwatched overlayGlenn-1990
2016-11-20[estuary] fix recordings parent folder overlayGlenn-1990
2016-11-20[estuary] fix recording folders overlayGlenn-1990
2016-11-20[PVR] Recordings window: fix recordings sub folders after #10930.Kai Sommerfeld
2016-11-20[webinterface] add Chorus2 as new default webinterfaceMartijn Kaijser
2016-11-20[webinterface] remove old and broken default webinterfaceMartijn Kaijser
2016-11-20[cmake] Properly find correct libcec versionChristian Fetzer
Just setting a pkgconfig minimum version doesn't work and just causes pkgconfig to not find an older package. But since our CMake modules don't trust package config and validate that the include directory really exists, it would still just find whatever version is installed. The proper way is to either call find_package with VERSION or set <Module Name>_FIND_VERSION inside the module. Additionally: If we don't have a version from package config, find it in the header file.
2016-11-20Merge pull request #10947 from Kwiboo/curlPär Björklund
[curl] cleanup multi handle in proper order
2016-11-19Merge pull request #10925 from deblockt/android-tv-intentRazzeee
Correction issue on Android TV when intent usage
2016-11-19Merge pull request #10959 from ksooo/pvr-recordings-status-2Kai Sommerfeld
[PVR] Recordings window: Fix show status for recordings in progress
2016-11-19Merge pull request #10956 from FernetMenta/segfaultRainer Hochecker
guilib: fix segfault caused by not protected method CGUITextureManage…
2016-11-19[audioengine] use OSS only on FreeBSDAlwin Esch
2016-11-19[PVR] Recordings window: Fix show status for recordings in progressKai Sommerfeld
2016-11-19Merge pull request #10920 from afedchin/dxvaAnton Fedchin
[dxvahd] Re-init video context before creating an enumerator.
2016-11-19guilib: fix segfault caused by not protected method ↵Rainer Hochecker
CGUITextureManager::HasTexture
2016-11-19Merge pull request #10952 from notspiff/fix_pvr_crashRainer Hochecker
Fix crash in PVR input streams
2016-11-19Merge pull request #10954 from ksooo/pvr-recordings-statusKai Sommerfeld
[PVR][Estuary] Recordings window: show status for recordings in progress
2016-11-18Merge pull request #10932 from garbear/controller-dialogGarrett Brown
Controller dialog fixes and code improvements
2016-11-18[controller dialog] Fix Coverty CID 152106 introduced in 921862eb7Garrett Brown
Defect was: *** CID 152106: Uninitialized members (UNINIT_CTOR) GUIConfigurationWizard.cpp: 41 in GAME::CGUIConfigurationWizard::CGUIConfigurationWizard()() 35 #define SKIPPING_DETECTION_MS 200 36 37 CGUIConfigurationWizard::CGUIConfigurationWizard() : 38 CThread("GUIConfigurationWizard") 39 { 40 InitializeState(); >>> CID 152106: Uninitialized members (UNINIT_CTOR) >>> Non-static class member "m_callback" is not initialized in this constructor nor in any functions that it calls. 41 } 42 43 void CGUIConfigurationWizard::InitializeState(void) 44 { 45 m_currentButton = nullptr; 46 m_currentDirection = JOYSTICK::ANALOG_STICK_DIRECTION::UNKNOWN;
2016-11-19Merge pull request #10845 from Razzeee/fix-episode-selectionjenkins4kodi
2016-11-18Merge pull request #10921 from garbear/fix-100-cpuGarrett Brown
Fix 100% cpu usage after a while while scanning for peripheral events
2016-11-18Merge pull request #10865 from fetzerch/cmake_addon_dependsChristian Fetzer
[binary-addons] Rename DEPENDS_PATH to ADDON_DEPENDS_PATH
2016-11-18Merge pull request #10935 from ronie/python-docsRazzeee
[python] update setInfo() documentation
2016-11-18[PVR][Estuary] Recordings window: show status for recordings in progress.Kai Sommerfeld