aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-03-23Merge pull request #15804 from AlwinEsch/partly-fix-cmakeAlwin Esch
[cmake] partly revert #15642 to have wayland and GBM working
2019-03-23[skins] addon settings - add help textronie
2019-03-23[cmake] partly revert #15642 to have wayland and GBM workingAlwin Esch
With the include of Platform.cmake to have for addons is the GBM_RENDER_SYSTEM not defined, this becomes set from "./tools/depends/target/Toolchain.cmake" but on a other place. This remove the change, but after the release must be the cmake workflow cleaned up. There are some hen and egg problems and maybe some hidden faults where a value becomes checked which becomes never available.
2019-03-22Merge pull request #15798 from pkerling/wayland-ptrcomparepkerling
[wayland] Fix raw pointer comparison
2019-03-22Export all art types for albums and artists, not just thumb and fanartDaveTBlake
2019-03-22[wayland] Fix raw pointer comparisonPhilipp Kerling
Comparing pointers that do not point into the same array is unspecified in C++
2019-03-21Merge pull request #15593 from DaveTBlake/winminunblockJSONMartijn Kaijser
Fix waiting for window close animation blocking JSON requests after SetFullScreen
2019-03-21Merge pull request #15787 from Rechi/fix/addons-libGL-locationRechi
[depends] binary-addons: fix libGL.so location
2019-03-21Merge pull request #15790 from olafhering/WaylandCXX17pkerling
[wayland] fix compilation with C++17
2019-03-21Merge pull request #15642 from AlwinEsch/fix-addon-cmakeAlwin Esch
[cmake] fix set of APP_RENDER_SYSTEM on KodiConfig.cmake
2019-03-21[depends] binary-addons: fix libGL.so locationRechi
2019-03-21[wayland] fix compilation with C++17Olaf Hering
Compilation for Wayland/gles fails with --std=c++17 because it has stricter checks: error: static assertion failed: comparison object must be invocable as const Fix this error by declaring the result as const. Fixes #15788 Signed-off-by: Olaf Hering <olaf@aepfle.de>
2019-03-21On refresh of album or artist from info dialog, prompt to ignore NFO file ↵DaveTBlake
and fetch metadata and art from remote sites
2019-03-21Merge pull request #15773 from DaveTBlake/SelectArtistToScrapeDave Blake
[Music]Show artist disambiguation text when picking which one to scrape
2019-03-21Merge pull request #15782 from enen92/warningresetenen92
[pydocs] Add warning to ControlList().reset() regarding ListItem destruction
2019-03-20[cmake] fix set of APP_RENDER_SYSTEM on KodiConfig.cmakeAlwin Esch
In the implementation of GLES under Windows found the foolish finding of OpenGL. This seems to exist systematically and makes it a little harder. Then found that "APP_RENDER_SYSTEM" of "KodiConfig.cmake" is not defined correctly (empty defined). This request fixes this and uses the "platform" folder. Parts of "Platform.cmake" are also included in PrepareEnv.cmake. TODO: Refactor on v19 to remove the if/else usage
2019-03-20Merge pull request #15644 from candrews/encodingpkerling
[curl] Accept all supported content encodings by default
2019-03-20Merge pull request #15780 from Rechi/fix/installBinaryAddonsRechi
[fix] installing binary addons from zip (and repo)
2019-03-20GL: Don't use SM_TEXTURE_LIM for GLSL < 1.5kszaq
SM_TEXTURE_LIM is not available for GLSL < 1.5, we should use SM_TEXTURE instead. Fixes https://github.com/xbmc/xbmc/issues/15723
2019-03-20[pydocs] Add warning to ControlList().reset() regarding ListItem destructionenen92
2019-03-20Merge pull request #15779 from linknetx/pvr-find-similarKai Sommerfeld
[PVR] Timers context menu 'Find similar' missing
2019-03-20[fix] installing binary addons from zip (and repo)Rechi
2019-03-20[PVR] Timers context menu 'Find similar' missinglinknetx
2019-03-20[curl] Move libcurl symbols out of namespacePhilipp Kerling
Putting includes (that can in turn include all sorts of other stuff) into namespaces is not really maintainable and finally broke the build in Linux 5.1-rc1. Of course it was a good idea to not clutter the global namespaces, but unfortunately it did not turn out to be possible with C libraries. See https://sourceware.org/ml/libc-help/2019-03/msg00014.html Fixes #15775
2019-03-20Merge pull request #15776 from pkerling/posix-signal-quitpkerling
Quit instead of shutdown on signals
2019-03-19Show artist disambiguation text to help user select which artist they are ↵DaveTBlake
scraping by when no mbid and scraper has found more than one artist with that name. Add disambiguation, gender and type to Python scraper artist processing.
2019-03-19[posix] Quit instead of shutdown on signalsPhilipp Kerling
TMSG_QUIT was indavertently changed to TMSG_SHUTDOWN when the signal handling was modified. Change back to TMSG_QUIT - the application should not cause the machine to power down upon receipt of SIGINT or SIGTERM after all.
2019-03-19Merge pull request #15744 from peak3d/hwdecoderMarkus Pfau
Decoderfilter implementation
2019-03-19AESinkALSA: fix enumeration of cards without front devicesMatthias Reichl
ALSA cards don't have necessarily a front device, alsa-lib creates a default (plus sysdefault) PCM using plughw for cards without an alsa card conf file. So we shouldn't skip the sysdefault PCM in enumeration, otherwise the cards aren't listed. For cards with front/surround PCMs the sysdefault entry should be dropped though, as the surround mangling "@" entry also handles sysdefault and the separate entry in the device list would be confusing to users.
2019-03-19Merge pull request #15712 from Rechi/windows/pragmaRechi
[windows] remove pragma lib
2019-03-19Merge pull request #15769 from enen92/docsiconCristiano Silva
[Docs] Use docs.kodi.tv instead of the codedocs url
2019-03-19[windows] remove pragma libRechi
They are already handled by CMake.
2019-03-19[cmake] handle D3DX11Effects with PLATFORM_REQUIRED_DEPSRechi
2019-03-19[cmake] require zlib for all platformsRechi
2019-03-19[cmake] zip for android is already handled via PLATFORM_REQUIRED_DEPSRechi
2019-03-19Merge pull request #15728 from pkerling/roadmap-itempkerling
Reword roadmap item template to make its intent clearer
2019-03-19Reword roadmap item template to make its intent clearerPhilipp Kerling
2019-03-19Merge pull request #15647 from Rechi/includeFormatRechi
use angle-bracket include form for FFmpeg headers
2019-03-19use angle-bracket include form for FFmpeg headersRechi
2019-03-18Decoderfilter implementationpeak3d
2019-03-18Merge pull request #15730 from pkerling/fix-posix-signalpkerling
Handle signals by setting atomic flag instead of pop-up thread
2019-03-18[Docs] Use docs.kodi.tv instead of the codedocs urlenen92
2019-03-18Merge pull request #15766 from Maven85/estuary-osdfullscreenronie
[estuary] fix title for non episodes
2019-03-18Merge pull request #15585 from DaveTBlake/JSONAddDynpathDave Blake
[JSON]Add "dynpath" as property returned by Player.GetItem
2019-03-18[estuary] fix title for non episodesMaven85
2019-03-17Merge pull request #15658 from Memphiz/fix_ios9Memphiz
Fix ios9
2019-03-17Delete ProBot triage configpkerling
Did not work unfortunately
2019-03-16Merge pull request #15711 from ronie/py-art-docsronie
[pyton] update docs for artwork functions
2019-03-16Merge pull request #15741 from ronie/estuary-fixsomethingronie
[estuary] fix reversed episode / tvshow title
2019-03-16Merge pull request #15755 from enen92/morecontrollerwindowfixesenen92
[GUIControllerWindow] Correctly subscribe to RepositoryUpdated events