aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-02[keymap] fix guide button for kernel-based mceusb remotes (closes #15374)Sam Stenvall
2014-12-02[lang] update of skin.confluence language filestxtranslation
2014-12-02[lang] update of core language filestxtranslation
2014-12-02[lang] update of internal addon language filestxtranslation
2014-12-02[omxplayer] Fix precedence in deinterlace resolution checkpopcornmix
2014-12-02[audioencoders] bump to their latest masteruNiversaI
Legacy symlinks in lib/includes need fixing as with them these dont compile.
2014-12-02Merge pull request #5761 from Jalle19/fix-recording-historyMartijn Kaijser
[pvr] Fix recording history (alternative to #5742)
2014-12-02ffmpeg: bump to 2.4.4Rainer Hochecker
2014-12-02Merge pull request #5860 from Montellese/fix_content_settings_for_realMartijn Kaijser
fix content settings not being properly evaluated/stored
2014-12-01Merge pull request #5859 from popcornmix/omxplayer_disableMartijn Kaijser
FIX: actually disable omxplayer if software is selected
2014-12-01Merge pull request #5853 from xhaggi/pvr-revert-pvrmanager-restart-onwakeSascha Woo
[pvr] revert re-init of PVR manager on wake
2014-12-01FIX: actually disable omxplayer if software is selectedpopcornmix
2014-12-01[pvr] do not restart the PVR manager on wake, only trigger updatesxhaggi
2014-12-01[pvr] don't update the item list path before calling Update(),Sam Stenvall
otherwise the history will be incorrectly recorded since the the history expects m_vecItems->GetPath() to be the "old" path, not the new one
2014-12-01Merge pull request #5854 from xhaggi/fix-gui-viewstate-items-reference-tempSascha Woo
[gui] temp fix to reset m_guiState with the right file item list
2014-12-01fix content settings not being properly evaluated/storedmontellese
2014-12-01Merge pull request #5823 from Jalle19/bump-pvrMartijn Kaijser
[pvr] bump addons (rebranding)
2014-12-01Merge pull request #5852 from xhaggi/pvr-fix-selecting-item-in-channelosdMartijn Kaijser
[pvr] fix: select the first item if we don't have a stored last selected item path
2014-11-30Merge pull request #5856 from koying/fixdisablehwcodecMartijn Kaijser
FIX: actually disable hardware decoders if sotware is selected
2014-11-30FIX: actually disable hardware decoders if sotware is selectedChris "Koying" Browet
2014-11-30[gui] temp fix to reset m_guiState with the right file item listxhaggi
2014-11-30Merge pull request #5813 from MartijnKaijser/14.0rc114.0rc1-HelixMartijn Kaijser
[release] bump to 14.0 rc1
2014-11-30Merge pull request #5845 from ↵Martijn Kaijser
Montellese/jsonrpc_fix_files_getdirectory_smartplaylists jsonrpc: fix Files.GetDirectory not returning artistid, albumartistid and genreid for smartplaylists
2014-11-30Merge pull request #5840 from uNiversaI/keyboardMartijn Kaijser
[keyboardlayout] add Hungarian QWERTZ
2014-11-30Merge pull request #5849 from Montellese/platinum_fix_masksMartijn Kaijser
platinum: fix filter mask values of xbmc:votes and xbmc:artwork
2014-11-30Merge pull request #5808 from arnova/average_fixjenkins4kodi
2014-11-30[pvr] fix: select the first item if we don't have a stored last selected ↵xhaggi
item path If you stay in the channel osd and select a different group, you never selected before, the selected item will be the same (group A = 22, group B = 22). This will fix the issue as it selects the first item instead of the same if we don't have a stored last selected item path.
2014-11-30Merge pull request #5831 from xhaggi/pvr-fix-getgrouplistSascha Woo
[pvr] fix pvr:// directory fetching
2014-11-30Merge pull request #5850 from Montellese/fix_content_settings_dialogMartijn Kaijser
fix content dialog settings not being properly reset
2014-11-30fix content dialog settings not being properly resetmontellese
2014-11-29Merge pull request #5848 from wolfgar/fixVP8Peter Frühberger
[imx6] Fix VP8 timestamping
2014-11-29Merge pull request #5844 from FernetMenta/ffjenkins4kodi
2014-11-29[imx6] Fix VP8 timestampingwolfgar
2014-11-29platinum: add patch for 2104093montellese
2014-11-29platinum: fix filter mask values of xbmc:votes and xbmc:artworkmontellese
2014-11-29Merge pull request #5847 from Montellese/droid_rebrand_adb_loggingMartijn Kaijser
[rebrand] android: log to logcat with "Kodi" prefix instead of "XBMC"
2014-11-29[rebrand] android: log to logcat with "Kodi" prefix instead of "XBMC"montellese
2014-11-29Merge pull request #5846 from Montellese/upnp_http_agent_rebrandjenkins4kodi
2014-11-29[rebrand] replace XBMC with Kodi in the UPnP server's HTTP agent stringmontellese
2014-11-29dvdplayer: fix ff for higher speedsRainer Hochecker
2014-11-29jsonrpc: fix Files.GetDirectory not returning artistid, albumid and genreid ↵montellese
for smartplaylists
2014-11-29Merge pull request #5843 from Montellese/pvr_fix_epg_serializationMartijn Kaijser
jsonrpc: fix Player.GetItem for PVR channels not providing extended details like plot, genre etc.
2014-11-29Merge pull request #5842 from anaconda/fix-15322Martijn Kaijser
Fix off-by-1 errors in saving video settings when in a playlists.
2014-11-29jsonrpc: fix Player.GetItem for PVR channels not providing extended details ↵montellese
like plot, genre etc.
2014-11-29Fix off-by-1 errors in saving video settings when in a playlists.anaconda
Current video settings are saved in: * PlayFile() before playing the requested item - this works for playlists; * UpdateFileState() every 500 ms (it is called in ProcessSlow()), if the current playing item has changed - this works for single videos. Due to SaveFileState() [1] calling GetCurrentVideoSettings(), in a playlist the correct video settings were first saved by PlayFile(), but shortly after overwritten by UpdateFileState(). It was in fact saving video settings for the *previous* item (X-1) with settings for the *current* one (X). This commits adds a check to UpdateFileState() so that it ignores playlists. Fixes #15322 [1] https://github.com/xbmc/xbmc/blob/master/xbmc/Application.cpp#L4350
2014-11-28Merge pull request #5832 from MartijnKaijser/installerjenkins4kodi
2014-11-28[win32] Update installer text to be more clear about taken actions. Also set ↵Martijn Kaijser
artwork for un-installer pages
2014-11-28Merge pull request #5824 from xhaggi/pvr-use-last-played-group-on-startupSascha Woo
[pvr] always use last played group as current group on startup
2014-11-28[keyboardlayout] add Hungarian QWERTZuNiversaI
Main alphabet portion is 1:1 and is fully functional and pretty. The symbols portion was altered to suit kodi
2014-11-28Merge pull request #5839 from uNiversaI/patch-1Tobias Arrskog
[rebrand] web interface rename XBMC - Kodi