diff --git a/packages/mediacenter/kodi/package.mk b/packages/mediacenter/kodi/package.mk
index 3162071031..3c21f1fa3b 100644
--- a/packages/mediacenter/kodi/package.mk
+++ b/packages/mediacenter/kodi/package.mk
@@ -3,8 +3,8 @@
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="kodi"
-PKG_VERSION="afe5c94c51bd6a30aa55dbcf2008ba9f0b4eee06"
-PKG_SHA256="151d50d4d62f8c0dcb2b45feeae32518f28b8e25b3a76bfa7d2f4c9abeecb324"
+PKG_VERSION="ed0c71562b966d6bae5946a0f7495cb7980b2f82"
+PKG_SHA256="e63e5b9655a1cf3637b70b44b946291a2483f368ad5594105ac880c9933e62a5"
PKG_LICENSE="GPL"
PKG_SITE="http://www.kodi.tv"
PKG_URL="https://github.com/xbmc/xbmc/archive/${PKG_VERSION}.tar.gz"
diff --git a/packages/mediacenter/kodi/patches/kodi-100.02-add-libreelec.tv-RSS-news.patch b/packages/mediacenter/kodi/patches/kodi-100.02-add-libreelec.tv-RSS-news.patch
index 14097f8616..425e2247db 100644
--- a/packages/mediacenter/kodi/patches/kodi-100.02-add-libreelec.tv-RSS-news.patch
+++ b/packages/mediacenter/kodi/patches/kodi-100.02-add-libreelec.tv-RSS-news.patch
@@ -5,6 +5,6 @@
+ https://libreelec.tv/feed
- https://kodi.tv/feed
-
-
+ http://feeds.kodi.tv/xbmc
+ http://feeds.kodi.tv/latest_xbmc_addons
+ http://feeds.kodi.tv/updated_xbmc_addons
diff --git a/packages/mediacenter/kodi/patches/kodi-100.07-disable-minimize.patch b/packages/mediacenter/kodi/patches/kodi-100.07-disable-minimize.patch
index 371acaa309..5c583f90ee 100644
--- a/packages/mediacenter/kodi/patches/kodi-100.07-disable-minimize.patch
+++ b/packages/mediacenter/kodi/patches/kodi-100.07-disable-minimize.patch
@@ -9,7 +9,7 @@ Subject: [PATCH] disable minimize
--- a/xbmc/application/Application.cpp
+++ b/xbmc/application/Application.cpp
-@@ -1535,7 +1535,6 @@ void CApplication::OnApplicationMessage(
+@@ -1605,7 +1605,6 @@ void CApplication::OnApplicationMessage(
break;
case TMSG_MINIMIZE:
diff --git a/packages/mediacenter/kodi/patches/kodi-100.09-use-a-wrapper-to-setup-service-addons.patch b/packages/mediacenter/kodi/patches/kodi-100.09-use-a-wrapper-to-setup-service-addons.patch
index dcbc34cd85..631555d9ba 100644
--- a/packages/mediacenter/kodi/patches/kodi-100.09-use-a-wrapper-to-setup-service-addons.patch
+++ b/packages/mediacenter/kodi/patches/kodi-100.09-use-a-wrapper-to-setup-service-addons.patch
@@ -95,7 +95,7 @@ Subject: [PATCH] Use a wrapper to setup service addons
#include "addons/AddonBuilder.h"
#include "addons/AddonDatabase.h"
#include "addons/AddonEvents.h"
-@@ -862,6 +863,7 @@ bool CAddonMgr::DisableAddon(const std::
+@@ -863,6 +864,7 @@ bool CAddonMgr::DisableAddon(const std::
AddonPtr addon;
if (GetAddon(id, addon, AddonType::UNKNOWN, OnlyEnabled::CHOICE_NO) && addon != nullptr)
{
@@ -103,7 +103,7 @@ Subject: [PATCH] Use a wrapper to setup service addons
auto eventLog = CServiceBroker::GetEventLog();
if (eventLog)
eventLog->Add(EventPtr(new CAddonManagementEvent(addon, 24141)));
-@@ -913,6 +915,7 @@ bool CAddonMgr::EnableSingle(const std::
+@@ -914,6 +916,7 @@ bool CAddonMgr::EnableSingle(const std::
if (!m_database->EnableAddon(id))
return false;
m_disabled.erase(id);
diff --git a/packages/mediacenter/kodi/patches/kodi-100.10-handle-SIGTERM.patch b/packages/mediacenter/kodi/patches/kodi-100.10-handle-SIGTERM.patch
index a64e5d4df1..94857813f8 100644
--- a/packages/mediacenter/kodi/patches/kodi-100.10-handle-SIGTERM.patch
+++ b/packages/mediacenter/kodi/patches/kodi-100.10-handle-SIGTERM.patch
@@ -22,7 +22,7 @@ so, when shutdown/reboot is requested:
--- a/xbmc/application/Application.cpp
+++ b/xbmc/application/Application.cpp
-@@ -1403,12 +1403,12 @@ void CApplication::OnApplicationMessage(
+@@ -1473,12 +1473,12 @@ void CApplication::OnApplicationMessage(
switch (msg)
{
case TMSG_POWERDOWN:
@@ -37,7 +37,7 @@ so, when shutdown/reboot is requested:
break;
case TMSG_SHUTDOWN:
-@@ -1429,12 +1429,13 @@ void CApplication::OnApplicationMessage(
+@@ -1499,12 +1499,13 @@ void CApplication::OnApplicationMessage(
case TMSG_RESTART:
case TMSG_RESET:
@@ -52,7 +52,7 @@ so, when shutdown/reboot is requested:
Stop(EXITCODE_RESTARTAPP);
#endif
break;
-@@ -2030,7 +2031,7 @@ bool CApplication::Stop(int exitCode)
+@@ -2100,7 +2101,7 @@ bool CApplication::Stop(int exitCode)
m_frameMoveGuard.unlock();
CVariant vExitCode(CVariant::VariantTypeObject);
@@ -61,7 +61,7 @@ so, when shutdown/reboot is requested:
CServiceBroker::GetAnnouncementManager()->Announce(ANNOUNCEMENT::System, "OnQuit", vExitCode);
// Abort any active screensaver
-@@ -2062,7 +2063,6 @@ bool CApplication::Stop(int exitCode)
+@@ -2132,7 +2133,6 @@ bool CApplication::Stop(int exitCode)
// Needs cleaning up
CServiceBroker::GetAppMessenger()->Stop();
m_AppFocused = false;
@@ -69,7 +69,7 @@ so, when shutdown/reboot is requested:
CLog::Log(LOGINFO, "Stopping all");
// cancel any jobs from the jobmanager
-@@ -2625,6 +2625,18 @@ void CApplication::StopPlaying()
+@@ -2689,6 +2689,18 @@ void CApplication::StopPlaying()
}
}
@@ -88,7 +88,7 @@ so, when shutdown/reboot is requested:
bool CApplication::OnMessage(CGUIMessage& message)
{
switch (message.GetMessage())
-@@ -3205,7 +3217,7 @@ void CApplication::ProcessSlow()
+@@ -3269,7 +3281,7 @@ void CApplication::ProcessSlow()
if (CPlatformPosix::TestQuitFlag())
{
CLog::Log(LOGINFO, "Quitting due to POSIX signal");
@@ -99,7 +99,7 @@ so, when shutdown/reboot is requested:
--- a/xbmc/application/Application.h
+++ b/xbmc/application/Application.h
-@@ -109,6 +109,7 @@ public:
+@@ -113,6 +113,7 @@ public:
bool CreateGUI();
bool InitWindow(RESOLUTION res = RES_INVALID);
@@ -107,7 +107,7 @@ so, when shutdown/reboot is requested:
bool Stop(int exitCode);
const std::string& CurrentFile();
CFileItem& CurrentFileItem();
-@@ -240,6 +241,7 @@ private:
+@@ -251,6 +252,7 @@ private:
unsigned int m_ProcessedExternalCalls = 0; /*!< counts calls which are processed during one "door open" cycle in FrameMove */
unsigned int m_ProcessedExternalDecay = 0; /*!< counts to close door after a few frames of no python activity */
int m_ExitCode{EXITCODE_QUIT};