Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-12 | Merge pull request #15224 from fritsch/libfmt | Martijn Kaijser | |
DisplaySettings: Change %.02f to %.2f to workaround a crash in libfmt53 | |||
2019-01-12 | Merge pull request #15231 from garbear/fix-typo | Martijn Kaijser | |
[docs] Fix typo | |||
2019-01-12 | Merge pull request #15222 from DaVukovic/rip-cd-core | Kai Sommerfeld | |
Improve detection of audio CDs using an infobool | |||
2019-01-12 | [osx/WinSystem] - always log all found monitors and resolutions for debug ↵ | Memphiz | |
purposes | |||
2019-01-12 | [osx/WinSystem] - ensure that monitor names are unique by appending displayid | Memphiz | |
2019-01-12 | [database] Move join subquery into separate view for ancient MySQL | Philipp Kerling | |
So it seems MySQL < 5.7 cannot perform subqueries in SQL FROM. As a workaround, put the subquery into a separate view. | |||
2019-01-12 | Fix whitespace | Philipp Kerling | |
2019-01-11 | FFmpeg: Bump to 4.0.3-Leia-RC5 | fritsch | |
2019-01-11 | Improve detection of audio CDs using an infobool | DaVukovic | |
2019-01-11 | Merge pull request #15228 from pkerling/videoinfoscanner-redact18.0rc5-Leia | Martijn Kaijser | |
VideoInfoScanner: Correctly redact URLs | |||
2019-01-11 | Merge pull request #15200 from wildcat2020/feature_myvideos113 | Martijn Kaijser | |
[database] Set tvshow_view return maximum path | |||
2019-01-10 | Fix typo | Garrett Brown | |
2019-01-10 | Merge pull request #15225 from fritsch/trans3 | Markus Pfau | |
Transparency Games for Android | |||
2019-01-10 | ButtonMapping: Change format identifier | fritsch | |
2019-01-10 | StringUtils: Change format identifier | fritsch | |
2019-01-10 | VideoInfoScanner: Correctly redact URLs | Philipp Kerling | |
CURL::GetRedacted does not work on decoded URLs since e.g. the password part may include an encoded @ (%40) that in decoded form will confuse the redaction and expose part of the password. Also, there is no particularly strong reason to decode URLs for log messages here. When matching the regular expressions, however, the URL must be decoded, but the username/password details are not important, so redact them before matching. Otherwise, they might get exposed during further logging done on the decoded URLs. | |||
2019-01-09 | Set Decor-View: Transparent - ported from MRMC | fritsch | |
2019-01-09 | Android: Transparency games | fritsch | |
2019-01-09 | DisplaySettings: Change %.02f to %.2f to workaround a crash in libfmt 5.3 | fritsch | |
2019-01-09 | Merge pull request #15213 from dimitry-ishenko/resume-fix | pkerling | |
Prevent crash when trying to resume audiobook with no chapters | |||
2019-01-08 | Misc fixes to prevent crashes when playing audio books | Dimitry Ishenko | |
2019-01-08 | Merge pull request #15191 from DaveTBlake/DiscoNolibNoInfo | Dave Blake | |
Fix Artist Info dialog click on discography | |||
2019-01-07 | Merge pull request #15204 from Memphiz/scriptobs_race | Martijn Kaijser | |
[PluginDirectory] - ensure that Abort of ScriptObserver waits for thread exit - fix crash&burn | |||
2019-01-07 | [database] Correct tvshow_view after PR #15185 merge to make sure it only ↵ | wildcat2020 | |
returns one row per tvshow with correct strPath and idParentPath. Added subquery in FROM clause in place of tvshowlinkpath table to return only the maximum strPath. | |||
2019-01-06 | [lang][skin.estuary] updated language files from Transifex | Attila Jakosa | |
2019-01-06 | Merge pull request #15209 from enen92/typos | enen92 | |
[docs] Minor fixes | |||
2019-01-06 | [docs] Fix layout of xbmcplugin.setContent | enen92 | |
2019-01-06 | [Issue templates] Raspberry PI typo | enen92 | |
2019-01-06 | Merge pull request #15207 from engelmarkus/patch-1 | Kai Sommerfeld | |
Correct order of colors in the bottom line | |||
2019-01-06 | Merge pull request #15205 from ksooo/pvr-fix-guiinfo-timeshift-times | Kai Sommerfeld | |
[PVR] guiinfo times: reset timeshift offset and timeshift play time after channel change. fixes #15175 | |||
2019-01-06 | Correct order of colors in the bottom line | Markus Engel | |
2019-01-06 | [PVR] guiinfo times: reset timeshift offset and timeshift play time after ↵ | Kai Sommerfeld | |
channel change. | |||
2019-01-05 | Merge pull request #15199 from Memphiz/osx_lostfocus_norender_fix | Martijn Kaijser | |
[osx/WinEventsSDL] - don't disable gui rendering when losing focus | |||
2019-01-05 | [osx/WinEventsSDL] - don't disable gui rendering when losing focus - fixes ↵ | Memphiz | |
regression inroduced in #15105 | |||
2019-01-04 | [PluginDirectory] - ensure that Abort of ScriptObserver waits for thread ↵ | Memphiz | |
exit to prevent bad access of already destroyed event object | |||
2019-01-04 | Merge pull request #15185 from wildcat2020/feature_myvideos113 | Martijn Kaijser | |
[database] Make season_view and tvshow_view SQL ANSI92-compliant | |||
2019-01-04 | [database] Make season_view and tvshow_view SQL ANSI92-compliant | wildcat2020 | |
removed group by clause from tvshow_view and added full group by clause to season_view as well as expanded select all from base table seasons to select every individual column in season_view: fixes #15172 | |||
2019-01-03 | Merge pull request #15193 from pkerling/wayland-frame-cb | pkerling | |
[wayland] Request new frame cb only when previous one was signaled | |||
2019-01-03 | Merge pull request #14998 from xodidox/mediawindowfix | Martijn Kaijser | |
Add force flag to enable update file item in inactive window | |||
2019-01-03 | [wayland] Request new frame cb only when previous one was signaled | Philipp Kerling | |
Continuously requesting new frame callbacks even when the last one has not been signaled generates a lot of unnecessary traffic on the Wayland connection and has the potential to exhaust the object ID space (since every callback is a separate object) when the surface is not visible for a very long time. Also, already for short time spans the compositor might have problems buffering all delete_id() messages being sent at once at the moment the surface becomes visible again. | |||
2019-01-03 | Merge pull request #15102 from Memphiz/update_shairplay | Memphiz | |
[airtunes/linux] - fix airtunes/shairplay not working on linux | |||
2019-01-03 | Merge pull request #15132 from enen92/settingfix1 | Martijn Kaijser | |
[SmartPlaylists] Define DynPath for items retrieved from library | |||
2019-01-03 | Merge pull request #15016 from fritsch/refreshrate2 | Martijn Kaijser | |
Resolution: Don't add half refreshrates by default | |||
2019-01-03 | Merge pull request #15092 from pkerling/no-create-select | pkerling | |
Replace CREATE TABLE […] AS SELECT […] | |||
2019-01-03 | Merge pull request #15174 from ronie/estuary-showtime | enen92 | |
[Estuary] display seekbar on showtime action | |||
2019-01-03 | Merge pull request #15190 from DaveTBlake/CoverityAllAlbums | Dave Blake | |
Coverity fix to remove switch implicit fall through | |||
2019-01-03 | Fix artist info dialog so when click on discography item that is not in ↵ | DaveTBlake | |
library nothing happens (there is no album information to display) | |||
2019-01-03 | Coverity fix remove implicit fall through from switch | DaveTBlake | |
2019-01-02 | Merge pull request #15184 from ksooo/guiinfo-fix-player-duration-params | Kai Sommerfeld | |
[guiinfo] Fix Player.Duration / Musicplayer.Duration time format para… | |||
2019-01-02 | Merge pull request #15155 from DaveTBlake/FixAllAlbums | Dave Blake | |
Fix *All Albums item removed by Coverity fix |