Codebase list kodi-pvr-nextpvr / caeadd4
Update upstream source from tag 'upstream/8.2.7+ds1' Update to upstream version '8.2.7+ds1' with Debian dir bddae65fc85801962e6c917b31a6f5c2e1b400f6 Vasyl Gello 2 years ago
3 changed file(s) with 10 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
00 <?xml version="1.0" encoding="UTF-8"?>
11 <addon
22 id="pvr.nextpvr"
3 version="8.2.6"
3 version="8.2.7"
44 name="NextPVR PVR Client"
55 provider-name="Graeme Blackley">
66 <requires>@ADDON_DEPENDS@
0 v8.2.7
1 - Check if recording groups have already been added
2
03 v8.2.6
14 - Kodi has a limit of 32 EDL breaks in PVR
25
411411
412412 /* PVR_Timer.iRecordingGroup values and presentation */
413413 static std::vector<kodi::addon::PVRTypeIntValue> recordingGroupValues;
414 for (unsigned int i = 0; i < m_settings.m_recordingDirectories.size(); ++i)
415 {
416 recordingGroupValues.emplace_back(kodi::addon::PVRTypeIntValue(i, m_settings.m_recordingDirectories[i]));
414 if (recordingGroupValues.size() == 0)
415 {
416 for (unsigned int i = 0; i < m_settings.m_recordingDirectories.size(); ++i)
417 {
418 recordingGroupValues.emplace_back(kodi::addon::PVRTypeIntValue(i, m_settings.m_recordingDirectories[i]));
419 }
417420 }
418421
419422 static const unsigned int TIMER_MANUAL_ATTRIBS