diff --git a/packages/mediacenter/kodi-theme-Confluence/package.mk b/packages/mediacenter/kodi-theme-Confluence/package.mk index 7f3138e57e..fc61544e50 100644 --- a/packages/mediacenter/kodi-theme-Confluence/package.mk +++ b/packages/mediacenter/kodi-theme-Confluence/package.mk @@ -17,7 +17,7 @@ ################################################################################ PKG_NAME="kodi-theme-Confluence" -PKG_VERSION="15.0-beta2-670fa99" +PKG_VERSION="15.0-beta2-45c2a2d" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" diff --git a/packages/mediacenter/kodi/package.mk b/packages/mediacenter/kodi/package.mk index 2fdb50d7a9..ba834eb7da 100644 --- a/packages/mediacenter/kodi/package.mk +++ b/packages/mediacenter/kodi/package.mk @@ -17,7 +17,7 @@ ################################################################################ PKG_NAME="kodi" -PKG_VERSION="15.0-beta2-670fa99" +PKG_VERSION="15.0-beta2-45c2a2d" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" diff --git a/projects/WeTek_Play/patches/kodi/0013-Save-settings-only-if-they-were-modified-after-the-l.patch b/projects/WeTek_Play/patches/kodi/0013-Save-settings-only-if-they-were-modified-after-the-l.patch index 08a02c8e79..34d91c79f2 100644 --- a/projects/WeTek_Play/patches/kodi/0013-Save-settings-only-if-they-were-modified-after-the-l.patch +++ b/projects/WeTek_Play/patches/kodi/0013-Save-settings-only-if-they-were-modified-after-the-l.patch @@ -1,8 +1,8 @@ -From ada3250ecc3cb73b805027ac6761ca5576f748c3 Mon Sep 17 00:00:00 2001 +From 55a51ac4c992deaa1122ec8fccd21f8a336889e0 Mon Sep 17 00:00:00 2001 From: Alex Deryskyba Date: Sun, 19 Oct 2014 16:20:33 +0300 -Subject: [PATCH 13/17] Save settings only if they were modified after the - last save +Subject: [PATCH 13/17] Save settings only if they were modified after the last + save This prevents from multiple saving the same settings and helps to resolve the issue on Amlogic G18REF TV-boxes when setiings may be lost after a poweroff. @@ -15,15 +15,27 @@ is written half-way and couldn't be read upon next boot, so the XBMC creates a n default settings. With this fix the settings will be written at exit only once, minimizing the risk of being lost. + +note by seo: + added utils/md5.h after kodi includes cleanup. + however, this patch should not be needed at all. TODO remove --- - xbmc/settings/Settings.cpp | 11 +++++++++++ - 1 file changed, 11 insertions(+) + xbmc/settings/Settings.cpp | 12 ++++++++++++ + 1 file changed, 12 insertions(+) diff --git a/xbmc/settings/Settings.cpp b/xbmc/settings/Settings.cpp -index 3c981a4..0850bce 100644 +index 2e690e3..bd0200d 100644 --- a/xbmc/settings/Settings.cpp +++ b/xbmc/settings/Settings.cpp -@@ -207,6 +207,17 @@ bool CSettings::Save(const std::string &file) +@@ -72,6 +72,7 @@ + #include "threads/SingleLock.h" + #include "utils/CharsetConverter.h" + #include "utils/log.h" ++#include "utils/md5.h" + #include "utils/RssManager.h" + #include "utils/StringUtils.h" + #include "utils/SystemInfo.h" +@@ -206,6 +207,17 @@ bool CSettings::Save(const std::string &file) if (!m_settingsManager->Save(root)) return false; @@ -42,5 +54,5 @@ index 3c981a4..0850bce 100644 } -- -1.7.10.4 +2.1.4