Skip to content

Commit

Permalink
Merge pull request #165 from emveepee/recordingpart
Browse files Browse the repository at this point in the history
Update recording tag
  • Loading branch information
ksooo authored Aug 21, 2024
2 parents 9ae0a67 + f659bd8 commit 6afe978
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pvr.demo/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.demo"
version="22.2.0"
version="22.2.1"
name="Demo PVR Client"
provider-name="Pulse-Eight Ltd., Team Kodi">
<requires>@ADDON_DEPENDS@</requires>
Expand Down
3 changes: 3 additions & 0 deletions pvr.demo/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v22.2.1
- Add missing SetEpisodePartNumber()

v22.2.0
- add SetEpisodePartNumber() to EPG and Recordings
- add SetYear() to Recordings and EPG
Expand Down
1 change: 1 addition & 0 deletions src/PVRDemo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ PVR_ERROR CPVRDemo::GetRecordings(bool deleted, kodi::addon::PVRRecordingsResult
kodiRecording.SetGenreSubType(recording.iGenreSubType);
kodiRecording.SetRecordingTime(recording.recordingTime);
kodiRecording.SetEpisodeNumber(recording.iEpisodeNumber);
kodiRecording.SetEpisodePartNumber(recording.iEpisodePartNumber);
kodiRecording.SetSeriesNumber(recording.iSeriesNumber);
kodiRecording.SetIsDeleted(deleted);
kodiRecording.SetChannelType(recording.bRadio ? PVR_RECORDING_CHANNEL_TYPE_RADIO
Expand Down

0 comments on commit 6afe978

Please sign in to comment.