Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-02 | Merge pull request #14933 from MartijnKaijser/v18_final_gui-bump | Martijn Kaijser | |
[skin] Bump GUI ABI to 5.14.0 | |||
2019-01-02 | [guiinfo] Fix Player.Duration / Musicplayer.Duration time format parameter ↵ | Kai Sommerfeld | |
handling. Fixes #15181. | |||
2019-01-02 | Merge pull request #15126 from pkerling/external-player-watched | pkerling | |
Update FileItem state on external player closing | |||
2019-01-01 | Merge pull request #15176 from pkerling/android-sorting | pkerling | |
Revert "FIX: [droid] translate to ascii for sorting" | |||
2019-01-01 | Revert "FIX: [droid] translate to ascii for sorting" | Philipp Kerling | |
This reverts commit 2d42c92c878f31df9396c1dcb7f35f2b4721de47. The chosen approach is completely broken for all non-Latin languages, so it cannot be shipped as part of v18. A proper solution with location-aware sorting has to be implemented in the future. Fixes #15026, #14952. | |||
2019-01-01 | Merge pull request #15161 from fritsch/vdpaumemset | Peter Frühberger | |
RendererVDPAU: Do not use memset on non-trivial type | |||
2019-01-01 | [Estuary] display seekbar on showtime action | ronie | |
2019-01-01 | Merge pull request #15168 from fritsch/pvrstring | Peter Frühberger | |
PVRClient: Do not overwrite arbitrary memory fixes #15157 | |||
2018-12-31 | [lang][skin.estuary] updated language files from Transifex | Attila Jakosa | |
2018-12-31 | PVRClient: Do not overwrite arbitrary memory | fritsch | |
2018-12-30 | Merge pull request #15162 from pkerling/excludefile-redact | pkerling | |
Redact URL in CUtil::ExcludeFileOrFolder | |||
2018-12-30 | [util] Redact URL in CUtil::ExcludeFileOrFolder | Philipp Kerling | |
All URLs in debug output should be redacted. Use newer fmt features while we're at it. Fixes #15160. | |||
2018-12-30 | RendererVDPAU: Do not use memset on non-trivial type | fritsch | |
2018-12-30 | Merge pull request #15156 from DaveTBlake/JSONBumpOnRefresh | Dave Blake | |
[JSON]Add OnRefresh announcement to the schema | |||
2018-12-29 | [JSON]Add OnRefresh announcement to the schema | DaveTBlake | |
2018-12-29 | Fix *All Albums item removed by Coverity fix | DaveTBlake | |
2018-12-29 | Merge pull request #15152 from MartijnKaijser/v18.0rc5 | Martijn Kaijser | |
bump to v18.0 rc5 | |||
2018-12-28 | Merge pull request #15138 from garbear/eventserver-gamepad | Garrett Brown | |
[keymaps] Specify that gamepad.xml is for EventServer "gamepads" | |||
2018-12-28 | Merge pull request #15124 from pkerling/guilistlabel-scroll18.0rc4-Leia | pkerling | |
Scroll GUIListLabel on focus only when enabled | |||
2018-12-28 | Merge pull request #15109 from pkerling/addon-plus-url-fix | Martijn Kaijser | |
Workaround file copying bug decoding "+" to space in file names in add-on installation | |||
2018-12-28 | Merge pull request #15038 from EmilVogt/patch-5 | Martijn Kaijser | |
[joystick.xml] Add more buttons to bring up OSD in LiveTV/Radio and Menu in EPG | |||
2018-12-28 | Merge pull request #15137 from pkerling/tagloader-cast-crash | Martijn Kaijser | |
Fix unchecked reinterpret_cast of ID3v2 UFID frame | |||
2018-12-28 | Merge pull request #15099 from xbmc/addon-install-info | Martijn Kaijser | |
Do not list non-repo add-ons as "unavailable" in info dialog | |||
2018-12-28 | Merge pull request #15140 from wsnipex/build-date | Wolfgang Schupp | |
fix CID 1441972 | |||
2018-12-27 | Merge pull request #15141 from DaveTBlake/MuiscPlayerContributors | enen92 | |
[GUI]Fix MusicPlayer.Contributors and MusicPlayer.ContributorAndRole info lables | |||
2018-12-27 | Merge pull request #15136 from pkerling/depends-taglib-zlib | pkerling | |
Add missing zlib dependency to taglib | |||
2018-12-27 | Add "contributors" and "contributorandrole" to musicplayer infomap | DaveTBlake | |
2018-12-27 | fix CID 1441972 | wsnipex | |
return a string instead of a dangling pointer | |||
2018-12-26 | [keymaps] Specify that gamepad.xml is for EventServer "gamepads" | Garrett Brown | |
2018-12-26 | [music] Fix unchecked reinterpret_cast of ID3v2 UFID frame | Philipp Kerling | |
Unlike all other ID3v2 frame types handled in TagLoaderTagLib, the UFID tag is reinterpret_cast to the target type. However, tag loading might fail (e.g. in case the tag is compressed and taglib is compiled without zlib support), which makes the tag dynamic type an ID3v2::UnknownFrame, so the successive access to the owner() function after the cast will trigger a crash. Fix by using dynamic_cast like everywhere else. Fixes #15090. | |||
2018-12-26 | Merge pull request #15123 from FernetMenta/x11 | Peter Frühberger | |
X11: make make on vblank in SwapBuffers an advanced setting | |||
2018-12-26 | Merge pull request #15105 from Memphiz/ticket14773 | enen92 | |
[osx/WinEventsSDL] - ensure to enable gui rendering once the app gets focus | |||
2018-12-26 | [depends] Add missing zlib dependency to taglib | Philipp Kerling | |
zlib is an optional dependency of taglib (for reading compressed tags) and it was missing, so it might have only worked by chance if at all. | |||
2018-12-25 | [cosmetics] Rename movie to episode in CVideoDatabase::GetEpisodesByWhere | enen92 | |
2018-12-25 | [SmartPlaylists] Define DynPath for items retrieved from library (movies | enen92 | |
and episodes) | |||
2018-12-25 | [VideoPlayer] Use DynPath in GetExternalStreamDetailsFromFilename calls | enen92 | |
2018-12-24 | [player] Update FileItem state on external player closing | Philipp Kerling | |
With the introduction of this callback and changes to IPlayer time- keeping it was forgotten to include this in CExternalPlayer, so the playcount would not be updated when using this feature. Fixes #14957. | |||
2018-12-23 | [guilib] Scroll GUIListLabel on focus only when enabled | Philipp Kerling | |
Behavior changed as part of #12213, but the value of `m_scroll` (which can be use to inhibit scrolling on focus or always enable it) was not checked any more, which is clearly in error. Supersedes #15117 | |||
2018-12-23 | X11: move oml sync to advanced settings | Rainer Hochecker | |
2018-12-23 | X11: add some logging for OML sync | Rainer Hochecker | |
2018-12-23 | Merge pull request #15121 from Rechi/depends/m4 | Rechi | |
[depends] fix m4 ftbfs with glibc 2.28 | |||
2018-12-23 | Merge pull request #15052 from pkerling/wayland-unify-set-handling | pkerling | |
[wayland] Centralize seat handling | |||
2018-12-23 | Merge pull request #15095 from pkerling/update-libcec | pkerling | |
Bump libcec to 4.0.4 | |||
2018-12-23 | Merge pull request #15108 from xbmc/fix-gl-extensions | pkerling | |
Do not crash when not getting GL_EXTENSIONS | |||
2018-12-23 | [depends] fix m4 ftbfs with glibc 2.28 | Rechi | |
2018-12-23 | bump to v18.0 rc5 | Martijn Kaijser | |
2018-12-22 | Merge pull request #15116 from pkerling/ext-subtitle-path | Martijn Kaijser | |
Fix path for looking up external subtitles | |||
2018-12-22 | Merge pull request #15115 from afedchin/win32_blank_screens | Anton Fedchin | |
[win32] fixed blank other displays option | |||
2018-12-22 | Merge pull request #15113 from afedchin/vc2017_redist | Anton Fedchin | |
[win32] replace vc140 redis with vc141 | |||
2018-12-22 | [depends] bump libcec to 4.0.4 | Philipp Kerling | |
Apparently fixes an important issue with USB detection on Mac OS X Mojave (Pulse-Eight/libcec#432) Fixes #15073 |