From 40f4429ff2dd1a02c65f411b35bfd82b0b937009 Mon Sep 17 00:00:00 2001 From: Glenn Guy Date: Fri, 9 Apr 2021 21:30:37 +1000 Subject: [PATCH 1/2] Remove Android specific decrypter search paths --- CMakeLists.txt | 6 +----- Jenkinsfile | 2 +- src/main.cpp | 6 ------ 3 files changed, 2 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2000e27a8..b317f2bba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -86,11 +86,7 @@ else() set(ADP_ADDITIONAL_BINARY $) endif() -if(CORE_SYSTEM_NAME STREQUAL android) - set(DECRYPTERPATH "special://xbmcbinaddons") -else() - set(DECRYPTERPATH "special://home/cdm") -endif() +set(DECRYPTERPATH "special://home/cdm") list(APPEND DEPLIBS bento4) list(APPEND DEPLIBS mpegts) diff --git a/Jenkinsfile b/Jenkinsfile index 161e01074..3d3080aab 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1 +1 @@ -buildPlugin(version: "Matrix", deploy: ['osx-x86_64', 'windows-i686', 'windows-x86_64', 'ubuntu-ppa']) +buildPlugin(version: "Matrix") diff --git a/src/main.cpp b/src/main.cpp index d298f6a82..701653c59 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2137,14 +2137,8 @@ void Session::GetSupportedDecrypterURN(std::string& key_system) kodihost->SetLibraryPath(kodi::vfs::TranslateSpecialProtocol(specialpath).c_str()); std::vector searchPaths(2); -#ifdef ANDROID - searchPaths[0] = getenv("KODI_ANDROID_LIBS") - ? getenv("KODI_ANDROID_LIBS") - : kodi::vfs::TranslateSpecialProtocol("special://xbmcbinaddons/"); -#else searchPaths[0] = kodi::vfs::TranslateSpecialProtocol("special://xbmcbinaddons/inputstream.adaptive/"); -#endif searchPaths[1] = kodi::GetAddonInfo("path"); std::vector items; From 732d850afb4f497af4535a3a01d14a178f6edf13 Mon Sep 17 00:00:00 2001 From: Glenn Guy Date: Fri, 9 Apr 2021 21:34:56 +1000 Subject: [PATCH 2/2] Bump to version 2.6.12 --- README.md | 2 +- inputstream.adaptive/addon.xml.in | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1683032ea..3170d1dcc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# inputstream.adaptive (2.6.6) +# inputstream.adaptive (2.6.12) This is an adaptive file addon for kodi's new InputStream Interface. diff --git a/inputstream.adaptive/addon.xml.in b/inputstream.adaptive/addon.xml.in index 978d969ee..bfebc3209 100644 --- a/inputstream.adaptive/addon.xml.in +++ b/inputstream.adaptive/addon.xml.in @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ @@ -19,6 +19,9 @@ Cliente InputStream para flujo de datos adaptativos @PLATFORM@ +v2.6.12 (2021-04-09) +- Remove Android specific decrypter search paths + v2.6.11 (2021-04-08) - Fix ampersand in changelog causing issues from v2.6.9 and v2.6.10