From f7dbfc6627b9ba5572202564ead6e107d8f99b9a Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Tue, 1 Aug 2023 18:02:15 -0400 Subject: [PATCH] 2023-08-01 Fred Gleason * Added the podcast ID to the first column of the item listing in the feed list in rdcastmanager(1). Signed-off-by: Fred Gleason --- ChangeLog | 3 +++ lib/rdfeedlistmodel.cpp | 2 ++ 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 0ab053aa..0e24bd3b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24303,3 +24303,6 @@ 2023-08-01 Fred Gleason * Added an 'ID' column to the 'Podcast Item List' dialog in rdcastmanager(1). +2023-08-01 Fred Gleason + * Added the podcast ID to the first column of the item listing in + the feed list in rdcastmanager(1). diff --git a/lib/rdfeedlistmodel.cpp b/lib/rdfeedlistmodel.cpp index d0cff38d..865f0824 100644 --- a/lib/rdfeedlistmodel.cpp +++ b/lib/rdfeedlistmodel.cpp @@ -596,6 +596,8 @@ void RDFeedListModel::updateCastRow(int feed_line,int cast_line, rda->iconEngine()->listIcon(RDIconEngine::WhiteBall); break; } + d_cast_texts[feed_line][cast_line][0]= + QString::asprintf("%u",q->value(q_offset).toUInt()); // Cast ID d_cast_texts[feed_line][cast_line][1]=q->value(1+q_offset); // Item Title d_cast_texts[feed_line][cast_line][3]= rda->shortDateString(q->value(3+q_offset).toDateTime().date());