Codebase list kodi-pvr-iptvsimple / 0ce60c4
New upstream version 7.6.4+ds1 Vasyl Gello 3 years ago
4 changed file(s) with 20 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
00 <?xml version="1.0" encoding="UTF-8"?>
11 <addon
22 id="pvr.iptvsimple"
3 version="7.6.2"
3 version="7.6.4"
44 name="PVR IPTV Simple Client"
55 provider-name="nightik and Ross Nicholson">
66 <requires>@ADDON_DEPENDS@
168168 <icon>icon.png</icon>
169169 </assets>
170170 <news>
171 v7.6.4
172 - Fixed: Only use Local logo location if file is relative
173 - Fixed: Add string initialisation from macros as some linux fail to compile without it
174
175 v7.6.3
176 - Skipped
177
171178 v7.6.2
172179 - Fixed: Allow catchup correction (timezone shift) when live URLs have catchup placeholders
173180 - Fixed: Always load EPG data if we prefer XMLTV logos or catchup is enabled
0 v7.6.4
1 - Fixed: Only use Local logo location if file is relative
2 - Fixed: Add string initialisation from macros as some linux fail to compile without it
3
4 v7.6.3
5 - Skipped
6
07 v7.6.2
18 - Fixed: Allow catchup correction (timezone shift) when live URLs have catchup placeholders
29 - Fixed: Always load EPG data if we prefer XMLTV logos or catchup is enabled
9797 }
9898 PVR_ERROR PVRIptvData::GetBackendVersion(std::string& version)
9999 {
100 version = STR(IPTV_VERSION);
100 // Some linux platform require the full string initialisation here to compile. No idea why.
101 version = std::string(STR(IPTV_VERSION));
101102 return PVR_ERROR_NO_ERROR;
102103 }
103104 PVR_ERROR PVRIptvData::GetConnectionString(std::string& connection)
1616 #include <regex>
1717
1818 #include <kodi/General.h>
19 #include <kodi/Filesystem.h>
1920 #include <kodi/tools/StringUtils.h>
2021
2122 using namespace kodi::tools;
133134 if (m_iconPath.find("://") == std::string::npos)
134135 {
135136 const std::string& logoLocation = Settings::GetInstance().GetLogoLocation();
136 if (!logoLocation.empty())
137 // If the file does not exist it must be relative
138 if (!logoLocation.empty() && !kodi::vfs::FileExists(m_iconPath))
137139 {
138140 // not absolute path, only append .png in this case.
139141 m_iconPath = utilities::FileUtils::PathCombine(logoLocation, m_iconPath);