diff --git a/packages/mediacenter/kodi/package.mk b/packages/mediacenter/kodi/package.mk index c5dff80b99..3162071031 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="21.0rc2-Omega" -PKG_SHA256="52580a3b293443da3b560fce822c7c08871bc0089156a6b4f83ea26d54662af4" +PKG_VERSION="afe5c94c51bd6a30aa55dbcf2008ba9f0b4eee06" +PKG_SHA256="151d50d4d62f8c0dcb2b45feeae32518f28b8e25b3a76bfa7d2f4c9abeecb324" 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 425e2247db..14097f8616 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 - http://feeds.kodi.tv/xbmc - http://feeds.kodi.tv/latest_xbmc_addons - http://feeds.kodi.tv/updated_xbmc_addons + https://kodi.tv/feed + + 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 5c583f90ee..371acaa309 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 -@@ -1605,7 +1605,6 @@ void CApplication::OnApplicationMessage( +@@ -1535,7 +1535,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 631555d9ba..dcbc34cd85 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" -@@ -863,6 +864,7 @@ bool CAddonMgr::DisableAddon(const std:: +@@ -862,6 +863,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))); -@@ -914,6 +916,7 @@ bool CAddonMgr::EnableSingle(const std:: +@@ -913,6 +915,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 94857813f8..a64e5d4df1 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 -@@ -1473,12 +1473,12 @@ void CApplication::OnApplicationMessage( +@@ -1403,12 +1403,12 @@ void CApplication::OnApplicationMessage( switch (msg) { case TMSG_POWERDOWN: @@ -37,7 +37,7 @@ so, when shutdown/reboot is requested: break; case TMSG_SHUTDOWN: -@@ -1499,12 +1499,13 @@ void CApplication::OnApplicationMessage( +@@ -1429,12 +1429,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; -@@ -2100,7 +2101,7 @@ bool CApplication::Stop(int exitCode) +@@ -2030,7 +2031,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 -@@ -2132,7 +2133,6 @@ bool CApplication::Stop(int exitCode) +@@ -2062,7 +2063,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 -@@ -2689,6 +2689,18 @@ void CApplication::StopPlaying() +@@ -2625,6 +2625,18 @@ void CApplication::StopPlaying() } } @@ -88,7 +88,7 @@ so, when shutdown/reboot is requested: bool CApplication::OnMessage(CGUIMessage& message) { switch (message.GetMessage()) -@@ -3269,7 +3281,7 @@ void CApplication::ProcessSlow() +@@ -3205,7 +3217,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 -@@ -113,6 +113,7 @@ public: +@@ -109,6 +109,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(); -@@ -251,6 +252,7 @@ private: +@@ -240,6 +241,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};